##Q2 The read.fwf() function in R can be used to read in a fixed-width formatted file. Because this file cannot use sep=ince there are some other line do not use this separator. The ICD-9 code has 2-7 letters,so set the first column width =7, I used read.fwf and set the width. And set the column name.
setwd("/Users/xueyang/Desktop/WCM/big-data-in-medicine/module_1/week_1/lab_1")
icd10_df <- read.fwf("icd10cm_codes_2020.txt", widths = c(7, 888), col.names = c("ICD10", "description"), strip.white = TRUE)
icd10_df
## ICD10
## 1 A000
## 2 A001
## 3 A009
## 4 A0100
## 5 A0101
## 6 A0102
## 7 A0103
## 8 A0104
## 9 A0105
## 10 A0109
## 11 A011
## 12 A012
## 13 A013
## 14 A014
## 15 A020
## 16 A021
## 17 A0220
## 18 A0221
## 19 A0222
## 20 A0223
## 21 A0224
## 22 A0225
## 23 A0229
## 24 A028
## 25 A029
## 26 A030
## 27 A031
## 28 A032
## 29 A033
## 30 A038
## 31 A039
## 32 A040
## 33 A041
## 34 A042
## 35 A043
## 36 A044
## 37 A045
## 38 A046
## 39 A0471
## 40 A0472
## 41 A048
## 42 A049
## 43 A050
## 44 A051
## 45 A052
## 46 A053
## 47 A054
## 48 A055
## 49 A058
## 50 A059
## 51 A060
## 52 A061
## 53 A062
## 54 A063
## 55 A064
## 56 A065
## 57 A066
## 58 A067
## 59 A0681
## 60 A0682
## 61 A0689
## 62 A069
## 63 A070
## 64 A071
## 65 A072
## 66 A073
## 67 A074
## 68 A078
## 69 A079
## 70 A080
## 71 A0811
## 72 A0819
## 73 A082
## 74 A0831
## 75 A0832
## 76 A0839
## 77 A084
## 78 A088
## 79 A09
## 80 A150
## 81 A154
## 82 A155
## 83 A156
## 84 A157
## 85 A158
## 86 A159
## 87 A170
## 88 A171
## 89 A1781
## 90 A1782
## 91 A1783
## 92 A1789
## 93 A179
## 94 A1801
## 95 A1802
## 96 A1803
## 97 A1809
## 98 A1810
## 99 A1811
## 100 A1812
## 101 A1813
## 102 A1814
## 103 A1815
## 104 A1816
## 105 A1817
## 106 A1818
## 107 A182
## 108 A1831
## 109 A1832
## 110 A1839
## 111 A184
## 112 A1850
## 113 A1851
## 114 A1852
## 115 A1853
## 116 A1854
## 117 A1859
## 118 A186
## 119 A187
## 120 A1881
## 121 A1882
## 122 A1883
## 123 A1884
## 124 A1885
## 125 A1889
## 126 A190
## 127 A191
## 128 A192
## 129 A198
## 130 A199
## 131 A200
## 132 A201
## 133 A202
## 134 A203
## 135 A207
## 136 A208
## 137 A209
## 138 A210
## 139 A211
## 140 A212
## 141 A213
## 142 A217
## 143 A218
## 144 A219
## 145 A220
## 146 A221
## 147 A222
## 148 A227
## 149 A228
## 150 A229
## 151 A230
## 152 A231
## 153 A232
## 154 A233
## 155 A238
## 156 A239
## 157 A240
## 158 A241
## 159 A242
## 160 A243
## 161 A249
## 162 A250
## 163 A251
## 164 A259
## 165 A260
## 166 A267
## 167 A268
## 168 A269
## 169 A270
## 170 A2781
## 171 A2789
## 172 A279
## 173 A280
## 174 A281
## 175 A282
## 176 A288
## 177 A289
## 178 A300
## 179 A301
## 180 A302
## 181 A303
## 182 A304
## 183 A305
## 184 A308
## 185 A309
## 186 A310
## 187 A311
## 188 A312
## 189 A318
## 190 A319
## 191 A320
## 192 A3211
## 193 A3212
## 194 A327
## 195 A3281
## 196 A3282
## 197 A3289
## 198 A329
## 199 A33
## 200 A34
## 201 A35
## 202 A360
## 203 A361
## 204 A362
## 205 A363
## 206 A3681
## 207 A3682
## 208 A3683
## 209 A3684
## 210 A3685
## 211 A3686
## 212 A3689
## 213 A369
## 214 A3700
## 215 A3701
## 216 A3710
## 217 A3711
## 218 A3780
## 219 A3781
## 220 A3790
## 221 A3791
## 222 A380
## 223 A381
## 224 A388
## 225 A389
## 226 A390
## 227 A391
## 228 A392
## 229 A393
## 230 A394
## 231 A3950
## 232 A3951
## 233 A3952
## 234 A3953
## 235 A3981
## 236 A3982
## 237 A3983
## 238 A3984
## 239 A3989
## 240 A399
## 241 A400
## 242 A401
## 243 A403
## 244 A408
## 245 A409
## 246 A4101
## 247 A4102
## 248 A411
## 249 A412
## 250 A413
## 251 A414
## 252 A4150
## 253 A4151
## 254 A4152
## 255 A4153
## 256 A4159
## 257 A4181
## 258 A4189
## 259 A419
## 260 A420
## 261 A421
## 262 A422
## 263 A427
## 264 A4281
## 265 A4282
## 266 A4289
## 267 A429
## 268 A430
## 269 A431
## 270 A438
## 271 A439
## 272 A440
## 273 A441
## 274 A448
## 275 A449
## 276 A46
## 277 A480
## 278 A481
## 279 A482
## 280 A483
## 281 A484
## 282 A4851
## 283 A4852
## 284 A488
## 285 A4901
## 286 A4902
## 287 A491
## 288 A492
## 289 A493
## 290 A498
## 291 A499
## 292 A5001
## 293 A5002
## 294 A5003
## 295 A5004
## 296 A5005
## 297 A5006
## 298 A5007
## 299 A5008
## 300 A5009
## 301 A501
## 302 A502
## 303 A5030
## 304 A5031
## 305 A5032
## 306 A5039
## 307 A5040
## 308 A5041
## 309 A5042
## 310 A5043
## 311 A5044
## 312 A5045
## 313 A5049
## 314 A5051
## 315 A5052
## 316 A5053
## 317 A5054
## 318 A5055
## 319 A5056
## 320 A5057
## 321 A5059
## 322 A506
## 323 A507
## 324 A509
## 325 A510
## 326 A511
## 327 A512
## 328 A5131
## 329 A5132
## 330 A5139
## 331 A5141
## 332 A5142
## 333 A5143
## 334 A5144
## 335 A5145
## 336 A5146
## 337 A5149
## 338 A515
## 339 A519
## 340 A5200
## 341 A5201
## 342 A5202
## 343 A5203
## 344 A5204
## 345 A5205
## 346 A5206
## 347 A5209
## 348 A5210
## 349 A5211
## 350 A5212
## 351 A5213
## 352 A5214
## 353 A5215
## 354 A5216
## 355 A5217
## 356 A5219
## 357 A522
## 358 A523
## 359 A5271
## 360 A5272
## 361 A5273
## 362 A5274
## 363 A5275
## 364 A5276
## 365 A5277
## 366 A5278
## 367 A5279
## 368 A528
## 369 A529
## 370 A530
## 371 A539
## 372 A5400
## 373 A5401
## 374 A5402
## 375 A5403
## 376 A5409
## 377 A541
## 378 A5421
## 379 A5422
## 380 A5423
## 381 A5424
## 382 A5429
## 383 A5430
## 384 A5431
## 385 A5432
## 386 A5433
## 387 A5439
## 388 A5440
## 389 A5441
## 390 A5442
## 391 A5443
## 392 A5449
## 393 A545
## 394 A546
## 395 A5481
## 396 A5482
## 397 A5483
## 398 A5484
## 399 A5485
## 400 A5486
## 401 A5489
## 402 A549
## 403 A55
## 404 A5600
## 405 A5601
## 406 A5602
## 407 A5609
## 408 A5611
## 409 A5619
## 410 A562
## 411 A563
## 412 A564
## 413 A568
## 414 A57
## 415 A58
## 416 A5900
## 417 A5901
## 418 A5902
## 419 A5903
## 420 A5909
## 421 A598
## 422 A599
## 423 A6000
## 424 A6001
## 425 A6002
## 426 A6003
## 427 A6004
## 428 A6009
## 429 A601
## 430 A609
## 431 A630
## 432 A638
## 433 A64
## 434 A65
## 435 A660
## 436 A661
## 437 A662
## 438 A663
## 439 A664
## 440 A665
## 441 A666
## 442 A667
## 443 A668
## 444 A669
## 445 A670
## 446 A671
## 447 A672
## 448 A673
## 449 A679
## 450 A680
## 451 A681
## 452 A689
## 453 A690
## 454 A691
## 455 A6920
## 456 A6921
## 457 A6922
## 458 A6923
## 459 A6929
## 460 A698
## 461 A699
## 462 A70
## 463 A710
## 464 A711
## 465 A719
## 466 A740
## 467 A7481
## 468 A7489
## 469 A749
## 470 A750
## 471 A751
## 472 A752
## 473 A753
## 474 A759
## 475 A770
## 476 A771
## 477 A772
## 478 A773
## 479 A7740
## 480 A7741
## 481 A7749
## 482 A778
## 483 A779
## 484 A78
## 485 A790
## 486 A791
## 487 A7981
## 488 A7989
## 489 A799
## 490 A800
## 491 A801
## 492 A802
## 493 A8030
## 494 A8039
## 495 A804
## 496 A809
## 497 A8100
## 498 A8101
## 499 A8109
## 500 A811
## 501 A812
## 502 A8181
## 503 A8182
## 504 A8183
## 505 A8189
## 506 A819
## 507 A820
## 508 A821
## 509 A829
## 510 A830
## 511 A831
## 512 A832
## 513 A833
## 514 A834
## 515 A835
## 516 A836
## 517 A838
## 518 A839
## 519 A840
## 520 A841
## 521 A848
## 522 A849
## 523 A850
## 524 A851
## 525 A852
## 526 A858
## 527 A86
## 528 A870
## 529 A871
## 530 A872
## 531 A878
## 532 A879
## 533 A880
## 534 A881
## 535 A888
## 536 A89
## 537 A90
## 538 A91
## 539 A920
## 540 A921
## 541 A922
## 542 A9230
## 543 A9231
## 544 A9232
## 545 A9239
## 546 A924
## 547 A925
## 548 A928
## 549 A929
## 550 A930
## 551 A931
## 552 A932
## 553 A938
## 554 A94
## 555 A950
## 556 A951
## 557 A959
## 558 A960
## 559 A961
## 560 A962
## 561 A968
## 562 A969
## 563 A980
## 564 A981
## 565 A982
## 566 A983
## 567 A984
## 568 A985
## 569 A988
## 570 A99
## 571 B000
## 572 B001
## 573 B002
## 574 B003
## 575 B004
## 576 B0050
## 577 B0051
## 578 B0052
## 579 B0053
## 580 B0059
## 581 B007
## 582 B0081
## 583 B0082
## 584 B0089
## 585 B009
## 586 B010
## 587 B0111
## 588 B0112
## 589 B012
## 590 B0181
## 591 B0189
## 592 B019
## 593 B020
## 594 B021
## 595 B0221
## 596 B0222
## 597 B0223
## 598 B0224
## 599 B0229
## 600 B0230
## 601 B0231
## 602 B0232
## 603 B0233
## 604 B0234
## 605 B0239
## 606 B027
## 607 B028
## 608 B029
## 609 B03
## 610 B04
## 611 B050
## 612 B051
## 613 B052
## 614 B053
## 615 B054
## 616 B0581
## 617 B0589
## 618 B059
## 619 B0600
## 620 B0601
## 621 B0602
## 622 B0609
## 623 B0681
## 624 B0682
## 625 B0689
## 626 B069
## 627 B070
## 628 B078
## 629 B079
## 630 B08010
## 631 B08011
## 632 B0802
## 633 B0803
## 634 B0804
## 635 B0809
## 636 B081
## 637 B0820
## 638 B0821
## 639 B0822
## 640 B083
## 641 B084
## 642 B085
## 643 B0860
## 644 B0861
## 645 B0862
## 646 B0869
## 647 B0870
## 648 B0871
## 649 B0872
## 650 B0879
## 651 B088
## 652 B09
## 653 B1001
## 654 B1009
## 655 B1081
## 656 B1082
## 657 B1089
## 658 B150
## 659 B159
## 660 B160
## 661 B161
## 662 B162
## 663 B169
## 664 B170
## 665 B1710
## 666 B1711
## 667 B172
## 668 B178
## 669 B179
## 670 B180
## 671 B181
## 672 B182
## 673 B188
## 674 B189
## 675 B190
## 676 B1910
## 677 B1911
## 678 B1920
## 679 B1921
## 680 B199
## 681 B20
## 682 B250
## 683 B251
## 684 B252
## 685 B258
## 686 B259
## 687 B260
## 688 B261
## 689 B262
## 690 B263
## 691 B2681
## 692 B2682
## 693 B2683
## 694 B2684
## 695 B2685
## 696 B2689
## 697 B269
## 698 B2700
## 699 B2701
## 700 B2702
## 701 B2709
## 702 B2710
## 703 B2711
## 704 B2712
## 705 B2719
## 706 B2780
## 707 B2781
## 708 B2782
## 709 B2789
## 710 B2790
## 711 B2791
## 712 B2792
## 713 B2799
## 714 B300
## 715 B301
## 716 B302
## 717 B303
## 718 B308
## 719 B309
## 720 B330
## 721 B331
## 722 B3320
## 723 B3321
## 724 B3322
## 725 B3323
## 726 B3324
## 727 B333
## 728 B334
## 729 B338
## 730 B340
## 731 B341
## 732 B342
## 733 B343
## 734 B344
## 735 B348
## 736 B349
## 737 B350
## 738 B351
## 739 B352
## 740 B353
## 741 B354
## 742 B355
## 743 B356
## 744 B358
## 745 B359
## 746 B360
## 747 B361
## 748 B362
## 749 B363
## 750 B368
## 751 B369
## 752 B370
## 753 B371
## 754 B372
## 755 B373
## 756 B3741
## 757 B3742
## 758 B3749
## 759 B375
## 760 B376
## 761 B377
## 762 B3781
## 763 B3782
## 764 B3783
## 765 B3784
## 766 B3789
## 767 B379
## 768 B380
## 769 B381
## 770 B382
## 771 B383
## 772 B384
## 773 B387
## 774 B3881
## 775 B3889
## 776 B389
## 777 B390
## 778 B391
## 779 B392
## 780 B393
## 781 B394
## 782 B395
## 783 B399
## 784 B400
## 785 B401
## 786 B402
## 787 B403
## 788 B407
## 789 B4081
## 790 B4089
## 791 B409
## 792 B410
## 793 B417
## 794 B418
## 795 B419
## 796 B420
## 797 B421
## 798 B427
## 799 B4281
## 800 B4282
## 801 B4289
## 802 B429
## 803 B430
## 804 B431
## 805 B432
## 806 B438
## 807 B439
## 808 B440
## 809 B441
## 810 B442
## 811 B447
## 812 B4481
## 813 B4489
## 814 B449
## 815 B450
## 816 B451
## 817 B452
## 818 B453
## 819 B457
## 820 B458
## 821 B459
## 822 B460
## 823 B461
## 824 B462
## 825 B463
## 826 B464
## 827 B465
## 828 B468
## 829 B469
## 830 B470
## 831 B471
## 832 B479
## 833 B480
## 834 B481
## 835 B482
## 836 B483
## 837 B484
## 838 B488
## 839 B49
## 840 B500
## 841 B508
## 842 B509
## 843 B510
## 844 B518
## 845 B519
## 846 B520
## 847 B528
## 848 B529
## 849 B530
## 850 B531
## 851 B538
## 852 B54
## 853 B550
## 854 B551
## 855 B552
## 856 B559
## 857 B560
## 858 B561
## 859 B569
## 860 B570
## 861 B571
## 862 B572
## 863 B5730
## 864 B5731
## 865 B5732
## 866 B5739
## 867 B5740
## 868 B5741
## 869 B5742
## 870 B5749
## 871 B575
## 872 B5800
## 873 B5801
## 874 B5809
## 875 B581
## 876 B582
## 877 B583
## 878 B5881
## 879 B5882
## 880 B5883
## 881 B5889
## 882 B589
## 883 B59
## 884 B600
## 885 B6010
## 886 B6011
## 887 B6012
## 888 B6013
## 889 B6019
## 890 B602
## 891 B608
## 892 B64
## 893 B650
## 894 B651
## 895 B652
## 896 B653
## 897 B658
## 898 B659
## 899 B660
## 900 B661
## 901 B662
## 902 B663
## 903 B664
## 904 B665
## 905 B668
## 906 B669
## 907 B670
## 908 B671
## 909 B672
## 910 B6731
## 911 B6732
## 912 B6739
## 913 B674
## 914 B675
## 915 B6761
## 916 B6769
## 917 B677
## 918 B678
## 919 B6790
## 920 B6799
## 921 B680
## 922 B681
## 923 B689
## 924 B690
## 925 B691
## 926 B6981
## 927 B6989
## 928 B699
## 929 B700
## 930 B701
## 931 B710
## 932 B711
## 933 B718
## 934 B719
## 935 B72
## 936 B7300
## 937 B7301
## 938 B7302
## 939 B7309
## 940 B731
## 941 B740
## 942 B741
## 943 B742
## 944 B743
## 945 B744
## 946 B748
## 947 B749
## 948 B75
## 949 B760
## 950 B761
## 951 B768
## 952 B769
## 953 B770
## 954 B7781
## 955 B7789
## 956 B779
## 957 B780
## 958 B781
## 959 B787
## 960 B789
## 961 B79
## 962 B80
## 963 B810
## 964 B811
## 965 B812
## 966 B813
## 967 B814
## 968 B818
## 969 B820
## 970 B829
## 971 B830
## 972 B831
## 973 B832
## 974 B833
## 975 B834
## 976 B838
## 977 B839
## 978 B850
## 979 B851
## 980 B852
## 981 B853
## 982 B854
## 983 B86
## 984 B870
## 985 B871
## 986 B872
## 987 B873
## 988 B874
## 989 B8781
## 990 B8782
## 991 B8789
## 992 B879
## 993 B880
## 994 B881
## 995 B882
## 996 B883
## 997 B888
## 998 B889
## 999 B89
## 1000 B900
## 1001 B901
## 1002 B902
## 1003 B908
## 1004 B909
## 1005 B91
## 1006 B92
## 1007 B940
## 1008 B941
## 1009 B942
## 1010 B948
## 1011 B949
## 1012 B950
## 1013 B951
## 1014 B952
## 1015 B953
## 1016 B954
## 1017 B955
## 1018 B9561
## 1019 B9562
## 1020 B957
## 1021 B958
## 1022 B960
## 1023 B961
## 1024 B9620
## 1025 B9621
## 1026 B9622
## 1027 B9623
## 1028 B9629
## 1029 B963
## 1030 B964
## 1031 B965
## 1032 B966
## 1033 B967
## 1034 B9681
## 1035 B9682
## 1036 B9689
## 1037 B970
## 1038 B9710
## 1039 B9711
## 1040 B9712
## 1041 B9719
## 1042 B9721
## 1043 B9729
## 1044 B9730
## 1045 B9731
## 1046 B9732
## 1047 B9733
## 1048 B9734
## 1049 B9735
## 1050 B9739
## 1051 B974
## 1052 B975
## 1053 B976
## 1054 B977
## 1055 B9781
## 1056 B9789
## 1057 B998
## 1058 B999
## 1059 C000
## 1060 C001
## 1061 C002
## 1062 C003
## 1063 C004
## 1064 C005
## 1065 C006
## 1066 C008
## 1067 C009
## 1068 C01
## 1069 C020
## 1070 C021
## 1071 C022
## 1072 C023
## 1073 C024
## 1074 C028
## 1075 C029
## 1076 C030
## 1077 C031
## 1078 C039
## 1079 C040
## 1080 C041
## 1081 C048
## 1082 C049
## 1083 C050
## 1084 C051
## 1085 C052
## 1086 C058
## 1087 C059
## 1088 C060
## 1089 C061
## 1090 C062
## 1091 C0680
## 1092 C0689
## 1093 C069
## 1094 C07
## 1095 C080
## 1096 C081
## 1097 C089
## 1098 C090
## 1099 C091
## 1100 C098
## 1101 C099
## 1102 C100
## 1103 C101
## 1104 C102
## 1105 C103
## 1106 C104
## 1107 C108
## 1108 C109
## 1109 C110
## 1110 C111
## 1111 C112
## 1112 C113
## 1113 C118
## 1114 C119
## 1115 C12
## 1116 C130
## 1117 C131
## 1118 C132
## 1119 C138
## 1120 C139
## 1121 C140
## 1122 C142
## 1123 C148
## 1124 C153
## 1125 C154
## 1126 C155
## 1127 C158
## 1128 C159
## 1129 C160
## 1130 C161
## 1131 C162
## 1132 C163
## 1133 C164
## 1134 C165
## 1135 C166
## 1136 C168
## 1137 C169
## 1138 C170
## 1139 C171
## 1140 C172
## 1141 C173
## 1142 C178
## 1143 C179
## 1144 C180
## 1145 C181
## 1146 C182
## 1147 C183
## 1148 C184
## 1149 C185
## 1150 C186
## 1151 C187
## 1152 C188
## 1153 C189
## 1154 C19
## 1155 C20
## 1156 C210
## 1157 C211
## 1158 C212
## 1159 C218
## 1160 C220
## 1161 C221
## 1162 C222
## 1163 C223
## 1164 C224
## 1165 C227
## 1166 C228
## 1167 C229
## 1168 C23
## 1169 C240
## 1170 C241
## 1171 C248
## 1172 C249
## 1173 C250
## 1174 C251
## 1175 C252
## 1176 C253
## 1177 C254
## 1178 C257
## 1179 C258
## 1180 C259
## 1181 C260
## 1182 C261
## 1183 C269
## 1184 C300
## 1185 C301
## 1186 C310
## 1187 C311
## 1188 C312
## 1189 C313
## 1190 C318
## 1191 C319
## 1192 C320
## 1193 C321
## 1194 C322
## 1195 C323
## 1196 C328
## 1197 C329
## 1198 C33
## 1199 C3400
## 1200 C3401
## 1201 C3402
## 1202 C3410
## 1203 C3411
## 1204 C3412
## 1205 C342
## 1206 C3430
## 1207 C3431
## 1208 C3432
## 1209 C3480
## 1210 C3481
## 1211 C3482
## 1212 C3490
## 1213 C3491
## 1214 C3492
## 1215 C37
## 1216 C380
## 1217 C381
## 1218 C382
## 1219 C383
## 1220 C384
## 1221 C388
## 1222 C390
## 1223 C399
## 1224 C4000
## 1225 C4001
## 1226 C4002
## 1227 C4010
## 1228 C4011
## 1229 C4012
## 1230 C4020
## 1231 C4021
## 1232 C4022
## 1233 C4030
## 1234 C4031
## 1235 C4032
## 1236 C4080
## 1237 C4081
## 1238 C4082
## 1239 C4090
## 1240 C4091
## 1241 C4092
## 1242 C410
## 1243 C411
## 1244 C412
## 1245 C413
## 1246 C414
## 1247 C419
## 1248 C430
## 1249 C4310
## 1250 C43111
## 1251 C43112
## 1252 C43121
## 1253 C43122
## 1254 C4320
## 1255 C4321
## 1256 C4322
## 1257 C4330
## 1258 C4331
## 1259 C4339
## 1260 C434
## 1261 C4351
## 1262 C4352
## 1263 C4359
## 1264 C4360
## 1265 C4361
## 1266 C4362
## 1267 C4370
## 1268 C4371
## 1269 C4372
## 1270 C438
## 1271 C439
## 1272 C4A0
## 1273 C4A10
## 1274 C4A111
## 1275 C4A112
## 1276 C4A121
## 1277 C4A122
## 1278 C4A20
## 1279 C4A21
## 1280 C4A22
## 1281 C4A30
## 1282 C4A31
## 1283 C4A39
## 1284 C4A4
## 1285 C4A51
## 1286 C4A52
## 1287 C4A59
## 1288 C4A60
## 1289 C4A61
## 1290 C4A62
## 1291 C4A70
## 1292 C4A71
## 1293 C4A72
## 1294 C4A8
## 1295 C4A9
## 1296 C4400
## 1297 C4401
## 1298 C4402
## 1299 C4409
## 1300 C44101
## 1301 C441021
## 1302 C441022
## 1303 C441091
## 1304 C441092
## 1305 C44111
## 1306 C441121
## 1307 C441122
## 1308 C441191
## 1309 C441192
## 1310 C44121
## 1311 C441221
## 1312 C441222
## 1313 C441291
## 1314 C441292
## 1315 C44131
## 1316 C441321
## 1317 C441322
## 1318 C441391
## 1319 C441392
## 1320 C44191
## 1321 C441921
## 1322 C441922
## 1323 C441991
## 1324 C441992
## 1325 C44201
## 1326 C44202
## 1327 C44209
## 1328 C44211
## 1329 C44212
## 1330 C44219
## 1331 C44221
## 1332 C44222
## 1333 C44229
## 1334 C44291
## 1335 C44292
## 1336 C44299
## 1337 C44300
## 1338 C44301
## 1339 C44309
## 1340 C44310
## 1341 C44311
## 1342 C44319
## 1343 C44320
## 1344 C44321
## 1345 C44329
## 1346 C44390
## 1347 C44391
## 1348 C44399
## 1349 C4440
## 1350 C4441
## 1351 C4442
## 1352 C4449
## 1353 C44500
## 1354 C44501
## 1355 C44509
## 1356 C44510
## 1357 C44511
## 1358 C44519
## 1359 C44520
## 1360 C44521
## 1361 C44529
## 1362 C44590
## 1363 C44591
## 1364 C44599
## 1365 C44601
## 1366 C44602
## 1367 C44609
## 1368 C44611
## 1369 C44612
## 1370 C44619
## 1371 C44621
## 1372 C44622
## 1373 C44629
## 1374 C44691
## 1375 C44692
## 1376 C44699
## 1377 C44701
## 1378 C44702
## 1379 C44709
## 1380 C44711
## 1381 C44712
## 1382 C44719
## 1383 C44721
## 1384 C44722
## 1385 C44729
## 1386 C44791
## 1387 C44792
## 1388 C44799
## 1389 C4480
## 1390 C4481
## 1391 C4482
## 1392 C4489
## 1393 C4490
## 1394 C4491
## 1395 C4492
## 1396 C4499
## 1397 C450
## 1398 C451
## 1399 C452
## 1400 C457
## 1401 C459
## 1402 C460
## 1403 C461
## 1404 C462
## 1405 C463
## 1406 C464
## 1407 C4650
## 1408 C4651
## 1409 C4652
## 1410 C467
## 1411 C469
## 1412 C470
## 1413 C4710
## 1414 C4711
## 1415 C4712
## 1416 C4720
## 1417 C4721
## 1418 C4722
## 1419 C473
## 1420 C474
## 1421 C475
## 1422 C476
## 1423 C478
## 1424 C479
## 1425 C480
## 1426 C481
## 1427 C482
## 1428 C488
## 1429 C490
## 1430 C4910
## 1431 C4911
## 1432 C4912
## 1433 C4920
## 1434 C4921
## 1435 C4922
## 1436 C493
## 1437 C494
## 1438 C495
## 1439 C496
## 1440 C498
## 1441 C499
## 1442 C49A0
## 1443 C49A1
## 1444 C49A2
## 1445 C49A3
## 1446 C49A4
## 1447 C49A5
## 1448 C49A9
## 1449 C50011
## 1450 C50012
## 1451 C50019
## 1452 C50021
## 1453 C50022
## 1454 C50029
## 1455 C50111
## 1456 C50112
## 1457 C50119
## 1458 C50121
## 1459 C50122
## 1460 C50129
## 1461 C50211
## 1462 C50212
## 1463 C50219
## 1464 C50221
## 1465 C50222
## 1466 C50229
## 1467 C50311
## 1468 C50312
## 1469 C50319
## 1470 C50321
## 1471 C50322
## 1472 C50329
## 1473 C50411
## 1474 C50412
## 1475 C50419
## 1476 C50421
## 1477 C50422
## 1478 C50429
## 1479 C50511
## 1480 C50512
## 1481 C50519
## 1482 C50521
## 1483 C50522
## 1484 C50529
## 1485 C50611
## 1486 C50612
## 1487 C50619
## 1488 C50621
## 1489 C50622
## 1490 C50629
## 1491 C50811
## 1492 C50812
## 1493 C50819
## 1494 C50821
## 1495 C50822
## 1496 C50829
## 1497 C50911
## 1498 C50912
## 1499 C50919
## 1500 C50921
## 1501 C50922
## 1502 C50929
## 1503 C510
## 1504 C511
## 1505 C512
## 1506 C518
## 1507 C519
## 1508 C52
## 1509 C530
## 1510 C531
## 1511 C538
## 1512 C539
## 1513 C540
## 1514 C541
## 1515 C542
## 1516 C543
## 1517 C548
## 1518 C549
## 1519 C55
## 1520 C561
## 1521 C562
## 1522 C569
## 1523 C5700
## 1524 C5701
## 1525 C5702
## 1526 C5710
## 1527 C5711
## 1528 C5712
## 1529 C5720
## 1530 C5721
## 1531 C5722
## 1532 C573
## 1533 C574
## 1534 C577
## 1535 C578
## 1536 C579
## 1537 C58
## 1538 C600
## 1539 C601
## 1540 C602
## 1541 C608
## 1542 C609
## 1543 C61
## 1544 C6200
## 1545 C6201
## 1546 C6202
## 1547 C6210
## 1548 C6211
## 1549 C6212
## 1550 C6290
## 1551 C6291
## 1552 C6292
## 1553 C6300
## 1554 C6301
## 1555 C6302
## 1556 C6310
## 1557 C6311
## 1558 C6312
## 1559 C632
## 1560 C637
## 1561 C638
## 1562 C639
## 1563 C641
## 1564 C642
## 1565 C649
## 1566 C651
## 1567 C652
## 1568 C659
## 1569 C661
## 1570 C662
## 1571 C669
## 1572 C670
## 1573 C671
## 1574 C672
## 1575 C673
## 1576 C674
## 1577 C675
## 1578 C676
## 1579 C677
## 1580 C678
## 1581 C679
## 1582 C680
## 1583 C681
## 1584 C688
## 1585 C689
## 1586 C6900
## 1587 C6901
## 1588 C6902
## 1589 C6910
## 1590 C6911
## 1591 C6912
## 1592 C6920
## 1593 C6921
## 1594 C6922
## 1595 C6930
## 1596 C6931
## 1597 C6932
## 1598 C6940
## 1599 C6941
## 1600 C6942
## 1601 C6950
## 1602 C6951
## 1603 C6952
## 1604 C6960
## 1605 C6961
## 1606 C6962
## 1607 C6980
## 1608 C6981
## 1609 C6982
## 1610 C6990
## 1611 C6991
## 1612 C6992
## 1613 C700
## 1614 C701
## 1615 C709
## 1616 C710
## 1617 C711
## 1618 C712
## 1619 C713
## 1620 C714
## 1621 C715
## 1622 C716
## 1623 C717
## 1624 C718
## 1625 C719
## 1626 C720
## 1627 C721
## 1628 C7220
## 1629 C7221
## 1630 C7222
## 1631 C7230
## 1632 C7231
## 1633 C7232
## 1634 C7240
## 1635 C7241
## 1636 C7242
## 1637 C7250
## 1638 C7259
## 1639 C729
## 1640 C73
## 1641 C7400
## 1642 C7401
## 1643 C7402
## 1644 C7410
## 1645 C7411
## 1646 C7412
## 1647 C7490
## 1648 C7491
## 1649 C7492
## 1650 C750
## 1651 C751
## 1652 C752
## 1653 C753
## 1654 C754
## 1655 C755
## 1656 C758
## 1657 C759
## 1658 C7A00
## 1659 C7A010
## 1660 C7A011
## 1661 C7A012
## 1662 C7A019
## 1663 C7A020
## 1664 C7A021
## 1665 C7A022
## 1666 C7A023
## 1667 C7A024
## 1668 C7A025
## 1669 C7A026
## 1670 C7A029
## 1671 C7A090
## 1672 C7A091
## 1673 C7A092
## 1674 C7A093
## 1675 C7A094
## 1676 C7A095
## 1677 C7A096
## 1678 C7A098
## 1679 C7A1
## 1680 C7A8
## 1681 C7B00
## 1682 C7B01
## 1683 C7B02
## 1684 C7B03
## 1685 C7B04
## 1686 C7B09
## 1687 C7B1
## 1688 C7B8
## 1689 C760
## 1690 C761
## 1691 C762
## 1692 C763
## 1693 C7640
## 1694 C7641
## 1695 C7642
## 1696 C7650
## 1697 C7651
## 1698 C7652
## 1699 C768
## 1700 C770
## 1701 C771
## 1702 C772
## 1703 C773
## 1704 C774
## 1705 C775
## 1706 C778
## 1707 C779
## 1708 C7800
## 1709 C7801
## 1710 C7802
## 1711 C781
## 1712 C782
## 1713 C7830
## 1714 C7839
## 1715 C784
## 1716 C785
## 1717 C786
## 1718 C787
## 1719 C7880
## 1720 C7889
## 1721 C7900
## 1722 C7901
## 1723 C7902
## 1724 C7910
## 1725 C7911
## 1726 C7919
## 1727 C792
## 1728 C7931
## 1729 C7932
## 1730 C7940
## 1731 C7949
## 1732 C7951
## 1733 C7952
## 1734 C7960
## 1735 C7961
## 1736 C7962
## 1737 C7970
## 1738 C7971
## 1739 C7972
## 1740 C7981
## 1741 C7982
## 1742 C7989
## 1743 C799
## 1744 C800
## 1745 C801
## 1746 C802
## 1747 C8100
## 1748 C8101
## 1749 C8102
## 1750 C8103
## 1751 C8104
## 1752 C8105
## 1753 C8106
## 1754 C8107
## 1755 C8108
## 1756 C8109
## 1757 C8110
## 1758 C8111
## 1759 C8112
## 1760 C8113
## 1761 C8114
## 1762 C8115
## 1763 C8116
## 1764 C8117
## 1765 C8118
## 1766 C8119
## 1767 C8120
## 1768 C8121
## 1769 C8122
## 1770 C8123
## 1771 C8124
## 1772 C8125
## 1773 C8126
## 1774 C8127
## 1775 C8128
## 1776 C8129
## 1777 C8130
## 1778 C8131
## 1779 C8132
## 1780 C8133
## 1781 C8134
## 1782 C8135
## 1783 C8136
## 1784 C8137
## 1785 C8138
## 1786 C8139
## 1787 C8140
## 1788 C8141
## 1789 C8142
## 1790 C8143
## 1791 C8144
## 1792 C8145
## 1793 C8146
## 1794 C8147
## 1795 C8148
## 1796 C8149
## 1797 C8170
## 1798 C8171
## 1799 C8172
## 1800 C8173
## 1801 C8174
## 1802 C8175
## 1803 C8176
## 1804 C8177
## 1805 C8178
## 1806 C8179
## 1807 C8190
## 1808 C8191
## 1809 C8192
## 1810 C8193
## 1811 C8194
## 1812 C8195
## 1813 C8196
## 1814 C8197
## 1815 C8198
## 1816 C8199
## 1817 C8200
## 1818 C8201
## 1819 C8202
## 1820 C8203
## 1821 C8204
## 1822 C8205
## 1823 C8206
## 1824 C8207
## 1825 C8208
## 1826 C8209
## 1827 C8210
## 1828 C8211
## 1829 C8212
## 1830 C8213
## 1831 C8214
## 1832 C8215
## 1833 C8216
## 1834 C8217
## 1835 C8218
## 1836 C8219
## 1837 C8220
## 1838 C8221
## 1839 C8222
## 1840 C8223
## 1841 C8224
## 1842 C8225
## 1843 C8226
## 1844 C8227
## 1845 C8228
## 1846 C8229
## 1847 C8230
## 1848 C8231
## 1849 C8232
## 1850 C8233
## 1851 C8234
## 1852 C8235
## 1853 C8236
## 1854 C8237
## 1855 C8238
## 1856 C8239
## 1857 C8240
## 1858 C8241
## 1859 C8242
## 1860 C8243
## 1861 C8244
## 1862 C8245
## 1863 C8246
## 1864 C8247
## 1865 C8248
## 1866 C8249
## 1867 C8250
## 1868 C8251
## 1869 C8252
## 1870 C8253
## 1871 C8254
## 1872 C8255
## 1873 C8256
## 1874 C8257
## 1875 C8258
## 1876 C8259
## 1877 C8260
## 1878 C8261
## 1879 C8262
## 1880 C8263
## 1881 C8264
## 1882 C8265
## 1883 C8266
## 1884 C8267
## 1885 C8268
## 1886 C8269
## 1887 C8280
## 1888 C8281
## 1889 C8282
## 1890 C8283
## 1891 C8284
## 1892 C8285
## 1893 C8286
## 1894 C8287
## 1895 C8288
## 1896 C8289
## 1897 C8290
## 1898 C8291
## 1899 C8292
## 1900 C8293
## 1901 C8294
## 1902 C8295
## 1903 C8296
## 1904 C8297
## 1905 C8298
## 1906 C8299
## 1907 C8300
## 1908 C8301
## 1909 C8302
## 1910 C8303
## 1911 C8304
## 1912 C8305
## 1913 C8306
## 1914 C8307
## 1915 C8308
## 1916 C8309
## 1917 C8310
## 1918 C8311
## 1919 C8312
## 1920 C8313
## 1921 C8314
## 1922 C8315
## 1923 C8316
## 1924 C8317
## 1925 C8318
## 1926 C8319
## 1927 C8330
## 1928 C8331
## 1929 C8332
## 1930 C8333
## 1931 C8334
## 1932 C8335
## 1933 C8336
## 1934 C8337
## 1935 C8338
## 1936 C8339
## 1937 C8350
## 1938 C8351
## 1939 C8352
## 1940 C8353
## 1941 C8354
## 1942 C8355
## 1943 C8356
## 1944 C8357
## 1945 C8358
## 1946 C8359
## 1947 C8370
## 1948 C8371
## 1949 C8372
## 1950 C8373
## 1951 C8374
## 1952 C8375
## 1953 C8376
## 1954 C8377
## 1955 C8378
## 1956 C8379
## 1957 C8380
## 1958 C8381
## 1959 C8382
## 1960 C8383
## 1961 C8384
## 1962 C8385
## 1963 C8386
## 1964 C8387
## 1965 C8388
## 1966 C8389
## 1967 C8390
## 1968 C8391
## 1969 C8392
## 1970 C8393
## 1971 C8394
## 1972 C8395
## 1973 C8396
## 1974 C8397
## 1975 C8398
## 1976 C8399
## 1977 C8400
## 1978 C8401
## 1979 C8402
## 1980 C8403
## 1981 C8404
## 1982 C8405
## 1983 C8406
## 1984 C8407
## 1985 C8408
## 1986 C8409
## 1987 C8410
## 1988 C8411
## 1989 C8412
## 1990 C8413
## 1991 C8414
## 1992 C8415
## 1993 C8416
## 1994 C8417
## 1995 C8418
## 1996 C8419
## 1997 C8440
## 1998 C8441
## 1999 C8442
## 2000 C8443
## 2001 C8444
## 2002 C8445
## 2003 C8446
## 2004 C8447
## 2005 C8448
## 2006 C8449
## 2007 C8460
## 2008 C8461
## 2009 C8462
## 2010 C8463
## 2011 C8464
## 2012 C8465
## 2013 C8466
## 2014 C8467
## 2015 C8468
## 2016 C8469
## 2017 C8470
## 2018 C8471
## 2019 C8472
## 2020 C8473
## 2021 C8474
## 2022 C8475
## 2023 C8476
## 2024 C8477
## 2025 C8478
## 2026 C8479
## 2027 C84A0
## 2028 C84A1
## 2029 C84A2
## 2030 C84A3
## 2031 C84A4
## 2032 C84A5
## 2033 C84A6
## 2034 C84A7
## 2035 C84A8
## 2036 C84A9
## 2037 C84Z0
## 2038 C84Z1
## 2039 C84Z2
## 2040 C84Z3
## 2041 C84Z4
## 2042 C84Z5
## 2043 C84Z6
## 2044 C84Z7
## 2045 C84Z8
## 2046 C84Z9
## 2047 C8490
## 2048 C8491
## 2049 C8492
## 2050 C8493
## 2051 C8494
## 2052 C8495
## 2053 C8496
## 2054 C8497
## 2055 C8498
## 2056 C8499
## 2057 C8510
## 2058 C8511
## 2059 C8512
## 2060 C8513
## 2061 C8514
## 2062 C8515
## 2063 C8516
## 2064 C8517
## 2065 C8518
## 2066 C8519
## 2067 C8520
## 2068 C8521
## 2069 C8522
## 2070 C8523
## 2071 C8524
## 2072 C8525
## 2073 C8526
## 2074 C8527
## 2075 C8528
## 2076 C8529
## 2077 C8580
## 2078 C8581
## 2079 C8582
## 2080 C8583
## 2081 C8584
## 2082 C8585
## 2083 C8586
## 2084 C8587
## 2085 C8588
## 2086 C8589
## 2087 C8590
## 2088 C8591
## 2089 C8592
## 2090 C8593
## 2091 C8594
## 2092 C8595
## 2093 C8596
## 2094 C8597
## 2095 C8598
## 2096 C8599
## 2097 C860
## 2098 C861
## 2099 C862
## 2100 C863
## 2101 C864
## 2102 C865
## 2103 C866
## 2104 C880
## 2105 C882
## 2106 C883
## 2107 C884
## 2108 C888
## 2109 C889
## 2110 C9000
## 2111 C9001
## 2112 C9002
## 2113 C9010
## 2114 C9011
## 2115 C9012
## 2116 C9020
## 2117 C9021
## 2118 C9022
## 2119 C9030
## 2120 C9031
## 2121 C9032
## 2122 C9100
## 2123 C9101
## 2124 C9102
## 2125 C9110
## 2126 C9111
## 2127 C9112
## 2128 C9130
## 2129 C9131
## 2130 C9132
## 2131 C9140
## 2132 C9141
## 2133 C9142
## 2134 C9150
## 2135 C9151
## 2136 C9152
## 2137 C9160
## 2138 C9161
## 2139 C9162
## 2140 C91A0
## 2141 C91A1
## 2142 C91A2
## 2143 C91Z0
## 2144 C91Z1
## 2145 C91Z2
## 2146 C9190
## 2147 C9191
## 2148 C9192
## 2149 C9200
## 2150 C9201
## 2151 C9202
## 2152 C9210
## 2153 C9211
## 2154 C9212
## 2155 C9220
## 2156 C9221
## 2157 C9222
## 2158 C9230
## 2159 C9231
## 2160 C9232
## 2161 C9240
## 2162 C9241
## 2163 C9242
## 2164 C9250
## 2165 C9251
## 2166 C9252
## 2167 C9260
## 2168 C9261
## 2169 C9262
## 2170 C92A0
## 2171 C92A1
## 2172 C92A2
## 2173 C92Z0
## 2174 C92Z1
## 2175 C92Z2
## 2176 C9290
## 2177 C9291
## 2178 C9292
## 2179 C9300
## 2180 C9301
## 2181 C9302
## 2182 C9310
## 2183 C9311
## 2184 C9312
## 2185 C9330
## 2186 C9331
## 2187 C9332
## 2188 C93Z0
## 2189 C93Z1
## 2190 C93Z2
## 2191 C9390
## 2192 C9391
## 2193 C9392
## 2194 C9400
## 2195 C9401
## 2196 C9402
## 2197 C9420
## 2198 C9421
## 2199 C9422
## 2200 C9430
## 2201 C9431
## 2202 C9432
## 2203 C9440
## 2204 C9441
## 2205 C9442
## 2206 C946
## 2207 C9480
## 2208 C9481
## 2209 C9482
## 2210 C9500
## 2211 C9501
## 2212 C9502
## 2213 C9510
## 2214 C9511
## 2215 C9512
## 2216 C9590
## 2217 C9591
## 2218 C9592
## 2219 C960
## 2220 C9620
## 2221 C9621
## 2222 C9622
## 2223 C9629
## 2224 C964
## 2225 C965
## 2226 C966
## 2227 C96A
## 2228 C96Z
## 2229 C969
## 2230 D0000
## 2231 D0001
## 2232 D0002
## 2233 D0003
## 2234 D0004
## 2235 D0005
## 2236 D0006
## 2237 D0007
## 2238 D0008
## 2239 D001
## 2240 D002
## 2241 D010
## 2242 D011
## 2243 D012
## 2244 D013
## 2245 D0140
## 2246 D0149
## 2247 D015
## 2248 D017
## 2249 D019
## 2250 D020
## 2251 D021
## 2252 D0220
## 2253 D0221
## 2254 D0222
## 2255 D023
## 2256 D024
## 2257 D030
## 2258 D0310
## 2259 D03111
## 2260 D03112
## 2261 D03121
## 2262 D03122
## 2263 D0320
## 2264 D0321
## 2265 D0322
## 2266 D0330
## 2267 D0339
## 2268 D034
## 2269 D0351
## 2270 D0352
## 2271 D0359
## 2272 D0360
## 2273 D0361
## 2274 D0362
## 2275 D0370
## 2276 D0371
## 2277 D0372
## 2278 D038
## 2279 D039
## 2280 D040
## 2281 D0410
## 2282 D04111
## 2283 D04112
## 2284 D04121
## 2285 D04122
## 2286 D0420
## 2287 D0421
## 2288 D0422
## 2289 D0430
## 2290 D0439
## 2291 D044
## 2292 D045
## 2293 D0460
## 2294 D0461
## 2295 D0462
## 2296 D0470
## 2297 D0471
## 2298 D0472
## 2299 D048
## 2300 D049
## 2301 D0500
## 2302 D0501
## 2303 D0502
## 2304 D0510
## 2305 D0511
## 2306 D0512
## 2307 D0580
## 2308 D0581
## 2309 D0582
## 2310 D0590
## 2311 D0591
## 2312 D0592
## 2313 D060
## 2314 D061
## 2315 D067
## 2316 D069
## 2317 D070
## 2318 D071
## 2319 D072
## 2320 D0730
## 2321 D0739
## 2322 D074
## 2323 D075
## 2324 D0760
## 2325 D0761
## 2326 D0769
## 2327 D090
## 2328 D0910
## 2329 D0919
## 2330 D0920
## 2331 D0921
## 2332 D0922
## 2333 D093
## 2334 D098
## 2335 D099
## 2336 D100
## 2337 D101
## 2338 D102
## 2339 D1030
## 2340 D1039
## 2341 D104
## 2342 D105
## 2343 D106
## 2344 D107
## 2345 D109
## 2346 D110
## 2347 D117
## 2348 D119
## 2349 D120
## 2350 D121
## 2351 D122
## 2352 D123
## 2353 D124
## 2354 D125
## 2355 D126
## 2356 D127
## 2357 D128
## 2358 D129
## 2359 D130
## 2360 D131
## 2361 D132
## 2362 D1330
## 2363 D1339
## 2364 D134
## 2365 D135
## 2366 D136
## 2367 D137
## 2368 D139
## 2369 D140
## 2370 D141
## 2371 D142
## 2372 D1430
## 2373 D1431
## 2374 D1432
## 2375 D144
## 2376 D150
## 2377 D151
## 2378 D152
## 2379 D157
## 2380 D159
## 2381 D1600
## 2382 D1601
## 2383 D1602
## 2384 D1610
## 2385 D1611
## 2386 D1612
## 2387 D1620
## 2388 D1621
## 2389 D1622
## 2390 D1630
## 2391 D1631
## 2392 D1632
## 2393 D164
## 2394 D165
## 2395 D166
## 2396 D167
## 2397 D168
## 2398 D169
## 2399 D170
## 2400 D171
## 2401 D1720
## 2402 D1721
## 2403 D1722
## 2404 D1723
## 2405 D1724
## 2406 D1730
## 2407 D1739
## 2408 D174
## 2409 D175
## 2410 D176
## 2411 D1771
## 2412 D1772
## 2413 D1779
## 2414 D179
## 2415 D1800
## 2416 D1801
## 2417 D1802
## 2418 D1803
## 2419 D1809
## 2420 D181
## 2421 D190
## 2422 D191
## 2423 D197
## 2424 D199
## 2425 D200
## 2426 D201
## 2427 D210
## 2428 D2110
## 2429 D2111
## 2430 D2112
## 2431 D2120
## 2432 D2121
## 2433 D2122
## 2434 D213
## 2435 D214
## 2436 D215
## 2437 D216
## 2438 D219
## 2439 D220
## 2440 D2210
## 2441 D22111
## 2442 D22112
## 2443 D22121
## 2444 D22122
## 2445 D2220
## 2446 D2221
## 2447 D2222
## 2448 D2230
## 2449 D2239
## 2450 D224
## 2451 D225
## 2452 D2260
## 2453 D2261
## 2454 D2262
## 2455 D2270
## 2456 D2271
## 2457 D2272
## 2458 D229
## 2459 D230
## 2460 D2310
## 2461 D23111
## 2462 D23112
## 2463 D23121
## 2464 D23122
## 2465 D2320
## 2466 D2321
## 2467 D2322
## 2468 D2330
## 2469 D2339
## 2470 D234
## 2471 D235
## 2472 D2360
## 2473 D2361
## 2474 D2362
## 2475 D2370
## 2476 D2371
## 2477 D2372
## 2478 D239
## 2479 D241
## 2480 D242
## 2481 D249
## 2482 D250
## 2483 D251
## 2484 D252
## 2485 D259
## 2486 D260
## 2487 D261
## 2488 D267
## 2489 D269
## 2490 D270
## 2491 D271
## 2492 D279
## 2493 D280
## 2494 D281
## 2495 D282
## 2496 D287
## 2497 D289
## 2498 D290
## 2499 D291
## 2500 D2920
## 2501 D2921
## 2502 D2922
## 2503 D2930
## 2504 D2931
## 2505 D2932
## 2506 D294
## 2507 D298
## 2508 D299
## 2509 D3000
## 2510 D3001
## 2511 D3002
## 2512 D3010
## 2513 D3011
## 2514 D3012
## 2515 D3020
## 2516 D3021
## 2517 D3022
## 2518 D303
## 2519 D304
## 2520 D308
## 2521 D309
## 2522 D3100
## 2523 D3101
## 2524 D3102
## 2525 D3110
## 2526 D3111
## 2527 D3112
## 2528 D3120
## 2529 D3121
## 2530 D3122
## 2531 D3130
## 2532 D3131
## 2533 D3132
## 2534 D3140
## 2535 D3141
## 2536 D3142
## 2537 D3150
## 2538 D3151
## 2539 D3152
## 2540 D3160
## 2541 D3161
## 2542 D3162
## 2543 D3190
## 2544 D3191
## 2545 D3192
## 2546 D320
## 2547 D321
## 2548 D329
## 2549 D330
## 2550 D331
## 2551 D332
## 2552 D333
## 2553 D334
## 2554 D337
## 2555 D339
## 2556 D34
## 2557 D3500
## 2558 D3501
## 2559 D3502
## 2560 D351
## 2561 D352
## 2562 D353
## 2563 D354
## 2564 D355
## 2565 D356
## 2566 D357
## 2567 D359
## 2568 D360
## 2569 D3610
## 2570 D3611
## 2571 D3612
## 2572 D3613
## 2573 D3614
## 2574 D3615
## 2575 D3616
## 2576 D3617
## 2577 D367
## 2578 D369
## 2579 D3A00
## 2580 D3A010
## 2581 D3A011
## 2582 D3A012
## 2583 D3A019
## 2584 D3A020
## 2585 D3A021
## 2586 D3A022
## 2587 D3A023
## 2588 D3A024
## 2589 D3A025
## 2590 D3A026
## 2591 D3A029
## 2592 D3A090
## 2593 D3A091
## 2594 D3A092
## 2595 D3A093
## 2596 D3A094
## 2597 D3A095
## 2598 D3A096
## 2599 D3A098
## 2600 D3A8
## 2601 D3701
## 2602 D3702
## 2603 D37030
## 2604 D37031
## 2605 D37032
## 2606 D37039
## 2607 D3704
## 2608 D3705
## 2609 D3709
## 2610 D371
## 2611 D372
## 2612 D373
## 2613 D374
## 2614 D375
## 2615 D376
## 2616 D378
## 2617 D379
## 2618 D380
## 2619 D381
## 2620 D382
## 2621 D383
## 2622 D384
## 2623 D385
## 2624 D386
## 2625 D390
## 2626 D3910
## 2627 D3911
## 2628 D3912
## 2629 D392
## 2630 D398
## 2631 D399
## 2632 D400
## 2633 D4010
## 2634 D4011
## 2635 D4012
## 2636 D408
## 2637 D409
## 2638 D4100
## 2639 D4101
## 2640 D4102
## 2641 D4110
## 2642 D4111
## 2643 D4112
## 2644 D4120
## 2645 D4121
## 2646 D4122
## 2647 D413
## 2648 D414
## 2649 D418
## 2650 D419
## 2651 D420
## 2652 D421
## 2653 D429
## 2654 D430
## 2655 D431
## 2656 D432
## 2657 D433
## 2658 D434
## 2659 D438
## 2660 D439
## 2661 D440
## 2662 D4410
## 2663 D4411
## 2664 D4412
## 2665 D442
## 2666 D443
## 2667 D444
## 2668 D445
## 2669 D446
## 2670 D447
## 2671 D449
## 2672 D45
## 2673 D460
## 2674 D461
## 2675 D4620
## 2676 D4621
## 2677 D4622
## 2678 D46A
## 2679 D46B
## 2680 D46C
## 2681 D464
## 2682 D46Z
## 2683 D469
## 2684 D4701
## 2685 D4702
## 2686 D4709
## 2687 D471
## 2688 D472
## 2689 D473
## 2690 D474
## 2691 D47Z1
## 2692 D47Z2
## 2693 D47Z9
## 2694 D479
## 2695 D480
## 2696 D481
## 2697 D482
## 2698 D483
## 2699 D484
## 2700 D485
## 2701 D4860
## 2702 D4861
## 2703 D4862
## 2704 D487
## 2705 D489
## 2706 D490
## 2707 D491
## 2708 D492
## 2709 D493
## 2710 D494
## 2711 D49511
## 2712 D49512
## 2713 D49519
## 2714 D4959
## 2715 D496
## 2716 D497
## 2717 D4981
## 2718 D4989
## 2719 D499
## 2720 D500
## 2721 D501
## 2722 D508
## 2723 D509
## 2724 D510
## 2725 D511
## 2726 D512
## 2727 D513
## 2728 D518
## 2729 D519
## 2730 D520
## 2731 D521
## 2732 D528
## 2733 D529
## 2734 D530
## 2735 D531
## 2736 D532
## 2737 D538
## 2738 D539
## 2739 D550
## 2740 D551
## 2741 D552
## 2742 D553
## 2743 D558
## 2744 D559
## 2745 D560
## 2746 D561
## 2747 D562
## 2748 D563
## 2749 D564
## 2750 D565
## 2751 D568
## 2752 D569
## 2753 D5700
## 2754 D5701
## 2755 D5702
## 2756 D571
## 2757 D5720
## 2758 D57211
## 2759 D57212
## 2760 D57219
## 2761 D573
## 2762 D5740
## 2763 D57411
## 2764 D57412
## 2765 D57419
## 2766 D5780
## 2767 D57811
## 2768 D57812
## 2769 D57819
## 2770 D580
## 2771 D581
## 2772 D582
## 2773 D588
## 2774 D589
## 2775 D590
## 2776 D591
## 2777 D592
## 2778 D593
## 2779 D594
## 2780 D595
## 2781 D596
## 2782 D598
## 2783 D599
## 2784 D600
## 2785 D601
## 2786 D608
## 2787 D609
## 2788 D6101
## 2789 D6109
## 2790 D611
## 2791 D612
## 2792 D613
## 2793 D61810
## 2794 D61811
## 2795 D61818
## 2796 D6182
## 2797 D6189
## 2798 D619
## 2799 D62
## 2800 D630
## 2801 D631
## 2802 D638
## 2803 D640
## 2804 D641
## 2805 D642
## 2806 D643
## 2807 D644
## 2808 D6481
## 2809 D6489
## 2810 D649
## 2811 D65
## 2812 D66
## 2813 D67
## 2814 D680
## 2815 D681
## 2816 D682
## 2817 D68311
## 2818 D68312
## 2819 D68318
## 2820 D6832
## 2821 D684
## 2822 D6851
## 2823 D6852
## 2824 D6859
## 2825 D6861
## 2826 D6862
## 2827 D6869
## 2828 D688
## 2829 D689
## 2830 D690
## 2831 D691
## 2832 D692
## 2833 D693
## 2834 D6941
## 2835 D6942
## 2836 D6949
## 2837 D6951
## 2838 D6959
## 2839 D696
## 2840 D698
## 2841 D699
## 2842 D700
## 2843 D701
## 2844 D702
## 2845 D703
## 2846 D704
## 2847 D708
## 2848 D709
## 2849 D71
## 2850 D720
## 2851 D721
## 2852 D72810
## 2853 D72818
## 2854 D72819
## 2855 D72820
## 2856 D72821
## 2857 D72822
## 2858 D72823
## 2859 D72824
## 2860 D72825
## 2861 D72828
## 2862 D72829
## 2863 D7289
## 2864 D729
## 2865 D730
## 2866 D731
## 2867 D732
## 2868 D733
## 2869 D734
## 2870 D735
## 2871 D7381
## 2872 D7389
## 2873 D739
## 2874 D740
## 2875 D748
## 2876 D749
## 2877 D750
## 2878 D751
## 2879 D7581
## 2880 D7582
## 2881 D7589
## 2882 D759
## 2883 D75A
## 2884 D761
## 2885 D762
## 2886 D763
## 2887 D77
## 2888 D7801
## 2889 D7802
## 2890 D7811
## 2891 D7812
## 2892 D7821
## 2893 D7822
## 2894 D7831
## 2895 D7832
## 2896 D7833
## 2897 D7834
## 2898 D7881
## 2899 D7889
## 2900 D800
## 2901 D801
## 2902 D802
## 2903 D803
## 2904 D804
## 2905 D805
## 2906 D806
## 2907 D807
## 2908 D808
## 2909 D809
## 2910 D810
## 2911 D811
## 2912 D812
## 2913 D8130
## 2914 D8131
## 2915 D8132
## 2916 D8139
## 2917 D814
## 2918 D815
## 2919 D816
## 2920 D817
## 2921 D81810
## 2922 D81818
## 2923 D81819
## 2924 D8189
## 2925 D819
## 2926 D820
## 2927 D821
## 2928 D822
## 2929 D823
## 2930 D824
## 2931 D828
## 2932 D829
## 2933 D830
## 2934 D831
## 2935 D832
## 2936 D838
## 2937 D839
## 2938 D840
## 2939 D841
## 2940 D848
## 2941 D849
## 2942 D860
## 2943 D861
## 2944 D862
## 2945 D863
## 2946 D8681
## 2947 D8682
## 2948 D8683
## 2949 D8684
## 2950 D8685
## 2951 D8686
## 2952 D8687
## 2953 D8689
## 2954 D869
## 2955 D890
## 2956 D891
## 2957 D892
## 2958 D893
## 2959 D8940
## 2960 D8941
## 2961 D8942
## 2962 D8943
## 2963 D8949
## 2964 D89810
## 2965 D89811
## 2966 D89812
## 2967 D89813
## 2968 D8982
## 2969 D8989
## 2970 D899
## 2971 E000
## 2972 E001
## 2973 E002
## 2974 E009
## 2975 E010
## 2976 E011
## 2977 E012
## 2978 E018
## 2979 E02
## 2980 E030
## 2981 E031
## 2982 E032
## 2983 E033
## 2984 E034
## 2985 E035
## 2986 E038
## 2987 E039
## 2988 E040
## 2989 E041
## 2990 E042
## 2991 E048
## 2992 E049
## 2993 E0500
## 2994 E0501
## 2995 E0510
## 2996 E0511
## 2997 E0520
## 2998 E0521
## 2999 E0530
## 3000 E0531
## 3001 E0540
## 3002 E0541
## 3003 E0580
## 3004 E0581
## 3005 E0590
## 3006 E0591
## 3007 E060
## 3008 E061
## 3009 E062
## 3010 E063
## 3011 E064
## 3012 E065
## 3013 E069
## 3014 E070
## 3015 E071
## 3016 E0781
## 3017 E0789
## 3018 E079
## 3019 E0800
## 3020 E0801
## 3021 E0810
## 3022 E0811
## 3023 E0821
## 3024 E0822
## 3025 E0829
## 3026 E08311
## 3027 E08319
## 3028 E083211
## 3029 E083212
## 3030 E083213
## 3031 E083219
## 3032 E083291
## 3033 E083292
## 3034 E083293
## 3035 E083299
## 3036 E083311
## 3037 E083312
## 3038 E083313
## 3039 E083319
## 3040 E083391
## 3041 E083392
## 3042 E083393
## 3043 E083399
## 3044 E083411
## 3045 E083412
## 3046 E083413
## 3047 E083419
## 3048 E083491
## 3049 E083492
## 3050 E083493
## 3051 E083499
## 3052 E083511
## 3053 E083512
## 3054 E083513
## 3055 E083519
## 3056 E083521
## 3057 E083522
## 3058 E083523
## 3059 E083529
## 3060 E083531
## 3061 E083532
## 3062 E083533
## 3063 E083539
## 3064 E083541
## 3065 E083542
## 3066 E083543
## 3067 E083549
## 3068 E083551
## 3069 E083552
## 3070 E083553
## 3071 E083559
## 3072 E083591
## 3073 E083592
## 3074 E083593
## 3075 E083599
## 3076 E0836
## 3077 E0837X1
## 3078 E0837X2
## 3079 E0837X3
## 3080 E0837X9
## 3081 E0839
## 3082 E0840
## 3083 E0841
## 3084 E0842
## 3085 E0843
## 3086 E0844
## 3087 E0849
## 3088 E0851
## 3089 E0852
## 3090 E0859
## 3091 E08610
## 3092 E08618
## 3093 E08620
## 3094 E08621
## 3095 E08622
## 3096 E08628
## 3097 E08630
## 3098 E08638
## 3099 E08641
## 3100 E08649
## 3101 E0865
## 3102 E0869
## 3103 E088
## 3104 E089
## 3105 E0900
## 3106 E0901
## 3107 E0910
## 3108 E0911
## 3109 E0921
## 3110 E0922
## 3111 E0929
## 3112 E09311
## 3113 E09319
## 3114 E093211
## 3115 E093212
## 3116 E093213
## 3117 E093219
## 3118 E093291
## 3119 E093292
## 3120 E093293
## 3121 E093299
## 3122 E093311
## 3123 E093312
## 3124 E093313
## 3125 E093319
## 3126 E093391
## 3127 E093392
## 3128 E093393
## 3129 E093399
## 3130 E093411
## 3131 E093412
## 3132 E093413
## 3133 E093419
## 3134 E093491
## 3135 E093492
## 3136 E093493
## 3137 E093499
## 3138 E093511
## 3139 E093512
## 3140 E093513
## 3141 E093519
## 3142 E093521
## 3143 E093522
## 3144 E093523
## 3145 E093529
## 3146 E093531
## 3147 E093532
## 3148 E093533
## 3149 E093539
## 3150 E093541
## 3151 E093542
## 3152 E093543
## 3153 E093549
## 3154 E093551
## 3155 E093552
## 3156 E093553
## 3157 E093559
## 3158 E093591
## 3159 E093592
## 3160 E093593
## 3161 E093599
## 3162 E0936
## 3163 E0937X1
## 3164 E0937X2
## 3165 E0937X3
## 3166 E0937X9
## 3167 E0939
## 3168 E0940
## 3169 E0941
## 3170 E0942
## 3171 E0943
## 3172 E0944
## 3173 E0949
## 3174 E0951
## 3175 E0952
## 3176 E0959
## 3177 E09610
## 3178 E09618
## 3179 E09620
## 3180 E09621
## 3181 E09622
## 3182 E09628
## 3183 E09630
## 3184 E09638
## 3185 E09641
## 3186 E09649
## 3187 E0965
## 3188 E0969
## 3189 E098
## 3190 E099
## 3191 E1010
## 3192 E1011
## 3193 E1021
## 3194 E1022
## 3195 E1029
## 3196 E10311
## 3197 E10319
## 3198 E103211
## 3199 E103212
## 3200 E103213
## 3201 E103219
## 3202 E103291
## 3203 E103292
## 3204 E103293
## 3205 E103299
## 3206 E103311
## 3207 E103312
## 3208 E103313
## 3209 E103319
## 3210 E103391
## 3211 E103392
## 3212 E103393
## 3213 E103399
## 3214 E103411
## 3215 E103412
## 3216 E103413
## 3217 E103419
## 3218 E103491
## 3219 E103492
## 3220 E103493
## 3221 E103499
## 3222 E103511
## 3223 E103512
## 3224 E103513
## 3225 E103519
## 3226 E103521
## 3227 E103522
## 3228 E103523
## 3229 E103529
## 3230 E103531
## 3231 E103532
## 3232 E103533
## 3233 E103539
## 3234 E103541
## 3235 E103542
## 3236 E103543
## 3237 E103549
## 3238 E103551
## 3239 E103552
## 3240 E103553
## 3241 E103559
## 3242 E103591
## 3243 E103592
## 3244 E103593
## 3245 E103599
## 3246 E1036
## 3247 E1037X1
## 3248 E1037X2
## 3249 E1037X3
## 3250 E1037X9
## 3251 E1039
## 3252 E1040
## 3253 E1041
## 3254 E1042
## 3255 E1043
## 3256 E1044
## 3257 E1049
## 3258 E1051
## 3259 E1052
## 3260 E1059
## 3261 E10610
## 3262 E10618
## 3263 E10620
## 3264 E10621
## 3265 E10622
## 3266 E10628
## 3267 E10630
## 3268 E10638
## 3269 E10641
## 3270 E10649
## 3271 E1065
## 3272 E1069
## 3273 E108
## 3274 E109
## 3275 E1100
## 3276 E1101
## 3277 E1110
## 3278 E1111
## 3279 E1121
## 3280 E1122
## 3281 E1129
## 3282 E11311
## 3283 E11319
## 3284 E113211
## 3285 E113212
## 3286 E113213
## 3287 E113219
## 3288 E113291
## 3289 E113292
## 3290 E113293
## 3291 E113299
## 3292 E113311
## 3293 E113312
## 3294 E113313
## 3295 E113319
## 3296 E113391
## 3297 E113392
## 3298 E113393
## 3299 E113399
## 3300 E113411
## 3301 E113412
## 3302 E113413
## 3303 E113419
## 3304 E113491
## 3305 E113492
## 3306 E113493
## 3307 E113499
## 3308 E113511
## 3309 E113512
## 3310 E113513
## 3311 E113519
## 3312 E113521
## 3313 E113522
## 3314 E113523
## 3315 E113529
## 3316 E113531
## 3317 E113532
## 3318 E113533
## 3319 E113539
## 3320 E113541
## 3321 E113542
## 3322 E113543
## 3323 E113549
## 3324 E113551
## 3325 E113552
## 3326 E113553
## 3327 E113559
## 3328 E113591
## 3329 E113592
## 3330 E113593
## 3331 E113599
## 3332 E1136
## 3333 E1137X1
## 3334 E1137X2
## 3335 E1137X3
## 3336 E1137X9
## 3337 E1139
## 3338 E1140
## 3339 E1141
## 3340 E1142
## 3341 E1143
## 3342 E1144
## 3343 E1149
## 3344 E1151
## 3345 E1152
## 3346 E1159
## 3347 E11610
## 3348 E11618
## 3349 E11620
## 3350 E11621
## 3351 E11622
## 3352 E11628
## 3353 E11630
## 3354 E11638
## 3355 E11641
## 3356 E11649
## 3357 E1165
## 3358 E1169
## 3359 E118
## 3360 E119
## 3361 E1300
## 3362 E1301
## 3363 E1310
## 3364 E1311
## 3365 E1321
## 3366 E1322
## 3367 E1329
## 3368 E13311
## 3369 E13319
## 3370 E133211
## 3371 E133212
## 3372 E133213
## 3373 E133219
## 3374 E133291
## 3375 E133292
## 3376 E133293
## 3377 E133299
## 3378 E133311
## 3379 E133312
## 3380 E133313
## 3381 E133319
## 3382 E133391
## 3383 E133392
## 3384 E133393
## 3385 E133399
## 3386 E133411
## 3387 E133412
## 3388 E133413
## 3389 E133419
## 3390 E133491
## 3391 E133492
## 3392 E133493
## 3393 E133499
## 3394 E133511
## 3395 E133512
## 3396 E133513
## 3397 E133519
## 3398 E133521
## 3399 E133522
## 3400 E133523
## 3401 E133529
## 3402 E133531
## 3403 E133532
## 3404 E133533
## 3405 E133539
## 3406 E133541
## 3407 E133542
## 3408 E133543
## 3409 E133549
## 3410 E133551
## 3411 E133552
## 3412 E133553
## 3413 E133559
## 3414 E133591
## 3415 E133592
## 3416 E133593
## 3417 E133599
## 3418 E1336
## 3419 E1337X1
## 3420 E1337X2
## 3421 E1337X3
## 3422 E1337X9
## 3423 E1339
## 3424 E1340
## 3425 E1341
## 3426 E1342
## 3427 E1343
## 3428 E1344
## 3429 E1349
## 3430 E1351
## 3431 E1352
## 3432 E1359
## 3433 E13610
## 3434 E13618
## 3435 E13620
## 3436 E13621
## 3437 E13622
## 3438 E13628
## 3439 E13630
## 3440 E13638
## 3441 E13641
## 3442 E13649
## 3443 E1365
## 3444 E1369
## 3445 E138
## 3446 E139
## 3447 E15
## 3448 E160
## 3449 E161
## 3450 E162
## 3451 E163
## 3452 E164
## 3453 E168
## 3454 E169
## 3455 E200
## 3456 E201
## 3457 E208
## 3458 E209
## 3459 E210
## 3460 E211
## 3461 E212
## 3462 E213
## 3463 E214
## 3464 E215
## 3465 E220
## 3466 E221
## 3467 E222
## 3468 E228
## 3469 E229
## 3470 E230
## 3471 E231
## 3472 E232
## 3473 E233
## 3474 E236
## 3475 E237
## 3476 E240
## 3477 E241
## 3478 E242
## 3479 E243
## 3480 E244
## 3481 E248
## 3482 E249
## 3483 E250
## 3484 E258
## 3485 E259
## 3486 E2601
## 3487 E2602
## 3488 E2609
## 3489 E261
## 3490 E2681
## 3491 E2689
## 3492 E269
## 3493 E270
## 3494 E271
## 3495 E272
## 3496 E273
## 3497 E2740
## 3498 E2749
## 3499 E275
## 3500 E278
## 3501 E279
## 3502 E280
## 3503 E281
## 3504 E282
## 3505 E28310
## 3506 E28319
## 3507 E2839
## 3508 E288
## 3509 E289
## 3510 E290
## 3511 E291
## 3512 E298
## 3513 E299
## 3514 E300
## 3515 E301
## 3516 E308
## 3517 E309
## 3518 E310
## 3519 E311
## 3520 E3120
## 3521 E3121
## 3522 E3122
## 3523 E3123
## 3524 E318
## 3525 E319
## 3526 E320
## 3527 E321
## 3528 E328
## 3529 E329
## 3530 E340
## 3531 E341
## 3532 E342
## 3533 E343
## 3534 E344
## 3535 E3450
## 3536 E3451
## 3537 E3452
## 3538 E348
## 3539 E349
## 3540 E35
## 3541 E3601
## 3542 E3602
## 3543 E3611
## 3544 E3612
## 3545 E368
## 3546 E40
## 3547 E41
## 3548 E42
## 3549 E43
## 3550 E440
## 3551 E441
## 3552 E45
## 3553 E46
## 3554 E500
## 3555 E501
## 3556 E502
## 3557 E503
## 3558 E504
## 3559 E505
## 3560 E506
## 3561 E507
## 3562 E508
## 3563 E509
## 3564 E5111
## 3565 E5112
## 3566 E512
## 3567 E518
## 3568 E519
## 3569 E52
## 3570 E530
## 3571 E531
## 3572 E538
## 3573 E539
## 3574 E54
## 3575 E550
## 3576 E559
## 3577 E560
## 3578 E561
## 3579 E568
## 3580 E569
## 3581 E58
## 3582 E59
## 3583 E60
## 3584 E610
## 3585 E611
## 3586 E612
## 3587 E613
## 3588 E614
## 3589 E615
## 3590 E616
## 3591 E617
## 3592 E618
## 3593 E619
## 3594 E630
## 3595 E631
## 3596 E638
## 3597 E639
## 3598 E640
## 3599 E641
## 3600 E642
## 3601 E643
## 3602 E648
## 3603 E649
## 3604 E65
## 3605 E6601
## 3606 E6609
## 3607 E661
## 3608 E662
## 3609 E663
## 3610 E668
## 3611 E669
## 3612 E670
## 3613 E671
## 3614 E672
## 3615 E673
## 3616 E678
## 3617 E68
## 3618 E700
## 3619 E701
## 3620 E7020
## 3621 E7021
## 3622 E7029
## 3623 E7030
## 3624 E70310
## 3625 E70311
## 3626 E70318
## 3627 E70319
## 3628 E70320
## 3629 E70321
## 3630 E70328
## 3631 E70329
## 3632 E70330
## 3633 E70331
## 3634 E70338
## 3635 E70339
## 3636 E7039
## 3637 E7040
## 3638 E7041
## 3639 E7049
## 3640 E705
## 3641 E708
## 3642 E709
## 3643 E710
## 3644 E71110
## 3645 E71111
## 3646 E71118
## 3647 E71120
## 3648 E71121
## 3649 E71128
## 3650 E7119
## 3651 E712
## 3652 E7130
## 3653 E71310
## 3654 E71311
## 3655 E71312
## 3656 E71313
## 3657 E71314
## 3658 E71318
## 3659 E7132
## 3660 E7139
## 3661 E7140
## 3662 E7141
## 3663 E7142
## 3664 E7143
## 3665 E71440
## 3666 E71448
## 3667 E7150
## 3668 E71510
## 3669 E71511
## 3670 E71518
## 3671 E71520
## 3672 E71521
## 3673 E71522
## 3674 E71528
## 3675 E71529
## 3676 E7153
## 3677 E71540
## 3678 E71541
## 3679 E71542
## 3680 E71548
## 3681 E7200
## 3682 E7201
## 3683 E7202
## 3684 E7203
## 3685 E7204
## 3686 E7209
## 3687 E7210
## 3688 E7211
## 3689 E7212
## 3690 E7219
## 3691 E7220
## 3692 E7221
## 3693 E7222
## 3694 E7223
## 3695 E7229
## 3696 E723
## 3697 E724
## 3698 E7250
## 3699 E7251
## 3700 E7252
## 3701 E7253
## 3702 E7259
## 3703 E7281
## 3704 E7289
## 3705 E729
## 3706 E730
## 3707 E731
## 3708 E738
## 3709 E739
## 3710 E7400
## 3711 E7401
## 3712 E7402
## 3713 E7403
## 3714 E7404
## 3715 E7409
## 3716 E7410
## 3717 E7411
## 3718 E7412
## 3719 E7419
## 3720 E7420
## 3721 E7421
## 3722 E7429
## 3723 E7431
## 3724 E7439
## 3725 E744
## 3726 E748
## 3727 E749
## 3728 E7500
## 3729 E7501
## 3730 E7502
## 3731 E7509
## 3732 E7510
## 3733 E7511
## 3734 E7519
## 3735 E7521
## 3736 E7522
## 3737 E7523
## 3738 E75240
## 3739 E75241
## 3740 E75242
## 3741 E75243
## 3742 E75248
## 3743 E75249
## 3744 E7525
## 3745 E7526
## 3746 E7529
## 3747 E753
## 3748 E754
## 3749 E755
## 3750 E756
## 3751 E7601
## 3752 E7602
## 3753 E7603
## 3754 E761
## 3755 E76210
## 3756 E76211
## 3757 E76219
## 3758 E7622
## 3759 E7629
## 3760 E763
## 3761 E768
## 3762 E769
## 3763 E770
## 3764 E771
## 3765 E778
## 3766 E779
## 3767 E7800
## 3768 E7801
## 3769 E781
## 3770 E782
## 3771 E783
## 3772 E7841
## 3773 E7849
## 3774 E785
## 3775 E786
## 3776 E7870
## 3777 E7871
## 3778 E7872
## 3779 E7879
## 3780 E7881
## 3781 E7889
## 3782 E789
## 3783 E790
## 3784 E791
## 3785 E792
## 3786 E798
## 3787 E799
## 3788 E800
## 3789 E801
## 3790 E8020
## 3791 E8021
## 3792 E8029
## 3793 E803
## 3794 E804
## 3795 E805
## 3796 E806
## 3797 E807
## 3798 E8300
## 3799 E8301
## 3800 E8309
## 3801 E8310
## 3802 E83110
## 3803 E83111
## 3804 E83118
## 3805 E83119
## 3806 E8319
## 3807 E832
## 3808 E8330
## 3809 E8331
## 3810 E8332
## 3811 E8339
## 3812 E8340
## 3813 E8341
## 3814 E8342
## 3815 E8349
## 3816 E8350
## 3817 E8351
## 3818 E8352
## 3819 E8359
## 3820 E8381
## 3821 E8389
## 3822 E839
## 3823 E840
## 3824 E8411
## 3825 E8419
## 3826 E848
## 3827 E849
## 3828 E850
## 3829 E851
## 3830 E852
## 3831 E853
## 3832 E854
## 3833 E8581
## 3834 E8582
## 3835 E8589
## 3836 E859
## 3837 E860
## 3838 E861
## 3839 E869
## 3840 E870
## 3841 E871
## 3842 E872
## 3843 E873
## 3844 E874
## 3845 E875
## 3846 E876
## 3847 E8770
## 3848 E8771
## 3849 E8779
## 3850 E878
## 3851 E8801
## 3852 E8802
## 3853 E8809
## 3854 E881
## 3855 E882
## 3856 E883
## 3857 E8840
## 3858 E8841
## 3859 E8842
## 3860 E8849
## 3861 E8881
## 3862 E8889
## 3863 E889
## 3864 E890
## 3865 E891
## 3866 E892
## 3867 E893
## 3868 E8940
## 3869 E8941
## 3870 E895
## 3871 E896
## 3872 E89810
## 3873 E89811
## 3874 E89820
## 3875 E89821
## 3876 E89822
## 3877 E89823
## 3878 E8989
## 3879 F0150
## 3880 F0151
## 3881 F0280
## 3882 F0281
## 3883 F0390
## 3884 F0391
## 3885 F04
## 3886 F05
## 3887 F060
## 3888 F061
## 3889 F062
## 3890 F0630
## 3891 F0631
## 3892 F0632
## 3893 F0633
## 3894 F0634
## 3895 F064
## 3896 F068
## 3897 F070
## 3898 F0781
## 3899 F0789
## 3900 F079
## 3901 F09
## 3902 F1010
## 3903 F1011
## 3904 F10120
## 3905 F10121
## 3906 F10129
## 3907 F1014
## 3908 F10150
## 3909 F10151
## 3910 F10159
## 3911 F10180
## 3912 F10181
## 3913 F10182
## 3914 F10188
## 3915 F1019
## 3916 F1020
## 3917 F1021
## 3918 F10220
## 3919 F10221
## 3920 F10229
## 3921 F10230
## 3922 F10231
## 3923 F10232
## 3924 F10239
## 3925 F1024
## 3926 F10250
## 3927 F10251
## 3928 F10259
## 3929 F1026
## 3930 F1027
## 3931 F10280
## 3932 F10281
## 3933 F10282
## 3934 F10288
## 3935 F1029
## 3936 F10920
## 3937 F10921
## 3938 F10929
## 3939 F1094
## 3940 F10950
## 3941 F10951
## 3942 F10959
## 3943 F1096
## 3944 F1097
## 3945 F10980
## 3946 F10981
## 3947 F10982
## 3948 F10988
## 3949 F1099
## 3950 F1110
## 3951 F1111
## 3952 F11120
## 3953 F11121
## 3954 F11122
## 3955 F11129
## 3956 F1114
## 3957 F11150
## 3958 F11151
## 3959 F11159
## 3960 F11181
## 3961 F11182
## 3962 F11188
## 3963 F1119
## 3964 F1120
## 3965 F1121
## 3966 F11220
## 3967 F11221
## 3968 F11222
## 3969 F11229
## 3970 F1123
## 3971 F1124
## 3972 F11250
## 3973 F11251
## 3974 F11259
## 3975 F11281
## 3976 F11282
## 3977 F11288
## 3978 F1129
## 3979 F1190
## 3980 F11920
## 3981 F11921
## 3982 F11922
## 3983 F11929
## 3984 F1193
## 3985 F1194
## 3986 F11950
## 3987 F11951
## 3988 F11959
## 3989 F11981
## 3990 F11982
## 3991 F11988
## 3992 F1199
## 3993 F1210
## 3994 F1211
## 3995 F12120
## 3996 F12121
## 3997 F12122
## 3998 F12129
## 3999 F12150
## 4000 F12151
## 4001 F12159
## 4002 F12180
## 4003 F12188
## 4004 F1219
## 4005 F1220
## 4006 F1221
## 4007 F12220
## 4008 F12221
## 4009 F12222
## 4010 F12229
## 4011 F1223
## 4012 F12250
## 4013 F12251
## 4014 F12259
## 4015 F12280
## 4016 F12288
## 4017 F1229
## 4018 F1290
## 4019 F12920
## 4020 F12921
## 4021 F12922
## 4022 F12929
## 4023 F1293
## 4024 F12950
## 4025 F12951
## 4026 F12959
## 4027 F12980
## 4028 F12988
## 4029 F1299
## 4030 F1310
## 4031 F1311
## 4032 F13120
## 4033 F13121
## 4034 F13129
## 4035 F1314
## 4036 F13150
## 4037 F13151
## 4038 F13159
## 4039 F13180
## 4040 F13181
## 4041 F13182
## 4042 F13188
## 4043 F1319
## 4044 F1320
## 4045 F1321
## 4046 F13220
## 4047 F13221
## 4048 F13229
## 4049 F13230
## 4050 F13231
## 4051 F13232
## 4052 F13239
## 4053 F1324
## 4054 F13250
## 4055 F13251
## 4056 F13259
## 4057 F1326
## 4058 F1327
## 4059 F13280
## 4060 F13281
## 4061 F13282
## 4062 F13288
## 4063 F1329
## 4064 F1390
## 4065 F13920
## 4066 F13921
## 4067 F13929
## 4068 F13930
## 4069 F13931
## 4070 F13932
## 4071 F13939
## 4072 F1394
## 4073 F13950
## 4074 F13951
## 4075 F13959
## 4076 F1396
## 4077 F1397
## 4078 F13980
## 4079 F13981
## 4080 F13982
## 4081 F13988
## 4082 F1399
## 4083 F1410
## 4084 F1411
## 4085 F14120
## 4086 F14121
## 4087 F14122
## 4088 F14129
## 4089 F1414
## 4090 F14150
## 4091 F14151
## 4092 F14159
## 4093 F14180
## 4094 F14181
## 4095 F14182
## 4096 F14188
## 4097 F1419
## 4098 F1420
## 4099 F1421
## 4100 F14220
## 4101 F14221
## 4102 F14222
## 4103 F14229
## 4104 F1423
## 4105 F1424
## 4106 F14250
## 4107 F14251
## 4108 F14259
## 4109 F14280
## 4110 F14281
## 4111 F14282
## 4112 F14288
## 4113 F1429
## 4114 F1490
## 4115 F14920
## 4116 F14921
## 4117 F14922
## 4118 F14929
## 4119 F1494
## 4120 F14950
## 4121 F14951
## 4122 F14959
## 4123 F14980
## 4124 F14981
## 4125 F14982
## 4126 F14988
## 4127 F1499
## 4128 F1510
## 4129 F1511
## 4130 F15120
## 4131 F15121
## 4132 F15122
## 4133 F15129
## 4134 F1514
## 4135 F15150
## 4136 F15151
## 4137 F15159
## 4138 F15180
## 4139 F15181
## 4140 F15182
## 4141 F15188
## 4142 F1519
## 4143 F1520
## 4144 F1521
## 4145 F15220
## 4146 F15221
## 4147 F15222
## 4148 F15229
## 4149 F1523
## 4150 F1524
## 4151 F15250
## 4152 F15251
## 4153 F15259
## 4154 F15280
## 4155 F15281
## 4156 F15282
## 4157 F15288
## 4158 F1529
## 4159 F1590
## 4160 F15920
## 4161 F15921
## 4162 F15922
## 4163 F15929
## 4164 F1593
## 4165 F1594
## 4166 F15950
## 4167 F15951
## 4168 F15959
## 4169 F15980
## 4170 F15981
## 4171 F15982
## 4172 F15988
## 4173 F1599
## 4174 F1610
## 4175 F1611
## 4176 F16120
## 4177 F16121
## 4178 F16122
## 4179 F16129
## 4180 F1614
## 4181 F16150
## 4182 F16151
## 4183 F16159
## 4184 F16180
## 4185 F16183
## 4186 F16188
## 4187 F1619
## 4188 F1620
## 4189 F1621
## 4190 F16220
## 4191 F16221
## 4192 F16229
## 4193 F1624
## 4194 F16250
## 4195 F16251
## 4196 F16259
## 4197 F16280
## 4198 F16283
## 4199 F16288
## 4200 F1629
## 4201 F1690
## 4202 F16920
## 4203 F16921
## 4204 F16929
## 4205 F1694
## 4206 F16950
## 4207 F16951
## 4208 F16959
## 4209 F16980
## 4210 F16983
## 4211 F16988
## 4212 F1699
## 4213 F17200
## 4214 F17201
## 4215 F17203
## 4216 F17208
## 4217 F17209
## 4218 F17210
## 4219 F17211
## 4220 F17213
## 4221 F17218
## 4222 F17219
## 4223 F17220
## 4224 F17221
## 4225 F17223
## 4226 F17228
## 4227 F17229
## 4228 F17290
## 4229 F17291
## 4230 F17293
## 4231 F17298
## 4232 F17299
## 4233 F1810
## 4234 F1811
## 4235 F18120
## 4236 F18121
## 4237 F18129
## 4238 F1814
## 4239 F18150
## 4240 F18151
## 4241 F18159
## 4242 F1817
## 4243 F18180
## 4244 F18188
## 4245 F1819
## 4246 F1820
## 4247 F1821
## 4248 F18220
## 4249 F18221
## 4250 F18229
## 4251 F1824
## 4252 F18250
## 4253 F18251
## 4254 F18259
## 4255 F1827
## 4256 F18280
## 4257 F18288
## 4258 F1829
## 4259 F1890
## 4260 F18920
## 4261 F18921
## 4262 F18929
## 4263 F1894
## 4264 F18950
## 4265 F18951
## 4266 F18959
## 4267 F1897
## 4268 F18980
## 4269 F18988
## 4270 F1899
## 4271 F1910
## 4272 F1911
## 4273 F19120
## 4274 F19121
## 4275 F19122
## 4276 F19129
## 4277 F1914
## 4278 F19150
## 4279 F19151
## 4280 F19159
## 4281 F1916
## 4282 F1917
## 4283 F19180
## 4284 F19181
## 4285 F19182
## 4286 F19188
## 4287 F1919
## 4288 F1920
## 4289 F1921
## 4290 F19220
## 4291 F19221
## 4292 F19222
## 4293 F19229
## 4294 F19230
## 4295 F19231
## 4296 F19232
## 4297 F19239
## 4298 F1924
## 4299 F19250
## 4300 F19251
## 4301 F19259
## 4302 F1926
## 4303 F1927
## 4304 F19280
## 4305 F19281
## 4306 F19282
## 4307 F19288
## 4308 F1929
## 4309 F1990
## 4310 F19920
## 4311 F19921
## 4312 F19922
## 4313 F19929
## 4314 F19930
## 4315 F19931
## 4316 F19932
## 4317 F19939
## 4318 F1994
## 4319 F19950
## 4320 F19951
## 4321 F19959
## 4322 F1996
## 4323 F1997
## 4324 F19980
## 4325 F19981
## 4326 F19982
## 4327 F19988
## 4328 F1999
## 4329 F200
## 4330 F201
## 4331 F202
## 4332 F203
## 4333 F205
## 4334 F2081
## 4335 F2089
## 4336 F209
## 4337 F21
## 4338 F22
## 4339 F23
## 4340 F24
## 4341 F250
## 4342 F251
## 4343 F258
## 4344 F259
## 4345 F28
## 4346 F29
## 4347 F3010
## 4348 F3011
## 4349 F3012
## 4350 F3013
## 4351 F302
## 4352 F303
## 4353 F304
## 4354 F308
## 4355 F309
## 4356 F310
## 4357 F3110
## 4358 F3111
## 4359 F3112
## 4360 F3113
## 4361 F312
## 4362 F3130
## 4363 F3131
## 4364 F3132
## 4365 F314
## 4366 F315
## 4367 F3160
## 4368 F3161
## 4369 F3162
## 4370 F3163
## 4371 F3164
## 4372 F3170
## 4373 F3171
## 4374 F3172
## 4375 F3173
## 4376 F3174
## 4377 F3175
## 4378 F3176
## 4379 F3177
## 4380 F3178
## 4381 F3181
## 4382 F3189
## 4383 F319
## 4384 F320
## 4385 F321
## 4386 F322
## 4387 F323
## 4388 F324
## 4389 F325
## 4390 F3281
## 4391 F3289
## 4392 F329
## 4393 F330
## 4394 F331
## 4395 F332
## 4396 F333
## 4397 F3340
## 4398 F3341
## 4399 F3342
## 4400 F338
## 4401 F339
## 4402 F340
## 4403 F341
## 4404 F3481
## 4405 F3489
## 4406 F349
## 4407 F39
## 4408 F4000
## 4409 F4001
## 4410 F4002
## 4411 F4010
## 4412 F4011
## 4413 F40210
## 4414 F40218
## 4415 F40220
## 4416 F40228
## 4417 F40230
## 4418 F40231
## 4419 F40232
## 4420 F40233
## 4421 F40240
## 4422 F40241
## 4423 F40242
## 4424 F40243
## 4425 F40248
## 4426 F40290
## 4427 F40291
## 4428 F40298
## 4429 F408
## 4430 F409
## 4431 F410
## 4432 F411
## 4433 F413
## 4434 F418
## 4435 F419
## 4436 F422
## 4437 F423
## 4438 F424
## 4439 F428
## 4440 F429
## 4441 F430
## 4442 F4310
## 4443 F4311
## 4444 F4312
## 4445 F4320
## 4446 F4321
## 4447 F4322
## 4448 F4323
## 4449 F4324
## 4450 F4325
## 4451 F4329
## 4452 F438
## 4453 F439
## 4454 F440
## 4455 F441
## 4456 F442
## 4457 F444
## 4458 F445
## 4459 F446
## 4460 F447
## 4461 F4481
## 4462 F4489
## 4463 F449
## 4464 F450
## 4465 F451
## 4466 F4520
## 4467 F4521
## 4468 F4522
## 4469 F4529
## 4470 F4541
## 4471 F4542
## 4472 F458
## 4473 F459
## 4474 F481
## 4475 F482
## 4476 F488
## 4477 F489
## 4478 F5000
## 4479 F5001
## 4480 F5002
## 4481 F502
## 4482 F5081
## 4483 F5082
## 4484 F5089
## 4485 F509
## 4486 F5101
## 4487 F5102
## 4488 F5103
## 4489 F5104
## 4490 F5105
## 4491 F5109
## 4492 F5111
## 4493 F5112
## 4494 F5113
## 4495 F5119
## 4496 F513
## 4497 F514
## 4498 F515
## 4499 F518
## 4500 F519
## 4501 F520
## 4502 F521
## 4503 F5221
## 4504 F5222
## 4505 F5231
## 4506 F5232
## 4507 F524
## 4508 F525
## 4509 F526
## 4510 F528
## 4511 F529
## 4512 F530
## 4513 F531
## 4514 F54
## 4515 F550
## 4516 F551
## 4517 F552
## 4518 F553
## 4519 F554
## 4520 F558
## 4521 F59
## 4522 F600
## 4523 F601
## 4524 F602
## 4525 F603
## 4526 F604
## 4527 F605
## 4528 F606
## 4529 F607
## 4530 F6081
## 4531 F6089
## 4532 F609
## 4533 F630
## 4534 F631
## 4535 F632
## 4536 F633
## 4537 F6381
## 4538 F6389
## 4539 F639
## 4540 F640
## 4541 F641
## 4542 F642
## 4543 F648
## 4544 F649
## 4545 F650
## 4546 F651
## 4547 F652
## 4548 F653
## 4549 F654
## 4550 F6550
## 4551 F6551
## 4552 F6552
## 4553 F6581
## 4554 F6589
## 4555 F659
## 4556 F66
## 4557 F6810
## 4558 F6811
## 4559 F6812
## 4560 F6813
## 4561 F68A
## 4562 F688
## 4563 F69
## 4564 F70
## 4565 F71
## 4566 F72
## 4567 F73
## 4568 F78
## 4569 F79
## 4570 F800
## 4571 F801
## 4572 F802
## 4573 F804
## 4574 F8081
## 4575 F8082
## 4576 F8089
## 4577 F809
## 4578 F810
## 4579 F812
## 4580 F8181
## 4581 F8189
## 4582 F819
## 4583 F82
## 4584 F840
## 4585 F842
## 4586 F843
## 4587 F845
## 4588 F848
## 4589 F849
## 4590 F88
## 4591 F89
## 4592 F900
## 4593 F901
## 4594 F902
## 4595 F908
## 4596 F909
## 4597 F910
## 4598 F911
## 4599 F912
## 4600 F913
## 4601 F918
## 4602 F919
## 4603 F930
## 4604 F938
## 4605 F939
## 4606 F940
## 4607 F941
## 4608 F942
## 4609 F948
## 4610 F949
## 4611 F950
## 4612 F951
## 4613 F952
## 4614 F958
## 4615 F959
## 4616 F980
## 4617 F981
## 4618 F9821
## 4619 F9829
## 4620 F983
## 4621 F984
## 4622 F985
## 4623 F988
## 4624 F989
## 4625 F99
## 4626 G000
## 4627 G001
## 4628 G002
## 4629 G003
## 4630 G008
## 4631 G009
## 4632 G01
## 4633 G02
## 4634 G030
## 4635 G031
## 4636 G032
## 4637 G038
## 4638 G039
## 4639 G0400
## 4640 G0401
## 4641 G0402
## 4642 G041
## 4643 G042
## 4644 G0430
## 4645 G0431
## 4646 G0432
## 4647 G0439
## 4648 G0481
## 4649 G0489
## 4650 G0490
## 4651 G0491
## 4652 G053
## 4653 G054
## 4654 G060
## 4655 G061
## 4656 G062
## 4657 G07
## 4658 G08
## 4659 G09
## 4660 G10
## 4661 G110
## 4662 G111
## 4663 G112
## 4664 G113
## 4665 G114
## 4666 G118
## 4667 G119
## 4668 G120
## 4669 G121
## 4670 G1220
## 4671 G1221
## 4672 G1222
## 4673 G1223
## 4674 G1224
## 4675 G1225
## 4676 G1229
## 4677 G128
## 4678 G129
## 4679 G130
## 4680 G131
## 4681 G132
## 4682 G138
## 4683 G14
## 4684 G20
## 4685 G210
## 4686 G2111
## 4687 G2119
## 4688 G212
## 4689 G213
## 4690 G214
## 4691 G218
## 4692 G219
## 4693 G230
## 4694 G231
## 4695 G232
## 4696 G238
## 4697 G239
## 4698 G2401
## 4699 G2402
## 4700 G2409
## 4701 G241
## 4702 G242
## 4703 G243
## 4704 G244
## 4705 G245
## 4706 G248
## 4707 G249
## 4708 G250
## 4709 G251
## 4710 G252
## 4711 G253
## 4712 G254
## 4713 G255
## 4714 G2561
## 4715 G2569
## 4716 G2570
## 4717 G2571
## 4718 G2579
## 4719 G2581
## 4720 G2582
## 4721 G2583
## 4722 G2589
## 4723 G259
## 4724 G26
## 4725 G300
## 4726 G301
## 4727 G308
## 4728 G309
## 4729 G3101
## 4730 G3109
## 4731 G311
## 4732 G312
## 4733 G3181
## 4734 G3182
## 4735 G3183
## 4736 G3184
## 4737 G3185
## 4738 G3189
## 4739 G319
## 4740 G320
## 4741 G3281
## 4742 G3289
## 4743 G35
## 4744 G360
## 4745 G361
## 4746 G368
## 4747 G369
## 4748 G370
## 4749 G371
## 4750 G372
## 4751 G373
## 4752 G374
## 4753 G375
## 4754 G378
## 4755 G379
## 4756 G40001
## 4757 G40009
## 4758 G40011
## 4759 G40019
## 4760 G40101
## 4761 G40109
## 4762 G40111
## 4763 G40119
## 4764 G40201
## 4765 G40209
## 4766 G40211
## 4767 G40219
## 4768 G40301
## 4769 G40309
## 4770 G40311
## 4771 G40319
## 4772 G40A01
## 4773 G40A09
## 4774 G40A11
## 4775 G40A19
## 4776 G40B01
## 4777 G40B09
## 4778 G40B11
## 4779 G40B19
## 4780 G40401
## 4781 G40409
## 4782 G40411
## 4783 G40419
## 4784 G40501
## 4785 G40509
## 4786 G40801
## 4787 G40802
## 4788 G40803
## 4789 G40804
## 4790 G40811
## 4791 G40812
## 4792 G40813
## 4793 G40814
## 4794 G40821
## 4795 G40822
## 4796 G40823
## 4797 G40824
## 4798 G4089
## 4799 G40901
## 4800 G40909
## 4801 G40911
## 4802 G40919
## 4803 G43001
## 4804 G43009
## 4805 G43011
## 4806 G43019
## 4807 G43101
## 4808 G43109
## 4809 G43111
## 4810 G43119
## 4811 G43401
## 4812 G43409
## 4813 G43411
## 4814 G43419
## 4815 G43501
## 4816 G43509
## 4817 G43511
## 4818 G43519
## 4819 G43601
## 4820 G43609
## 4821 G43611
## 4822 G43619
## 4823 G43701
## 4824 G43709
## 4825 G43711
## 4826 G43719
## 4827 G43A0
## 4828 G43A1
## 4829 G43B0
## 4830 G43B1
## 4831 G43C0
## 4832 G43C1
## 4833 G43D0
## 4834 G43D1
## 4835 G43801
## 4836 G43809
## 4837 G43811
## 4838 G43819
## 4839 G43821
## 4840 G43829
## 4841 G43831
## 4842 G43839
## 4843 G43901
## 4844 G43909
## 4845 G43911
## 4846 G43919
## 4847 G44001
## 4848 G44009
## 4849 G44011
## 4850 G44019
## 4851 G44021
## 4852 G44029
## 4853 G44031
## 4854 G44039
## 4855 G44041
## 4856 G44049
## 4857 G44051
## 4858 G44059
## 4859 G44091
## 4860 G44099
## 4861 G441
## 4862 G44201
## 4863 G44209
## 4864 G44211
## 4865 G44219
## 4866 G44221
## 4867 G44229
## 4868 G44301
## 4869 G44309
## 4870 G44311
## 4871 G44319
## 4872 G44321
## 4873 G44329
## 4874 G4440
## 4875 G4441
## 4876 G4451
## 4877 G4452
## 4878 G4453
## 4879 G4459
## 4880 G4481
## 4881 G4482
## 4882 G4483
## 4883 G4484
## 4884 G4485
## 4885 G4489
## 4886 G450
## 4887 G451
## 4888 G452
## 4889 G453
## 4890 G454
## 4891 G458
## 4892 G459
## 4893 G460
## 4894 G461
## 4895 G462
## 4896 G463
## 4897 G464
## 4898 G465
## 4899 G466
## 4900 G467
## 4901 G468
## 4902 G4700
## 4903 G4701
## 4904 G4709
## 4905 G4710
## 4906 G4711
## 4907 G4712
## 4908 G4713
## 4909 G4714
## 4910 G4719
## 4911 G4720
## 4912 G4721
## 4913 G4722
## 4914 G4723
## 4915 G4724
## 4916 G4725
## 4917 G4726
## 4918 G4727
## 4919 G4729
## 4920 G4730
## 4921 G4731
## 4922 G4732
## 4923 G4733
## 4924 G4734
## 4925 G4735
## 4926 G4736
## 4927 G4737
## 4928 G4739
## 4929 G47411
## 4930 G47419
## 4931 G47421
## 4932 G47429
## 4933 G4750
## 4934 G4751
## 4935 G4752
## 4936 G4753
## 4937 G4754
## 4938 G4759
## 4939 G4761
## 4940 G4762
## 4941 G4763
## 4942 G4769
## 4943 G478
## 4944 G479
## 4945 G500
## 4946 G501
## 4947 G508
## 4948 G509
## 4949 G510
## 4950 G511
## 4951 G512
## 4952 G5131
## 4953 G5132
## 4954 G5133
## 4955 G5139
## 4956 G514
## 4957 G518
## 4958 G519
## 4959 G520
## 4960 G521
## 4961 G522
## 4962 G523
## 4963 G527
## 4964 G528
## 4965 G529
## 4966 G53
## 4967 G540
## 4968 G541
## 4969 G542
## 4970 G543
## 4971 G544
## 4972 G545
## 4973 G546
## 4974 G547
## 4975 G548
## 4976 G549
## 4977 G55
## 4978 G5600
## 4979 G5601
## 4980 G5602
## 4981 G5603
## 4982 G5610
## 4983 G5611
## 4984 G5612
## 4985 G5613
## 4986 G5620
## 4987 G5621
## 4988 G5622
## 4989 G5623
## 4990 G5630
## 4991 G5631
## 4992 G5632
## 4993 G5633
## 4994 G5640
## 4995 G5641
## 4996 G5642
## 4997 G5643
## 4998 G5680
## 4999 G5681
## 5000 G5682
## 5001 G5683
## 5002 G5690
## 5003 G5691
## 5004 G5692
## 5005 G5693
## 5006 G5700
## 5007 G5701
## 5008 G5702
## 5009 G5703
## 5010 G5710
## 5011 G5711
## 5012 G5712
## 5013 G5713
## 5014 G5720
## 5015 G5721
## 5016 G5722
## 5017 G5723
## 5018 G5730
## 5019 G5731
## 5020 G5732
## 5021 G5733
## 5022 G5740
## 5023 G5741
## 5024 G5742
## 5025 G5743
## 5026 G5750
## 5027 G5751
## 5028 G5752
## 5029 G5753
## 5030 G5760
## 5031 G5761
## 5032 G5762
## 5033 G5763
## 5034 G5770
## 5035 G5771
## 5036 G5772
## 5037 G5773
## 5038 G5780
## 5039 G5781
## 5040 G5782
## 5041 G5783
## 5042 G5790
## 5043 G5791
## 5044 G5792
## 5045 G5793
## 5046 G580
## 5047 G587
## 5048 G588
## 5049 G589
## 5050 G59
## 5051 G600
## 5052 G601
## 5053 G602
## 5054 G603
## 5055 G608
## 5056 G609
## 5057 G610
## 5058 G611
## 5059 G6181
## 5060 G6182
## 5061 G6189
## 5062 G619
## 5063 G620
## 5064 G621
## 5065 G622
## 5066 G6281
## 5067 G6282
## 5068 G6289
## 5069 G629
## 5070 G63
## 5071 G64
## 5072 G650
## 5073 G651
## 5074 G652
## 5075 G7000
## 5076 G7001
## 5077 G701
## 5078 G702
## 5079 G7080
## 5080 G7081
## 5081 G7089
## 5082 G709
## 5083 G7100
## 5084 G7101
## 5085 G7102
## 5086 G7109
## 5087 G7111
## 5088 G7112
## 5089 G7113
## 5090 G7114
## 5091 G7119
## 5092 G712
## 5093 G713
## 5094 G718
## 5095 G719
## 5096 G720
## 5097 G721
## 5098 G722
## 5099 G723
## 5100 G7241
## 5101 G7249
## 5102 G7281
## 5103 G7289
## 5104 G729
## 5105 G731
## 5106 G733
## 5107 G737
## 5108 G800
## 5109 G801
## 5110 G802
## 5111 G803
## 5112 G804
## 5113 G808
## 5114 G809
## 5115 G8100
## 5116 G8101
## 5117 G8102
## 5118 G8103
## 5119 G8104
## 5120 G8110
## 5121 G8111
## 5122 G8112
## 5123 G8113
## 5124 G8114
## 5125 G8190
## 5126 G8191
## 5127 G8192
## 5128 G8193
## 5129 G8194
## 5130 G8220
## 5131 G8221
## 5132 G8222
## 5133 G8250
## 5134 G8251
## 5135 G8252
## 5136 G8253
## 5137 G8254
## 5138 G830
## 5139 G8310
## 5140 G8311
## 5141 G8312
## 5142 G8313
## 5143 G8314
## 5144 G8320
## 5145 G8321
## 5146 G8322
## 5147 G8323
## 5148 G8324
## 5149 G8330
## 5150 G8331
## 5151 G8332
## 5152 G8333
## 5153 G8334
## 5154 G834
## 5155 G835
## 5156 G8381
## 5157 G8382
## 5158 G8383
## 5159 G8384
## 5160 G8389
## 5161 G839
## 5162 G890
## 5163 G8911
## 5164 G8912
## 5165 G8918
## 5166 G8921
## 5167 G8922
## 5168 G8928
## 5169 G8929
## 5170 G893
## 5171 G894
## 5172 G9001
## 5173 G9009
## 5174 G901
## 5175 G902
## 5176 G903
## 5177 G904
## 5178 G9050
## 5179 G90511
## 5180 G90512
## 5181 G90513
## 5182 G90519
## 5183 G90521
## 5184 G90522
## 5185 G90523
## 5186 G90529
## 5187 G9059
## 5188 G908
## 5189 G909
## 5190 G910
## 5191 G911
## 5192 G912
## 5193 G913
## 5194 G914
## 5195 G918
## 5196 G919
## 5197 G92
## 5198 G930
## 5199 G931
## 5200 G932
## 5201 G933
## 5202 G9340
## 5203 G9341
## 5204 G9349
## 5205 G935
## 5206 G936
## 5207 G937
## 5208 G9381
## 5209 G9382
## 5210 G9389
## 5211 G939
## 5212 G94
## 5213 G950
## 5214 G9511
## 5215 G9519
## 5216 G9520
## 5217 G9529
## 5218 G9581
## 5219 G9589
## 5220 G959
## 5221 G960
## 5222 G9611
## 5223 G9612
## 5224 G9619
## 5225 G968
## 5226 G969
## 5227 G970
## 5228 G971
## 5229 G972
## 5230 G9731
## 5231 G9732
## 5232 G9741
## 5233 G9748
## 5234 G9749
## 5235 G9751
## 5236 G9752
## 5237 G9761
## 5238 G9762
## 5239 G9763
## 5240 G9764
## 5241 G9781
## 5242 G9782
## 5243 G980
## 5244 G988
## 5245 G990
## 5246 G992
## 5247 G998
## 5248 H00011
## 5249 H00012
## 5250 H00013
## 5251 H00014
## 5252 H00015
## 5253 H00016
## 5254 H00019
## 5255 H00021
## 5256 H00022
## 5257 H00023
## 5258 H00024
## 5259 H00025
## 5260 H00026
## 5261 H00029
## 5262 H00031
## 5263 H00032
## 5264 H00033
## 5265 H00034
## 5266 H00035
## 5267 H00036
## 5268 H00039
## 5269 H0011
## 5270 H0012
## 5271 H0013
## 5272 H0014
## 5273 H0015
## 5274 H0016
## 5275 H0019
## 5276 H01001
## 5277 H01002
## 5278 H01003
## 5279 H01004
## 5280 H01005
## 5281 H01006
## 5282 H01009
## 5283 H0100A
## 5284 H0100B
## 5285 H01011
## 5286 H01012
## 5287 H01013
## 5288 H01014
## 5289 H01015
## 5290 H01016
## 5291 H01019
## 5292 H0101A
## 5293 H0101B
## 5294 H01021
## 5295 H01022
## 5296 H01023
## 5297 H01024
## 5298 H01025
## 5299 H01026
## 5300 H01029
## 5301 H0102A
## 5302 H0102B
## 5303 H01111
## 5304 H01112
## 5305 H01113
## 5306 H01114
## 5307 H01115
## 5308 H01116
## 5309 H01119
## 5310 H01121
## 5311 H01122
## 5312 H01123
## 5313 H01124
## 5314 H01125
## 5315 H01126
## 5316 H01129
## 5317 H01131
## 5318 H01132
## 5319 H01133
## 5320 H01134
## 5321 H01135
## 5322 H01136
## 5323 H01139
## 5324 H01141
## 5325 H01142
## 5326 H01143
## 5327 H01144
## 5328 H01145
## 5329 H01146
## 5330 H01149
## 5331 H018
## 5332 H019
## 5333 H02001
## 5334 H02002
## 5335 H02003
## 5336 H02004
## 5337 H02005
## 5338 H02006
## 5339 H02009
## 5340 H02011
## 5341 H02012
## 5342 H02013
## 5343 H02014
## 5344 H02015
## 5345 H02016
## 5346 H02019
## 5347 H02021
## 5348 H02022
## 5349 H02023
## 5350 H02024
## 5351 H02025
## 5352 H02026
## 5353 H02029
## 5354 H02031
## 5355 H02032
## 5356 H02033
## 5357 H02034
## 5358 H02035
## 5359 H02036
## 5360 H02039
## 5361 H02041
## 5362 H02042
## 5363 H02043
## 5364 H02044
## 5365 H02045
## 5366 H02046
## 5367 H02049
## 5368 H02051
## 5369 H02052
## 5370 H02053
## 5371 H02054
## 5372 H02055
## 5373 H02056
## 5374 H02059
## 5375 H02101
## 5376 H02102
## 5377 H02103
## 5378 H02104
## 5379 H02105
## 5380 H02106
## 5381 H02109
## 5382 H02111
## 5383 H02112
## 5384 H02113
## 5385 H02114
## 5386 H02115
## 5387 H02116
## 5388 H02119
## 5389 H02121
## 5390 H02122
## 5391 H02123
## 5392 H02124
## 5393 H02125
## 5394 H02126
## 5395 H02129
## 5396 H02131
## 5397 H02132
## 5398 H02133
## 5399 H02134
## 5400 H02135
## 5401 H02136
## 5402 H02139
## 5403 H02141
## 5404 H02142
## 5405 H02143
## 5406 H02144
## 5407 H02145
## 5408 H02146
## 5409 H02149
## 5410 H02151
## 5411 H02152
## 5412 H02153
## 5413 H02154
## 5414 H02155
## 5415 H02156
## 5416 H02159
## 5417 H02201
## 5418 H02202
## 5419 H02203
## 5420 H02204
## 5421 H02205
## 5422 H02206
## 5423 H02209
## 5424 H0220A
## 5425 H0220B
## 5426 H0220C
## 5427 H02211
## 5428 H02212
## 5429 H02213
## 5430 H02214
## 5431 H02215
## 5432 H02216
## 5433 H02219
## 5434 H0221A
## 5435 H0221B
## 5436 H0221C
## 5437 H02221
## 5438 H02222
## 5439 H02223
## 5440 H02224
## 5441 H02225
## 5442 H02226
## 5443 H02229
## 5444 H0222A
## 5445 H0222B
## 5446 H0222C
## 5447 H02231
## 5448 H02232
## 5449 H02233
## 5450 H02234
## 5451 H02235
## 5452 H02236
## 5453 H02239
## 5454 H0223A
## 5455 H0223B
## 5456 H0223C
## 5457 H0230
## 5458 H0231
## 5459 H0232
## 5460 H0233
## 5461 H0234
## 5462 H0235
## 5463 H0236
## 5464 H02401
## 5465 H02402
## 5466 H02403
## 5467 H02409
## 5468 H02411
## 5469 H02412
## 5470 H02413
## 5471 H02419
## 5472 H02421
## 5473 H02422
## 5474 H02423
## 5475 H02429
## 5476 H02431
## 5477 H02432
## 5478 H02433
## 5479 H02439
## 5480 H02511
## 5481 H02512
## 5482 H02513
## 5483 H02514
## 5484 H02515
## 5485 H02516
## 5486 H02519
## 5487 H02521
## 5488 H02522
## 5489 H02523
## 5490 H02524
## 5491 H02525
## 5492 H02526
## 5493 H02529
## 5494 H02531
## 5495 H02532
## 5496 H02533
## 5497 H02534
## 5498 H02535
## 5499 H02536
## 5500 H02539
## 5501 H0259
## 5502 H0260
## 5503 H0261
## 5504 H0262
## 5505 H0263
## 5506 H0264
## 5507 H0265
## 5508 H0266
## 5509 H0270
## 5510 H02711
## 5511 H02712
## 5512 H02713
## 5513 H02714
## 5514 H02715
## 5515 H02716
## 5516 H02719
## 5517 H02721
## 5518 H02722
## 5519 H02723
## 5520 H02724
## 5521 H02725
## 5522 H02726
## 5523 H02729
## 5524 H02731
## 5525 H02732
## 5526 H02733
## 5527 H02734
## 5528 H02735
## 5529 H02736
## 5530 H02739
## 5531 H0279
## 5532 H02811
## 5533 H02812
## 5534 H02813
## 5535 H02814
## 5536 H02815
## 5537 H02816
## 5538 H02819
## 5539 H02821
## 5540 H02822
## 5541 H02823
## 5542 H02824
## 5543 H02825
## 5544 H02826
## 5545 H02829
## 5546 H02831
## 5547 H02832
## 5548 H02833
## 5549 H02834
## 5550 H02835
## 5551 H02836
## 5552 H02839
## 5553 H02841
## 5554 H02842
## 5555 H02843
## 5556 H02844
## 5557 H02845
## 5558 H02846
## 5559 H02849
## 5560 H02851
## 5561 H02852
## 5562 H02853
## 5563 H02854
## 5564 H02855
## 5565 H02856
## 5566 H02859
## 5567 H02861
## 5568 H02862
## 5569 H02863
## 5570 H02864
## 5571 H02865
## 5572 H02866
## 5573 H02869
## 5574 H02871
## 5575 H02872
## 5576 H02873
## 5577 H02874
## 5578 H02875
## 5579 H02876
## 5580 H02879
## 5581 H02881
## 5582 H02882
## 5583 H02883
## 5584 H02884
## 5585 H02885
## 5586 H02886
## 5587 H02889
## 5588 H0288A
## 5589 H0288B
## 5590 H0289
## 5591 H029
## 5592 H04001
## 5593 H04002
## 5594 H04003
## 5595 H04009
## 5596 H04011
## 5597 H04012
## 5598 H04013
## 5599 H04019
## 5600 H04021
## 5601 H04022
## 5602 H04023
## 5603 H04029
## 5604 H04031
## 5605 H04032
## 5606 H04033
## 5607 H04039
## 5608 H04111
## 5609 H04112
## 5610 H04113
## 5611 H04119
## 5612 H04121
## 5613 H04122
## 5614 H04123
## 5615 H04129
## 5616 H04131
## 5617 H04132
## 5618 H04133
## 5619 H04139
## 5620 H04141
## 5621 H04142
## 5622 H04143
## 5623 H04149
## 5624 H04151
## 5625 H04152
## 5626 H04153
## 5627 H04159
## 5628 H04161
## 5629 H04162
## 5630 H04163
## 5631 H04169
## 5632 H0419
## 5633 H04201
## 5634 H04202
## 5635 H04203
## 5636 H04209
## 5637 H04211
## 5638 H04212
## 5639 H04213
## 5640 H04219
## 5641 H04221
## 5642 H04222
## 5643 H04223
## 5644 H04229
## 5645 H04301
## 5646 H04302
## 5647 H04303
## 5648 H04309
## 5649 H04311
## 5650 H04312
## 5651 H04313
## 5652 H04319
## 5653 H04321
## 5654 H04322
## 5655 H04323
## 5656 H04329
## 5657 H04331
## 5658 H04332
## 5659 H04333
## 5660 H04339
## 5661 H04411
## 5662 H04412
## 5663 H04413
## 5664 H04419
## 5665 H04421
## 5666 H04422
## 5667 H04423
## 5668 H04429
## 5669 H04431
## 5670 H04432
## 5671 H04433
## 5672 H04439
## 5673 H04511
## 5674 H04512
## 5675 H04513
## 5676 H04519
## 5677 H04521
## 5678 H04522
## 5679 H04523
## 5680 H04529
## 5681 H04531
## 5682 H04532
## 5683 H04533
## 5684 H04539
## 5685 H04541
## 5686 H04542
## 5687 H04543
## 5688 H04549
## 5689 H04551
## 5690 H04552
## 5691 H04553
## 5692 H04559
## 5693 H04561
## 5694 H04562
## 5695 H04563
## 5696 H04569
## 5697 H04571
## 5698 H04572
## 5699 H04573
## 5700 H04579
## 5701 H04611
## 5702 H04612
## 5703 H04613
## 5704 H04619
## 5705 H0469
## 5706 H04811
## 5707 H04812
## 5708 H04813
## 5709 H04819
## 5710 H0489
## 5711 H049
## 5712 H0500
## 5713 H05011
## 5714 H05012
## 5715 H05013
## 5716 H05019
## 5717 H05021
## 5718 H05022
## 5719 H05023
## 5720 H05029
## 5721 H05031
## 5722 H05032
## 5723 H05033
## 5724 H05039
## 5725 H05041
## 5726 H05042
## 5727 H05043
## 5728 H05049
## 5729 H0510
## 5730 H05111
## 5731 H05112
## 5732 H05113
## 5733 H05119
## 5734 H05121
## 5735 H05122
## 5736 H05123
## 5737 H05129
## 5738 H0520
## 5739 H05211
## 5740 H05212
## 5741 H05213
## 5742 H05219
## 5743 H05221
## 5744 H05222
## 5745 H05223
## 5746 H05229
## 5747 H05231
## 5748 H05232
## 5749 H05233
## 5750 H05239
## 5751 H05241
## 5752 H05242
## 5753 H05243
## 5754 H05249
## 5755 H05251
## 5756 H05252
## 5757 H05253
## 5758 H05259
## 5759 H05261
## 5760 H05262
## 5761 H05263
## 5762 H05269
## 5763 H0530
## 5764 H05311
## 5765 H05312
## 5766 H05313
## 5767 H05319
## 5768 H05321
## 5769 H05322
## 5770 H05323
## 5771 H05329
## 5772 H05331
## 5773 H05332
## 5774 H05333
## 5775 H05339
## 5776 H05341
## 5777 H05342
## 5778 H05343
## 5779 H05349
## 5780 H05351
## 5781 H05352
## 5782 H05353
## 5783 H05359
## 5784 H05401
## 5785 H05402
## 5786 H05403
## 5787 H05409
## 5788 H05411
## 5789 H05412
## 5790 H05413
## 5791 H05419
## 5792 H05421
## 5793 H05422
## 5794 H05423
## 5795 H05429
## 5796 H0550
## 5797 H0551
## 5798 H0552
## 5799 H0553
## 5800 H05811
## 5801 H05812
## 5802 H05813
## 5803 H05819
## 5804 H05821
## 5805 H05822
## 5806 H05823
## 5807 H05829
## 5808 H0589
## 5809 H059
## 5810 H10011
## 5811 H10012
## 5812 H10013
## 5813 H10019
## 5814 H10021
## 5815 H10022
## 5816 H10023
## 5817 H10029
## 5818 H1010
## 5819 H1011
## 5820 H1012
## 5821 H1013
## 5822 H10211
## 5823 H10212
## 5824 H10213
## 5825 H10219
## 5826 H10221
## 5827 H10222
## 5828 H10223
## 5829 H10229
## 5830 H10231
## 5831 H10232
## 5832 H10233
## 5833 H10239
## 5834 H1030
## 5835 H1031
## 5836 H1032
## 5837 H1033
## 5838 H10401
## 5839 H10402
## 5840 H10403
## 5841 H10409
## 5842 H10411
## 5843 H10412
## 5844 H10413
## 5845 H10419
## 5846 H10421
## 5847 H10422
## 5848 H10423
## 5849 H10429
## 5850 H10431
## 5851 H10432
## 5852 H10433
## 5853 H10439
## 5854 H1044
## 5855 H1045
## 5856 H10501
## 5857 H10502
## 5858 H10503
## 5859 H10509
## 5860 H10511
## 5861 H10512
## 5862 H10513
## 5863 H10519
## 5864 H10521
## 5865 H10522
## 5866 H10523
## 5867 H10529
## 5868 H10531
## 5869 H10532
## 5870 H10533
## 5871 H10539
## 5872 H10811
## 5873 H10812
## 5874 H10813
## 5875 H10819
## 5876 H10821
## 5877 H10822
## 5878 H10823
## 5879 H10829
## 5880 H1089
## 5881 H109
## 5882 H11001
## 5883 H11002
## 5884 H11003
## 5885 H11009
## 5886 H11011
## 5887 H11012
## 5888 H11013
## 5889 H11019
## 5890 H11021
## 5891 H11022
## 5892 H11023
## 5893 H11029
## 5894 H11031
## 5895 H11032
## 5896 H11033
## 5897 H11039
## 5898 H11041
## 5899 H11042
## 5900 H11043
## 5901 H11049
## 5902 H11051
## 5903 H11052
## 5904 H11053
## 5905 H11059
## 5906 H11061
## 5907 H11062
## 5908 H11063
## 5909 H11069
## 5910 H1110
## 5911 H11111
## 5912 H11112
## 5913 H11113
## 5914 H11119
## 5915 H11121
## 5916 H11122
## 5917 H11123
## 5918 H11129
## 5919 H11131
## 5920 H11132
## 5921 H11133
## 5922 H11139
## 5923 H11141
## 5924 H11142
## 5925 H11143
## 5926 H11149
## 5927 H11151
## 5928 H11152
## 5929 H11153
## 5930 H11159
## 5931 H11211
## 5932 H11212
## 5933 H11213
## 5934 H11219
## 5935 H11221
## 5936 H11222
## 5937 H11223
## 5938 H11229
## 5939 H11231
## 5940 H11232
## 5941 H11233
## 5942 H11239
## 5943 H11241
## 5944 H11242
## 5945 H11243
## 5946 H11249
## 5947 H1130
## 5948 H1131
## 5949 H1132
## 5950 H1133
## 5951 H11411
## 5952 H11412
## 5953 H11413
## 5954 H11419
## 5955 H11421
## 5956 H11422
## 5957 H11423
## 5958 H11429
## 5959 H11431
## 5960 H11432
## 5961 H11433
## 5962 H11439
## 5963 H11441
## 5964 H11442
## 5965 H11443
## 5966 H11449
## 5967 H11811
## 5968 H11812
## 5969 H11813
## 5970 H11819
## 5971 H11821
## 5972 H11822
## 5973 H11823
## 5974 H11829
## 5975 H1189
## 5976 H119
## 5977 H15001
## 5978 H15002
## 5979 H15003
## 5980 H15009
## 5981 H15011
## 5982 H15012
## 5983 H15013
## 5984 H15019
## 5985 H15021
## 5986 H15022
## 5987 H15023
## 5988 H15029
## 5989 H15031
## 5990 H15032
## 5991 H15033
## 5992 H15039
## 5993 H15041
## 5994 H15042
## 5995 H15043
## 5996 H15049
## 5997 H15051
## 5998 H15052
## 5999 H15053
## 6000 H15059
## 6001 H15091
## 6002 H15092
## 6003 H15093
## 6004 H15099
## 6005 H15101
## 6006 H15102
## 6007 H15103
## 6008 H15109
## 6009 H15111
## 6010 H15112
## 6011 H15113
## 6012 H15119
## 6013 H15121
## 6014 H15122
## 6015 H15123
## 6016 H15129
## 6017 H15811
## 6018 H15812
## 6019 H15813
## 6020 H15819
## 6021 H15821
## 6022 H15822
## 6023 H15823
## 6024 H15829
## 6025 H15831
## 6026 H15832
## 6027 H15833
## 6028 H15839
## 6029 H15841
## 6030 H15842
## 6031 H15843
## 6032 H15849
## 6033 H15851
## 6034 H15852
## 6035 H15853
## 6036 H15859
## 6037 H1589
## 6038 H159
## 6039 H16001
## 6040 H16002
## 6041 H16003
## 6042 H16009
## 6043 H16011
## 6044 H16012
## 6045 H16013
## 6046 H16019
## 6047 H16021
## 6048 H16022
## 6049 H16023
## 6050 H16029
## 6051 H16031
## 6052 H16032
## 6053 H16033
## 6054 H16039
## 6055 H16041
## 6056 H16042
## 6057 H16043
## 6058 H16049
## 6059 H16051
## 6060 H16052
## 6061 H16053
## 6062 H16059
## 6063 H16061
## 6064 H16062
## 6065 H16063
## 6066 H16069
## 6067 H16071
## 6068 H16072
## 6069 H16073
## 6070 H16079
## 6071 H16101
## 6072 H16102
## 6073 H16103
## 6074 H16109
## 6075 H16111
## 6076 H16112
## 6077 H16113
## 6078 H16119
## 6079 H16121
## 6080 H16122
## 6081 H16123
## 6082 H16129
## 6083 H16131
## 6084 H16132
## 6085 H16133
## 6086 H16139
## 6087 H16141
## 6088 H16142
## 6089 H16143
## 6090 H16149
## 6091 H16201
## 6092 H16202
## 6093 H16203
## 6094 H16209
## 6095 H16211
## 6096 H16212
## 6097 H16213
## 6098 H16219
## 6099 H16221
## 6100 H16222
## 6101 H16223
## 6102 H16229
## 6103 H16231
## 6104 H16232
## 6105 H16233
## 6106 H16239
## 6107 H16241
## 6108 H16242
## 6109 H16243
## 6110 H16249
## 6111 H16251
## 6112 H16252
## 6113 H16253
## 6114 H16259
## 6115 H16261
## 6116 H16262
## 6117 H16263
## 6118 H16269
## 6119 H16291
## 6120 H16292
## 6121 H16293
## 6122 H16299
## 6123 H16301
## 6124 H16302
## 6125 H16303
## 6126 H16309
## 6127 H16311
## 6128 H16312
## 6129 H16313
## 6130 H16319
## 6131 H16321
## 6132 H16322
## 6133 H16323
## 6134 H16329
## 6135 H16331
## 6136 H16332
## 6137 H16333
## 6138 H16339
## 6139 H16391
## 6140 H16392
## 6141 H16393
## 6142 H16399
## 6143 H16401
## 6144 H16402
## 6145 H16403
## 6146 H16409
## 6147 H16411
## 6148 H16412
## 6149 H16413
## 6150 H16419
## 6151 H16421
## 6152 H16422
## 6153 H16423
## 6154 H16429
## 6155 H16431
## 6156 H16432
## 6157 H16433
## 6158 H16439
## 6159 H16441
## 6160 H16442
## 6161 H16443
## 6162 H16449
## 6163 H168
## 6164 H169
## 6165 H1700
## 6166 H1701
## 6167 H1702
## 6168 H1703
## 6169 H1710
## 6170 H1711
## 6171 H1712
## 6172 H1713
## 6173 H17811
## 6174 H17812
## 6175 H17813
## 6176 H17819
## 6177 H17821
## 6178 H17822
## 6179 H17823
## 6180 H17829
## 6181 H1789
## 6182 H179
## 6183 H18001
## 6184 H18002
## 6185 H18003
## 6186 H18009
## 6187 H18011
## 6188 H18012
## 6189 H18013
## 6190 H18019
## 6191 H18021
## 6192 H18022
## 6193 H18023
## 6194 H18029
## 6195 H18031
## 6196 H18032
## 6197 H18033
## 6198 H18039
## 6199 H18041
## 6200 H18042
## 6201 H18043
## 6202 H18049
## 6203 H18051
## 6204 H18052
## 6205 H18053
## 6206 H18059
## 6207 H18061
## 6208 H18062
## 6209 H18063
## 6210 H18069
## 6211 H1810
## 6212 H1811
## 6213 H1812
## 6214 H1813
## 6215 H1820
## 6216 H18211
## 6217 H18212
## 6218 H18213
## 6219 H18219
## 6220 H18221
## 6221 H18222
## 6222 H18223
## 6223 H18229
## 6224 H18231
## 6225 H18232
## 6226 H18233
## 6227 H18239
## 6228 H1830
## 6229 H18311
## 6230 H18312
## 6231 H18313
## 6232 H18319
## 6233 H18321
## 6234 H18322
## 6235 H18323
## 6236 H18329
## 6237 H18331
## 6238 H18332
## 6239 H18333
## 6240 H18339
## 6241 H1840
## 6242 H18411
## 6243 H18412
## 6244 H18413
## 6245 H18419
## 6246 H18421
## 6247 H18422
## 6248 H18423
## 6249 H18429
## 6250 H1843
## 6251 H18441
## 6252 H18442
## 6253 H18443
## 6254 H18449
## 6255 H18451
## 6256 H18452
## 6257 H18453
## 6258 H18459
## 6259 H18461
## 6260 H18462
## 6261 H18463
## 6262 H18469
## 6263 H1849
## 6264 H1850
## 6265 H1851
## 6266 H1852
## 6267 H1853
## 6268 H1854
## 6269 H1855
## 6270 H1859
## 6271 H18601
## 6272 H18602
## 6273 H18603
## 6274 H18609
## 6275 H18611
## 6276 H18612
## 6277 H18613
## 6278 H18619
## 6279 H18621
## 6280 H18622
## 6281 H18623
## 6282 H18629
## 6283 H1870
## 6284 H18711
## 6285 H18712
## 6286 H18713
## 6287 H18719
## 6288 H18721
## 6289 H18722
## 6290 H18723
## 6291 H18729
## 6292 H18731
## 6293 H18732
## 6294 H18733
## 6295 H18739
## 6296 H18791
## 6297 H18792
## 6298 H18793
## 6299 H18799
## 6300 H18811
## 6301 H18812
## 6302 H18813
## 6303 H18819
## 6304 H18821
## 6305 H18822
## 6306 H18823
## 6307 H18829
## 6308 H18831
## 6309 H18832
## 6310 H18833
## 6311 H18839
## 6312 H18891
## 6313 H18892
## 6314 H18893
## 6315 H18899
## 6316 H189
## 6317 H2000
## 6318 H20011
## 6319 H20012
## 6320 H20013
## 6321 H20019
## 6322 H20021
## 6323 H20022
## 6324 H20023
## 6325 H20029
## 6326 H20031
## 6327 H20032
## 6328 H20033
## 6329 H20039
## 6330 H20041
## 6331 H20042
## 6332 H20043
## 6333 H20049
## 6334 H20051
## 6335 H20052
## 6336 H20053
## 6337 H20059
## 6338 H2010
## 6339 H2011
## 6340 H2012
## 6341 H2013
## 6342 H2020
## 6343 H2021
## 6344 H2022
## 6345 H2023
## 6346 H20811
## 6347 H20812
## 6348 H20813
## 6349 H20819
## 6350 H20821
## 6351 H20822
## 6352 H20823
## 6353 H20829
## 6354 H209
## 6355 H2100
## 6356 H2101
## 6357 H2102
## 6358 H2103
## 6359 H211X1
## 6360 H211X2
## 6361 H211X3
## 6362 H211X9
## 6363 H21211
## 6364 H21212
## 6365 H21213
## 6366 H21219
## 6367 H21221
## 6368 H21222
## 6369 H21223
## 6370 H21229
## 6371 H21231
## 6372 H21232
## 6373 H21233
## 6374 H21239
## 6375 H21241
## 6376 H21242
## 6377 H21243
## 6378 H21249
## 6379 H21251
## 6380 H21252
## 6381 H21253
## 6382 H21259
## 6383 H21261
## 6384 H21262
## 6385 H21263
## 6386 H21269
## 6387 H21271
## 6388 H21272
## 6389 H21273
## 6390 H21279
## 6391 H2129
## 6392 H21301
## 6393 H21302
## 6394 H21303
## 6395 H21309
## 6396 H21311
## 6397 H21312
## 6398 H21313
## 6399 H21319
## 6400 H21321
## 6401 H21322
## 6402 H21323
## 6403 H21329
## 6404 H21331
## 6405 H21332
## 6406 H21333
## 6407 H21339
## 6408 H21341
## 6409 H21342
## 6410 H21343
## 6411 H21349
## 6412 H21351
## 6413 H21352
## 6414 H21353
## 6415 H21359
## 6416 H2140
## 6417 H2141
## 6418 H2142
## 6419 H2143
## 6420 H21501
## 6421 H21502
## 6422 H21503
## 6423 H21509
## 6424 H21511
## 6425 H21512
## 6426 H21513
## 6427 H21519
## 6428 H21521
## 6429 H21522
## 6430 H21523
## 6431 H21529
## 6432 H21531
## 6433 H21532
## 6434 H21533
## 6435 H21539
## 6436 H21541
## 6437 H21542
## 6438 H21543
## 6439 H21549
## 6440 H21551
## 6441 H21552
## 6442 H21553
## 6443 H21559
## 6444 H21561
## 6445 H21562
## 6446 H21563
## 6447 H21569
## 6448 H2181
## 6449 H2182
## 6450 H2189
## 6451 H219
## 6452 H22
## 6453 H25011
## 6454 H25012
## 6455 H25013
## 6456 H25019
## 6457 H25031
## 6458 H25032
## 6459 H25033
## 6460 H25039
## 6461 H25041
## 6462 H25042
## 6463 H25043
## 6464 H25049
## 6465 H25091
## 6466 H25092
## 6467 H25093
## 6468 H25099
## 6469 H2510
## 6470 H2511
## 6471 H2512
## 6472 H2513
## 6473 H2520
## 6474 H2521
## 6475 H2522
## 6476 H2523
## 6477 H25811
## 6478 H25812
## 6479 H25813
## 6480 H25819
## 6481 H2589
## 6482 H259
## 6483 H26001
## 6484 H26002
## 6485 H26003
## 6486 H26009
## 6487 H26011
## 6488 H26012
## 6489 H26013
## 6490 H26019
## 6491 H26031
## 6492 H26032
## 6493 H26033
## 6494 H26039
## 6495 H26041
## 6496 H26042
## 6497 H26043
## 6498 H26049
## 6499 H26051
## 6500 H26052
## 6501 H26053
## 6502 H26059
## 6503 H26061
## 6504 H26062
## 6505 H26063
## 6506 H26069
## 6507 H2609
## 6508 H26101
## 6509 H26102
## 6510 H26103
## 6511 H26109
## 6512 H26111
## 6513 H26112
## 6514 H26113
## 6515 H26119
## 6516 H26121
## 6517 H26122
## 6518 H26123
## 6519 H26129
## 6520 H26131
## 6521 H26132
## 6522 H26133
## 6523 H26139
## 6524 H2620
## 6525 H26211
## 6526 H26212
## 6527 H26213
## 6528 H26219
## 6529 H26221
## 6530 H26222
## 6531 H26223
## 6532 H26229
## 6533 H26231
## 6534 H26232
## 6535 H26233
## 6536 H26239
## 6537 H2630
## 6538 H2631
## 6539 H2632
## 6540 H2633
## 6541 H2640
## 6542 H26411
## 6543 H26412
## 6544 H26413
## 6545 H26419
## 6546 H26491
## 6547 H26492
## 6548 H26493
## 6549 H26499
## 6550 H268
## 6551 H269
## 6552 H2700
## 6553 H2701
## 6554 H2702
## 6555 H2703
## 6556 H2710
## 6557 H27111
## 6558 H27112
## 6559 H27113
## 6560 H27119
## 6561 H27121
## 6562 H27122
## 6563 H27123
## 6564 H27129
## 6565 H27131
## 6566 H27132
## 6567 H27133
## 6568 H27139
## 6569 H278
## 6570 H279
## 6571 H28
## 6572 H30001
## 6573 H30002
## 6574 H30003
## 6575 H30009
## 6576 H30011
## 6577 H30012
## 6578 H30013
## 6579 H30019
## 6580 H30021
## 6581 H30022
## 6582 H30023
## 6583 H30029
## 6584 H30031
## 6585 H30032
## 6586 H30033
## 6587 H30039
## 6588 H30041
## 6589 H30042
## 6590 H30043
## 6591 H30049
## 6592 H30101
## 6593 H30102
## 6594 H30103
## 6595 H30109
## 6596 H30111
## 6597 H30112
## 6598 H30113
## 6599 H30119
## 6600 H30121
## 6601 H30122
## 6602 H30123
## 6603 H30129
## 6604 H30131
## 6605 H30132
## 6606 H30133
## 6607 H30139
## 6608 H30141
## 6609 H30142
## 6610 H30143
## 6611 H30149
## 6612 H3020
## 6613 H3021
## 6614 H3022
## 6615 H3023
## 6616 H30811
## 6617 H30812
## 6618 H30813
## 6619 H30819
## 6620 H30891
## 6621 H30892
## 6622 H30893
## 6623 H30899
## 6624 H3090
## 6625 H3091
## 6626 H3092
## 6627 H3093
## 6628 H31001
## 6629 H31002
## 6630 H31003
## 6631 H31009
## 6632 H31011
## 6633 H31012
## 6634 H31013
## 6635 H31019
## 6636 H31021
## 6637 H31022
## 6638 H31023
## 6639 H31029
## 6640 H31091
## 6641 H31092
## 6642 H31093
## 6643 H31099
## 6644 H31101
## 6645 H31102
## 6646 H31103
## 6647 H31109
## 6648 H31111
## 6649 H31112
## 6650 H31113
## 6651 H31119
## 6652 H31121
## 6653 H31122
## 6654 H31123
## 6655 H31129
## 6656 H3120
## 6657 H3121
## 6658 H3122
## 6659 H3123
## 6660 H3129
## 6661 H31301
## 6662 H31302
## 6663 H31303
## 6664 H31309
## 6665 H31311
## 6666 H31312
## 6667 H31313
## 6668 H31319
## 6669 H31321
## 6670 H31322
## 6671 H31323
## 6672 H31329
## 6673 H31401
## 6674 H31402
## 6675 H31403
## 6676 H31409
## 6677 H31411
## 6678 H31412
## 6679 H31413
## 6680 H31419
## 6681 H31421
## 6682 H31422
## 6683 H31423
## 6684 H31429
## 6685 H318
## 6686 H319
## 6687 H32
## 6688 H33001
## 6689 H33002
## 6690 H33003
## 6691 H33009
## 6692 H33011
## 6693 H33012
## 6694 H33013
## 6695 H33019
## 6696 H33021
## 6697 H33022
## 6698 H33023
## 6699 H33029
## 6700 H33031
## 6701 H33032
## 6702 H33033
## 6703 H33039
## 6704 H33041
## 6705 H33042
## 6706 H33043
## 6707 H33049
## 6708 H33051
## 6709 H33052
## 6710 H33053
## 6711 H33059
## 6712 H33101
## 6713 H33102
## 6714 H33103
## 6715 H33109
## 6716 H33111
## 6717 H33112
## 6718 H33113
## 6719 H33119
## 6720 H33121
## 6721 H33122
## 6722 H33123
## 6723 H33129
## 6724 H33191
## 6725 H33192
## 6726 H33193
## 6727 H33199
## 6728 H3320
## 6729 H3321
## 6730 H3322
## 6731 H3323
## 6732 H33301
## 6733 H33302
## 6734 H33303
## 6735 H33309
## 6736 H33311
## 6737 H33312
## 6738 H33313
## 6739 H33319
## 6740 H33321
## 6741 H33322
## 6742 H33323
## 6743 H33329
## 6744 H33331
## 6745 H33332
## 6746 H33333
## 6747 H33339
## 6748 H3340
## 6749 H3341
## 6750 H3342
## 6751 H3343
## 6752 H338
## 6753 H3400
## 6754 H3401
## 6755 H3402
## 6756 H3403
## 6757 H3410
## 6758 H3411
## 6759 H3412
## 6760 H3413
## 6761 H34211
## 6762 H34212
## 6763 H34213
## 6764 H34219
## 6765 H34231
## 6766 H34232
## 6767 H34233
## 6768 H34239
## 6769 H348110
## 6770 H348111
## 6771 H348112
## 6772 H348120
## 6773 H348121
## 6774 H348122
## 6775 H348130
## 6776 H348131
## 6777 H348132
## 6778 H348190
## 6779 H348191
## 6780 H348192
## 6781 H34821
## 6782 H34822
## 6783 H34823
## 6784 H34829
## 6785 H348310
## 6786 H348311
## 6787 H348312
## 6788 H348320
## 6789 H348321
## 6790 H348322
## 6791 H348330
## 6792 H348331
## 6793 H348332
## 6794 H348390
## 6795 H348391
## 6796 H348392
## 6797 H349
## 6798 H3500
## 6799 H35011
## 6800 H35012
## 6801 H35013
## 6802 H35019
## 6803 H35021
## 6804 H35022
## 6805 H35023
## 6806 H35029
## 6807 H35031
## 6808 H35032
## 6809 H35033
## 6810 H35039
## 6811 H35041
## 6812 H35042
## 6813 H35043
## 6814 H35049
## 6815 H35051
## 6816 H35052
## 6817 H35053
## 6818 H35059
## 6819 H35061
## 6820 H35062
## 6821 H35063
## 6822 H35069
## 6823 H35071
## 6824 H35072
## 6825 H35073
## 6826 H35079
## 6827 H3509
## 6828 H35101
## 6829 H35102
## 6830 H35103
## 6831 H35109
## 6832 H35111
## 6833 H35112
## 6834 H35113
## 6835 H35119
## 6836 H35121
## 6837 H35122
## 6838 H35123
## 6839 H35129
## 6840 H35131
## 6841 H35132
## 6842 H35133
## 6843 H35139
## 6844 H35141
## 6845 H35142
## 6846 H35143
## 6847 H35149
## 6848 H35151
## 6849 H35152
## 6850 H35153
## 6851 H35159
## 6852 H35161
## 6853 H35162
## 6854 H35163
## 6855 H35169
## 6856 H35171
## 6857 H35172
## 6858 H35173
## 6859 H35179
## 6860 H3520
## 6861 H3521
## 6862 H3522
## 6863 H3523
## 6864 H3530
## 6865 H353110
## 6866 H353111
## 6867 H353112
## 6868 H353113
## 6869 H353114
## 6870 H353120
## 6871 H353121
## 6872 H353122
## 6873 H353123
## 6874 H353124
## 6875 H353130
## 6876 H353131
## 6877 H353132
## 6878 H353133
## 6879 H353134
## 6880 H353190
## 6881 H353191
## 6882 H353192
## 6883 H353193
## 6884 H353194
## 6885 H353210
## 6886 H353211
## 6887 H353212
## 6888 H353213
## 6889 H353220
## 6890 H353221
## 6891 H353222
## 6892 H353223
## 6893 H353230
## 6894 H353231
## 6895 H353232
## 6896 H353233
## 6897 H353290
## 6898 H353291
## 6899 H353292
## 6900 H353293
## 6901 H3533
## 6902 H35341
## 6903 H35342
## 6904 H35343
## 6905 H35349
## 6906 H35351
## 6907 H35352
## 6908 H35353
## 6909 H35359
## 6910 H35361
## 6911 H35362
## 6912 H35363
## 6913 H35369
## 6914 H35371
## 6915 H35372
## 6916 H35373
## 6917 H35379
## 6918 H35381
## 6919 H35382
## 6920 H35383
## 6921 H35389
## 6922 H3540
## 6923 H35411
## 6924 H35412
## 6925 H35413
## 6926 H35419
## 6927 H35421
## 6928 H35422
## 6929 H35423
## 6930 H35429
## 6931 H35431
## 6932 H35432
## 6933 H35433
## 6934 H35439
## 6935 H35441
## 6936 H35442
## 6937 H35443
## 6938 H35449
## 6939 H35451
## 6940 H35452
## 6941 H35453
## 6942 H35459
## 6943 H35461
## 6944 H35462
## 6945 H35463
## 6946 H35469
## 6947 H3550
## 6948 H3551
## 6949 H3552
## 6950 H3553
## 6951 H3554
## 6952 H3560
## 6953 H3561
## 6954 H3562
## 6955 H3563
## 6956 H3570
## 6957 H35711
## 6958 H35712
## 6959 H35713
## 6960 H35719
## 6961 H35721
## 6962 H35722
## 6963 H35723
## 6964 H35729
## 6965 H35731
## 6966 H35732
## 6967 H35733
## 6968 H35739
## 6969 H3581
## 6970 H3582
## 6971 H3589
## 6972 H359
## 6973 H36
## 6974 H40001
## 6975 H40002
## 6976 H40003
## 6977 H40009
## 6978 H40011
## 6979 H40012
## 6980 H40013
## 6981 H40019
## 6982 H40021
## 6983 H40022
## 6984 H40023
## 6985 H40029
## 6986 H40031
## 6987 H40032
## 6988 H40033
## 6989 H40039
## 6990 H40041
## 6991 H40042
## 6992 H40043
## 6993 H40049
## 6994 H40051
## 6995 H40052
## 6996 H40053
## 6997 H40059
## 6998 H40061
## 6999 H40062
## 7000 H40063
## 7001 H40069
## 7002 H4010X0
## 7003 H4010X1
## 7004 H4010X2
## 7005 H4010X3
## 7006 H4010X4
## 7007 H401110
## 7008 H401111
## 7009 H401112
## 7010 H401113
## 7011 H401114
## 7012 H401120
## 7013 H401121
## 7014 H401122
## 7015 H401123
## 7016 H401124
## 7017 H401130
## 7018 H401131
## 7019 H401132
## 7020 H401133
## 7021 H401134
## 7022 H401190
## 7023 H401191
## 7024 H401192
## 7025 H401193
## 7026 H401194
## 7027 H401210
## 7028 H401211
## 7029 H401212
## 7030 H401213
## 7031 H401214
## 7032 H401220
## 7033 H401221
## 7034 H401222
## 7035 H401223
## 7036 H401224
## 7037 H401230
## 7038 H401231
## 7039 H401232
## 7040 H401233
## 7041 H401234
## 7042 H401290
## 7043 H401291
## 7044 H401292
## 7045 H401293
## 7046 H401294
## 7047 H401310
## 7048 H401311
## 7049 H401312
## 7050 H401313
## 7051 H401314
## 7052 H401320
## 7053 H401321
## 7054 H401322
## 7055 H401323
## 7056 H401324
## 7057 H401330
## 7058 H401331
## 7059 H401332
## 7060 H401333
## 7061 H401334
## 7062 H401390
## 7063 H401391
## 7064 H401392
## 7065 H401393
## 7066 H401394
## 7067 H401410
## 7068 H401411
## 7069 H401412
## 7070 H401413
## 7071 H401414
## 7072 H401420
## 7073 H401421
## 7074 H401422
## 7075 H401423
## 7076 H401424
## 7077 H401430
## 7078 H401431
## 7079 H401432
## 7080 H401433
## 7081 H401434
## 7082 H401490
## 7083 H401491
## 7084 H401492
## 7085 H401493
## 7086 H401494
## 7087 H40151
## 7088 H40152
## 7089 H40153
## 7090 H40159
## 7091 H4020X0
## 7092 H4020X1
## 7093 H4020X2
## 7094 H4020X3
## 7095 H4020X4
## 7096 H40211
## 7097 H40212
## 7098 H40213
## 7099 H40219
## 7100 H402210
## 7101 H402211
## 7102 H402212
## 7103 H402213
## 7104 H402214
## 7105 H402220
## 7106 H402221
## 7107 H402222
## 7108 H402223
## 7109 H402224
## 7110 H402230
## 7111 H402231
## 7112 H402232
## 7113 H402233
## 7114 H402234
## 7115 H402290
## 7116 H402291
## 7117 H402292
## 7118 H402293
## 7119 H402294
## 7120 H40231
## 7121 H40232
## 7122 H40233
## 7123 H40239
## 7124 H40241
## 7125 H40242
## 7126 H40243
## 7127 H40249
## 7128 H4030X0
## 7129 H4030X1
## 7130 H4030X2
## 7131 H4030X3
## 7132 H4030X4
## 7133 H4031X0
## 7134 H4031X1
## 7135 H4031X2
## 7136 H4031X3
## 7137 H4031X4
## 7138 H4032X0
## 7139 H4032X1
## 7140 H4032X2
## 7141 H4032X3
## 7142 H4032X4
## 7143 H4033X0
## 7144 H4033X1
## 7145 H4033X2
## 7146 H4033X3
## 7147 H4033X4
## 7148 H4040X0
## 7149 H4040X1
## 7150 H4040X2
## 7151 H4040X3
## 7152 H4040X4
## 7153 H4041X0
## 7154 H4041X1
## 7155 H4041X2
## 7156 H4041X3
## 7157 H4041X4
## 7158 H4042X0
## 7159 H4042X1
## 7160 H4042X2
## 7161 H4042X3
## 7162 H4042X4
## 7163 H4043X0
## 7164 H4043X1
## 7165 H4043X2
## 7166 H4043X3
## 7167 H4043X4
## 7168 H4050X0
## 7169 H4050X1
## 7170 H4050X2
## 7171 H4050X3
## 7172 H4050X4
## 7173 H4051X0
## 7174 H4051X1
## 7175 H4051X2
## 7176 H4051X3
## 7177 H4051X4
## 7178 H4052X0
## 7179 H4052X1
## 7180 H4052X2
## 7181 H4052X3
## 7182 H4052X4
## 7183 H4053X0
## 7184 H4053X1
## 7185 H4053X2
## 7186 H4053X3
## 7187 H4053X4
## 7188 H4060X0
## 7189 H4060X1
## 7190 H4060X2
## 7191 H4060X3
## 7192 H4060X4
## 7193 H4061X0
## 7194 H4061X1
## 7195 H4061X2
## 7196 H4061X3
## 7197 H4061X4
## 7198 H4062X0
## 7199 H4062X1
## 7200 H4062X2
## 7201 H4062X3
## 7202 H4062X4
## 7203 H4063X0
## 7204 H4063X1
## 7205 H4063X2
## 7206 H4063X3
## 7207 H4063X4
## 7208 H40811
## 7209 H40812
## 7210 H40813
## 7211 H40819
## 7212 H40821
## 7213 H40822
## 7214 H40823
## 7215 H40829
## 7216 H40831
## 7217 H40832
## 7218 H40833
## 7219 H40839
## 7220 H4089
## 7221 H409
## 7222 H42
## 7223 H4300
## 7224 H4301
## 7225 H4302
## 7226 H4303
## 7227 H4310
## 7228 H4311
## 7229 H4312
## 7230 H4313
## 7231 H4320
## 7232 H4321
## 7233 H4322
## 7234 H4323
## 7235 H43311
## 7236 H43312
## 7237 H43313
## 7238 H43319
## 7239 H43391
## 7240 H43392
## 7241 H43393
## 7242 H43399
## 7243 H43811
## 7244 H43812
## 7245 H43813
## 7246 H43819
## 7247 H43821
## 7248 H43822
## 7249 H43823
## 7250 H43829
## 7251 H4389
## 7252 H439
## 7253 H44001
## 7254 H44002
## 7255 H44003
## 7256 H44009
## 7257 H44011
## 7258 H44012
## 7259 H44013
## 7260 H44019
## 7261 H44021
## 7262 H44022
## 7263 H44023
## 7264 H44029
## 7265 H44111
## 7266 H44112
## 7267 H44113
## 7268 H44119
## 7269 H44121
## 7270 H44122
## 7271 H44123
## 7272 H44129
## 7273 H44131
## 7274 H44132
## 7275 H44133
## 7276 H44139
## 7277 H4419
## 7278 H4420
## 7279 H4421
## 7280 H4422
## 7281 H4423
## 7282 H442A1
## 7283 H442A2
## 7284 H442A3
## 7285 H442A9
## 7286 H442B1
## 7287 H442B2
## 7288 H442B3
## 7289 H442B9
## 7290 H442C1
## 7291 H442C2
## 7292 H442C3
## 7293 H442C9
## 7294 H442D1
## 7295 H442D2
## 7296 H442D3
## 7297 H442D9
## 7298 H442E1
## 7299 H442E2
## 7300 H442E3
## 7301 H442E9
## 7302 H4430
## 7303 H44311
## 7304 H44312
## 7305 H44313
## 7306 H44319
## 7307 H44321
## 7308 H44322
## 7309 H44323
## 7310 H44329
## 7311 H44391
## 7312 H44392
## 7313 H44393
## 7314 H44399
## 7315 H4440
## 7316 H44411
## 7317 H44412
## 7318 H44413
## 7319 H44419
## 7320 H44421
## 7321 H44422
## 7322 H44423
## 7323 H44429
## 7324 H44431
## 7325 H44432
## 7326 H44433
## 7327 H44439
## 7328 H44441
## 7329 H44442
## 7330 H44443
## 7331 H44449
## 7332 H4450
## 7333 H44511
## 7334 H44512
## 7335 H44513
## 7336 H44519
## 7337 H44521
## 7338 H44522
## 7339 H44523
## 7340 H44529
## 7341 H44531
## 7342 H44532
## 7343 H44533
## 7344 H44539
## 7345 H44601
## 7346 H44602
## 7347 H44603
## 7348 H44609
## 7349 H44611
## 7350 H44612
## 7351 H44613
## 7352 H44619
## 7353 H44621
## 7354 H44622
## 7355 H44623
## 7356 H44629
## 7357 H44631
## 7358 H44632
## 7359 H44633
## 7360 H44639
## 7361 H44641
## 7362 H44642
## 7363 H44643
## 7364 H44649
## 7365 H44651
## 7366 H44652
## 7367 H44653
## 7368 H44659
## 7369 H44691
## 7370 H44692
## 7371 H44693
## 7372 H44699
## 7373 H44701
## 7374 H44702
## 7375 H44703
## 7376 H44709
## 7377 H44711
## 7378 H44712
## 7379 H44713
## 7380 H44719
## 7381 H44721
## 7382 H44722
## 7383 H44723
## 7384 H44729
## 7385 H44731
## 7386 H44732
## 7387 H44733
## 7388 H44739
## 7389 H44741
## 7390 H44742
## 7391 H44743
## 7392 H44749
## 7393 H44751
## 7394 H44752
## 7395 H44753
## 7396 H44759
## 7397 H44791
## 7398 H44792
## 7399 H44793
## 7400 H44799
## 7401 H44811
## 7402 H44812
## 7403 H44813
## 7404 H44819
## 7405 H44821
## 7406 H44822
## 7407 H44823
## 7408 H44829
## 7409 H4489
## 7410 H449
## 7411 H4600
## 7412 H4601
## 7413 H4602
## 7414 H4603
## 7415 H4610
## 7416 H4611
## 7417 H4612
## 7418 H4613
## 7419 H462
## 7420 H463
## 7421 H468
## 7422 H469
## 7423 H47011
## 7424 H47012
## 7425 H47013
## 7426 H47019
## 7427 H47021
## 7428 H47022
## 7429 H47023
## 7430 H47029
## 7431 H47031
## 7432 H47032
## 7433 H47033
## 7434 H47039
## 7435 H47091
## 7436 H47092
## 7437 H47093
## 7438 H47099
## 7439 H4710
## 7440 H4711
## 7441 H4712
## 7442 H4713
## 7443 H47141
## 7444 H47142
## 7445 H47143
## 7446 H47149
## 7447 H4720
## 7448 H47211
## 7449 H47212
## 7450 H47213
## 7451 H47219
## 7452 H4722
## 7453 H47231
## 7454 H47232
## 7455 H47233
## 7456 H47239
## 7457 H47291
## 7458 H47292
## 7459 H47293
## 7460 H47299
## 7461 H47311
## 7462 H47312
## 7463 H47313
## 7464 H47319
## 7465 H47321
## 7466 H47322
## 7467 H47323
## 7468 H47329
## 7469 H47331
## 7470 H47332
## 7471 H47333
## 7472 H47339
## 7473 H47391
## 7474 H47392
## 7475 H47393
## 7476 H47399
## 7477 H4741
## 7478 H4742
## 7479 H4743
## 7480 H4749
## 7481 H47511
## 7482 H47512
## 7483 H47519
## 7484 H47521
## 7485 H47522
## 7486 H47529
## 7487 H47531
## 7488 H47532
## 7489 H47539
## 7490 H47611
## 7491 H47612
## 7492 H47619
## 7493 H47621
## 7494 H47622
## 7495 H47629
## 7496 H47631
## 7497 H47632
## 7498 H47639
## 7499 H47641
## 7500 H47642
## 7501 H47649
## 7502 H479
## 7503 H4900
## 7504 H4901
## 7505 H4902
## 7506 H4903
## 7507 H4910
## 7508 H4911
## 7509 H4912
## 7510 H4913
## 7511 H4920
## 7512 H4921
## 7513 H4922
## 7514 H4923
## 7515 H4930
## 7516 H4931
## 7517 H4932
## 7518 H4933
## 7519 H4940
## 7520 H4941
## 7521 H4942
## 7522 H4943
## 7523 H49811
## 7524 H49812
## 7525 H49813
## 7526 H49819
## 7527 H49881
## 7528 H49882
## 7529 H49883
## 7530 H49889
## 7531 H499
## 7532 H5000
## 7533 H50011
## 7534 H50012
## 7535 H50021
## 7536 H50022
## 7537 H50031
## 7538 H50032
## 7539 H50041
## 7540 H50042
## 7541 H5005
## 7542 H5006
## 7543 H5007
## 7544 H5008
## 7545 H5010
## 7546 H50111
## 7547 H50112
## 7548 H50121
## 7549 H50122
## 7550 H50131
## 7551 H50132
## 7552 H50141
## 7553 H50142
## 7554 H5015
## 7555 H5016
## 7556 H5017
## 7557 H5018
## 7558 H5021
## 7559 H5022
## 7560 H5030
## 7561 H50311
## 7562 H50312
## 7563 H5032
## 7564 H50331
## 7565 H50332
## 7566 H5034
## 7567 H5040
## 7568 H50411
## 7569 H50412
## 7570 H5042
## 7571 H5043
## 7572 H5050
## 7573 H5051
## 7574 H5052
## 7575 H5053
## 7576 H5054
## 7577 H5055
## 7578 H5060
## 7579 H50611
## 7580 H50612
## 7581 H5069
## 7582 H50811
## 7583 H50812
## 7584 H5089
## 7585 H509
## 7586 H510
## 7587 H5111
## 7588 H5112
## 7589 H5120
## 7590 H5121
## 7591 H5122
## 7592 H5123
## 7593 H518
## 7594 H519
## 7595 H5200
## 7596 H5201
## 7597 H5202
## 7598 H5203
## 7599 H5210
## 7600 H5211
## 7601 H5212
## 7602 H5213
## 7603 H52201
## 7604 H52202
## 7605 H52203
## 7606 H52209
## 7607 H52211
## 7608 H52212
## 7609 H52213
## 7610 H52219
## 7611 H52221
## 7612 H52222
## 7613 H52223
## 7614 H52229
## 7615 H5231
## 7616 H5232
## 7617 H524
## 7618 H52511
## 7619 H52512
## 7620 H52513
## 7621 H52519
## 7622 H52521
## 7623 H52522
## 7624 H52523
## 7625 H52529
## 7626 H52531
## 7627 H52532
## 7628 H52533
## 7629 H52539
## 7630 H526
## 7631 H527
## 7632 H53001
## 7633 H53002
## 7634 H53003
## 7635 H53009
## 7636 H53011
## 7637 H53012
## 7638 H53013
## 7639 H53019
## 7640 H53021
## 7641 H53022
## 7642 H53023
## 7643 H53029
## 7644 H53031
## 7645 H53032
## 7646 H53033
## 7647 H53039
## 7648 H53041
## 7649 H53042
## 7650 H53043
## 7651 H53049
## 7652 H5310
## 7653 H5311
## 7654 H53121
## 7655 H53122
## 7656 H53123
## 7657 H53129
## 7658 H53131
## 7659 H53132
## 7660 H53133
## 7661 H53139
## 7662 H53141
## 7663 H53142
## 7664 H53143
## 7665 H53149
## 7666 H5315
## 7667 H5316
## 7668 H5319
## 7669 H532
## 7670 H5330
## 7671 H5331
## 7672 H5332
## 7673 H5333
## 7674 H5334
## 7675 H5340
## 7676 H53411
## 7677 H53412
## 7678 H53413
## 7679 H53419
## 7680 H53421
## 7681 H53422
## 7682 H53423
## 7683 H53429
## 7684 H53431
## 7685 H53432
## 7686 H53433
## 7687 H53439
## 7688 H53451
## 7689 H53452
## 7690 H53453
## 7691 H53459
## 7692 H53461
## 7693 H53462
## 7694 H53469
## 7695 H5347
## 7696 H53481
## 7697 H53482
## 7698 H53483
## 7699 H53489
## 7700 H5350
## 7701 H5351
## 7702 H5352
## 7703 H5353
## 7704 H5354
## 7705 H5355
## 7706 H5359
## 7707 H5360
## 7708 H5361
## 7709 H5362
## 7710 H5363
## 7711 H5369
## 7712 H5371
## 7713 H5372
## 7714 H538
## 7715 H539
## 7716 H540X33
## 7717 H540X34
## 7718 H540X35
## 7719 H540X43
## 7720 H540X44
## 7721 H540X45
## 7722 H540X53
## 7723 H540X54
## 7724 H540X55
## 7725 H5410
## 7726 H541131
## 7727 H541132
## 7728 H541141
## 7729 H541142
## 7730 H541151
## 7731 H541152
## 7732 H541213
## 7733 H541214
## 7734 H541215
## 7735 H541223
## 7736 H541224
## 7737 H541225
## 7738 H542X11
## 7739 H542X12
## 7740 H542X21
## 7741 H542X22
## 7742 H543
## 7743 H5440
## 7744 H54413A
## 7745 H54414A
## 7746 H54415A
## 7747 H5442A3
## 7748 H5442A4
## 7749 H5442A5
## 7750 H5450
## 7751 H54511A
## 7752 H54512A
## 7753 H5452A1
## 7754 H5452A2
## 7755 H5460
## 7756 H5461
## 7757 H5462
## 7758 H547
## 7759 H548
## 7760 H5500
## 7761 H5501
## 7762 H5502
## 7763 H5503
## 7764 H5504
## 7765 H5509
## 7766 H5581
## 7767 H5589
## 7768 H5700
## 7769 H5701
## 7770 H5702
## 7771 H5703
## 7772 H5704
## 7773 H57051
## 7774 H57052
## 7775 H57053
## 7776 H57059
## 7777 H5709
## 7778 H5710
## 7779 H5711
## 7780 H5712
## 7781 H5713
## 7782 H57811
## 7783 H57812
## 7784 H57813
## 7785 H57819
## 7786 H5789
## 7787 H579
## 7788 H59011
## 7789 H59012
## 7790 H59013
## 7791 H59019
## 7792 H59021
## 7793 H59022
## 7794 H59023
## 7795 H59029
## 7796 H59031
## 7797 H59032
## 7798 H59033
## 7799 H59039
## 7800 H59091
## 7801 H59092
## 7802 H59093
## 7803 H59099
## 7804 H59111
## 7805 H59112
## 7806 H59113
## 7807 H59119
## 7808 H59121
## 7809 H59122
## 7810 H59123
## 7811 H59129
## 7812 H59211
## 7813 H59212
## 7814 H59213
## 7815 H59219
## 7816 H59221
## 7817 H59222
## 7818 H59223
## 7819 H59229
## 7820 H59311
## 7821 H59312
## 7822 H59313
## 7823 H59319
## 7824 H59321
## 7825 H59322
## 7826 H59323
## 7827 H59329
## 7828 H59331
## 7829 H59332
## 7830 H59333
## 7831 H59339
## 7832 H59341
## 7833 H59342
## 7834 H59343
## 7835 H59349
## 7836 H59351
## 7837 H59352
## 7838 H59353
## 7839 H59359
## 7840 H59361
## 7841 H59362
## 7842 H59363
## 7843 H59369
## 7844 H5940
## 7845 H5941
## 7846 H5942
## 7847 H5943
## 7848 H59811
## 7849 H59812
## 7850 H59813
## 7851 H59819
## 7852 H5988
## 7853 H5989
## 7854 H6000
## 7855 H6001
## 7856 H6002
## 7857 H6003
## 7858 H6010
## 7859 H6011
## 7860 H6012
## 7861 H6013
## 7862 H6020
## 7863 H6021
## 7864 H6022
## 7865 H6023
## 7866 H60311
## 7867 H60312
## 7868 H60313
## 7869 H60319
## 7870 H60321
## 7871 H60322
## 7872 H60323
## 7873 H60329
## 7874 H60331
## 7875 H60332
## 7876 H60333
## 7877 H60339
## 7878 H60391
## 7879 H60392
## 7880 H60393
## 7881 H60399
## 7882 H6040
## 7883 H6041
## 7884 H6042
## 7885 H6043
## 7886 H60501
## 7887 H60502
## 7888 H60503
## 7889 H60509
## 7890 H60511
## 7891 H60512
## 7892 H60513
## 7893 H60519
## 7894 H60521
## 7895 H60522
## 7896 H60523
## 7897 H60529
## 7898 H60531
## 7899 H60532
## 7900 H60533
## 7901 H60539
## 7902 H60541
## 7903 H60542
## 7904 H60543
## 7905 H60549
## 7906 H60551
## 7907 H60552
## 7908 H60553
## 7909 H60559
## 7910 H60591
## 7911 H60592
## 7912 H60593
## 7913 H60599
## 7914 H6060
## 7915 H6061
## 7916 H6062
## 7917 H6063
## 7918 H608X1
## 7919 H608X2
## 7920 H608X3
## 7921 H608X9
## 7922 H6090
## 7923 H6091
## 7924 H6092
## 7925 H6093
## 7926 H61001
## 7927 H61002
## 7928 H61003
## 7929 H61009
## 7930 H61011
## 7931 H61012
## 7932 H61013
## 7933 H61019
## 7934 H61021
## 7935 H61022
## 7936 H61023
## 7937 H61029
## 7938 H61031
## 7939 H61032
## 7940 H61033
## 7941 H61039
## 7942 H61101
## 7943 H61102
## 7944 H61103
## 7945 H61109
## 7946 H61111
## 7947 H61112
## 7948 H61113
## 7949 H61119
## 7950 H61121
## 7951 H61122
## 7952 H61123
## 7953 H61129
## 7954 H61191
## 7955 H61192
## 7956 H61193
## 7957 H61199
## 7958 H6120
## 7959 H6121
## 7960 H6122
## 7961 H6123
## 7962 H61301
## 7963 H61302
## 7964 H61303
## 7965 H61309
## 7966 H61311
## 7967 H61312
## 7968 H61313
## 7969 H61319
## 7970 H61321
## 7971 H61322
## 7972 H61323
## 7973 H61329
## 7974 H61391
## 7975 H61392
## 7976 H61393
## 7977 H61399
## 7978 H61811
## 7979 H61812
## 7980 H61813
## 7981 H61819
## 7982 H61891
## 7983 H61892
## 7984 H61893
## 7985 H61899
## 7986 H6190
## 7987 H6191
## 7988 H6192
## 7989 H6193
## 7990 H6240
## 7991 H6241
## 7992 H6242
## 7993 H6243
## 7994 H628X1
## 7995 H628X2
## 7996 H628X3
## 7997 H628X9
## 7998 H6500
## 7999 H6501
## 8000 H6502
## 8001 H6503
## 8002 H6504
## 8003 H6505
## 8004 H6506
## 8005 H6507
## 8006 H65111
## 8007 H65112
## 8008 H65113
## 8009 H65114
## 8010 H65115
## 8011 H65116
## 8012 H65117
## 8013 H65119
## 8014 H65191
## 8015 H65192
## 8016 H65193
## 8017 H65194
## 8018 H65195
## 8019 H65196
## 8020 H65197
## 8021 H65199
## 8022 H6520
## 8023 H6521
## 8024 H6522
## 8025 H6523
## 8026 H6530
## 8027 H6531
## 8028 H6532
## 8029 H6533
## 8030 H65411
## 8031 H65412
## 8032 H65413
## 8033 H65419
## 8034 H65491
## 8035 H65492
## 8036 H65493
## 8037 H65499
## 8038 H6590
## 8039 H6591
## 8040 H6592
## 8041 H6593
## 8042 H66001
## 8043 H66002
## 8044 H66003
## 8045 H66004
## 8046 H66005
## 8047 H66006
## 8048 H66007
## 8049 H66009
## 8050 H66011
## 8051 H66012
## 8052 H66013
## 8053 H66014
## 8054 H66015
## 8055 H66016
## 8056 H66017
## 8057 H66019
## 8058 H6610
## 8059 H6611
## 8060 H6612
## 8061 H6613
## 8062 H6620
## 8063 H6621
## 8064 H6622
## 8065 H6623
## 8066 H663X1
## 8067 H663X2
## 8068 H663X3
## 8069 H663X9
## 8070 H6640
## 8071 H6641
## 8072 H6642
## 8073 H6643
## 8074 H6690
## 8075 H6691
## 8076 H6692
## 8077 H6693
## 8078 H671
## 8079 H672
## 8080 H673
## 8081 H679
## 8082 H68001
## 8083 H68002
## 8084 H68003
## 8085 H68009
## 8086 H68011
## 8087 H68012
## 8088 H68013
## 8089 H68019
## 8090 H68021
## 8091 H68022
## 8092 H68023
## 8093 H68029
## 8094 H68101
## 8095 H68102
## 8096 H68103
## 8097 H68109
## 8098 H68111
## 8099 H68112
## 8100 H68113
## 8101 H68119
## 8102 H68121
## 8103 H68122
## 8104 H68123
## 8105 H68129
## 8106 H68131
## 8107 H68132
## 8108 H68133
## 8109 H68139
## 8110 H6900
## 8111 H6901
## 8112 H6902
## 8113 H6903
## 8114 H6980
## 8115 H6981
## 8116 H6982
## 8117 H6983
## 8118 H6990
## 8119 H6991
## 8120 H6992
## 8121 H6993
## 8122 H70001
## 8123 H70002
## 8124 H70003
## 8125 H70009
## 8126 H70011
## 8127 H70012
## 8128 H70013
## 8129 H70019
## 8130 H70091
## 8131 H70092
## 8132 H70093
## 8133 H70099
## 8134 H7010
## 8135 H7011
## 8136 H7012
## 8137 H7013
## 8138 H70201
## 8139 H70202
## 8140 H70203
## 8141 H70209
## 8142 H70211
## 8143 H70212
## 8144 H70213
## 8145 H70219
## 8146 H70221
## 8147 H70222
## 8148 H70223
## 8149 H70229
## 8150 H70811
## 8151 H70812
## 8152 H70813
## 8153 H70819
## 8154 H70891
## 8155 H70892
## 8156 H70893
## 8157 H70899
## 8158 H7090
## 8159 H7091
## 8160 H7092
## 8161 H7093
## 8162 H7100
## 8163 H7101
## 8164 H7102
## 8165 H7103
## 8166 H7110
## 8167 H7111
## 8168 H7112
## 8169 H7113
## 8170 H7120
## 8171 H7121
## 8172 H7122
## 8173 H7123
## 8174 H7130
## 8175 H7131
## 8176 H7132
## 8177 H7133
## 8178 H7190
## 8179 H7191
## 8180 H7192
## 8181 H7193
## 8182 H7200
## 8183 H7201
## 8184 H7202
## 8185 H7203
## 8186 H7210
## 8187 H7211
## 8188 H7212
## 8189 H7213
## 8190 H722X1
## 8191 H722X2
## 8192 H722X3
## 8193 H722X9
## 8194 H72811
## 8195 H72812
## 8196 H72813
## 8197 H72819
## 8198 H72821
## 8199 H72822
## 8200 H72823
## 8201 H72829
## 8202 H7290
## 8203 H7291
## 8204 H7292
## 8205 H7293
## 8206 H73001
## 8207 H73002
## 8208 H73003
## 8209 H73009
## 8210 H73011
## 8211 H73012
## 8212 H73013
## 8213 H73019
## 8214 H73091
## 8215 H73092
## 8216 H73093
## 8217 H73099
## 8218 H7310
## 8219 H7311
## 8220 H7312
## 8221 H7313
## 8222 H7320
## 8223 H7321
## 8224 H7322
## 8225 H7323
## 8226 H73811
## 8227 H73812
## 8228 H73813
## 8229 H73819
## 8230 H73821
## 8231 H73822
## 8232 H73823
## 8233 H73829
## 8234 H73891
## 8235 H73892
## 8236 H73893
## 8237 H73899
## 8238 H7390
## 8239 H7391
## 8240 H7392
## 8241 H7393
## 8242 H7401
## 8243 H7402
## 8244 H7403
## 8245 H7409
## 8246 H7411
## 8247 H7412
## 8248 H7413
## 8249 H7419
## 8250 H7420
## 8251 H7421
## 8252 H7422
## 8253 H7423
## 8254 H74311
## 8255 H74312
## 8256 H74313
## 8257 H74319
## 8258 H74321
## 8259 H74322
## 8260 H74323
## 8261 H74329
## 8262 H74391
## 8263 H74392
## 8264 H74393
## 8265 H74399
## 8266 H7440
## 8267 H7441
## 8268 H7442
## 8269 H7443
## 8270 H748X1
## 8271 H748X2
## 8272 H748X3
## 8273 H748X9
## 8274 H7490
## 8275 H7491
## 8276 H7492
## 8277 H7493
## 8278 H7500
## 8279 H7501
## 8280 H7502
## 8281 H7503
## 8282 H7580
## 8283 H7581
## 8284 H7582
## 8285 H7583
## 8286 H8000
## 8287 H8001
## 8288 H8002
## 8289 H8003
## 8290 H8010
## 8291 H8011
## 8292 H8012
## 8293 H8013
## 8294 H8020
## 8295 H8021
## 8296 H8022
## 8297 H8023
## 8298 H8080
## 8299 H8081
## 8300 H8082
## 8301 H8083
## 8302 H8090
## 8303 H8091
## 8304 H8092
## 8305 H8093
## 8306 H8101
## 8307 H8102
## 8308 H8103
## 8309 H8109
## 8310 H8110
## 8311 H8111
## 8312 H8112
## 8313 H8113
## 8314 H8120
## 8315 H8121
## 8316 H8122
## 8317 H8123
## 8318 H81311
## 8319 H81312
## 8320 H81313
## 8321 H81319
## 8322 H81391
## 8323 H81392
## 8324 H81393
## 8325 H81399
## 8326 H814
## 8327 H818X1
## 8328 H818X2
## 8329 H818X3
## 8330 H818X9
## 8331 H8190
## 8332 H8191
## 8333 H8192
## 8334 H8193
## 8335 H821
## 8336 H822
## 8337 H823
## 8338 H829
## 8339 H8301
## 8340 H8302
## 8341 H8303
## 8342 H8309
## 8343 H8311
## 8344 H8312
## 8345 H8313
## 8346 H8319
## 8347 H832X1
## 8348 H832X2
## 8349 H832X3
## 8350 H832X9
## 8351 H833X1
## 8352 H833X2
## 8353 H833X3
## 8354 H833X9
## 8355 H838X1
## 8356 H838X2
## 8357 H838X3
## 8358 H838X9
## 8359 H8390
## 8360 H8391
## 8361 H8392
## 8362 H8393
## 8363 H900
## 8364 H9011
## 8365 H9012
## 8366 H902
## 8367 H903
## 8368 H9041
## 8369 H9042
## 8370 H905
## 8371 H906
## 8372 H9071
## 8373 H9072
## 8374 H908
## 8375 H90A11
## 8376 H90A12
## 8377 H90A21
## 8378 H90A22
## 8379 H90A31
## 8380 H90A32
## 8381 H9101
## 8382 H9102
## 8383 H9103
## 8384 H9109
## 8385 H9110
## 8386 H9111
## 8387 H9112
## 8388 H9113
## 8389 H9120
## 8390 H9121
## 8391 H9122
## 8392 H9123
## 8393 H913
## 8394 H918X1
## 8395 H918X2
## 8396 H918X3
## 8397 H918X9
## 8398 H9190
## 8399 H9191
## 8400 H9192
## 8401 H9193
## 8402 H9201
## 8403 H9202
## 8404 H9203
## 8405 H9209
## 8406 H9210
## 8407 H9211
## 8408 H9212
## 8409 H9213
## 8410 H9220
## 8411 H9221
## 8412 H9222
## 8413 H9223
## 8414 H93011
## 8415 H93012
## 8416 H93013
## 8417 H93019
## 8418 H93091
## 8419 H93092
## 8420 H93093
## 8421 H93099
## 8422 H9311
## 8423 H9312
## 8424 H9313
## 8425 H9319
## 8426 H93A1
## 8427 H93A2
## 8428 H93A3
## 8429 H93A9
## 8430 H93211
## 8431 H93212
## 8432 H93213
## 8433 H93219
## 8434 H93221
## 8435 H93222
## 8436 H93223
## 8437 H93229
## 8438 H93231
## 8439 H93232
## 8440 H93233
## 8441 H93239
## 8442 H93241
## 8443 H93242
## 8444 H93243
## 8445 H93249
## 8446 H9325
## 8447 H93291
## 8448 H93292
## 8449 H93293
## 8450 H93299
## 8451 H933X1
## 8452 H933X2
## 8453 H933X3
## 8454 H933X9
## 8455 H938X1
## 8456 H938X2
## 8457 H938X3
## 8458 H938X9
## 8459 H9390
## 8460 H9391
## 8461 H9392
## 8462 H9393
## 8463 H9400
## 8464 H9401
## 8465 H9402
## 8466 H9403
## 8467 H9480
## 8468 H9481
## 8469 H9482
## 8470 H9483
## 8471 H9500
## 8472 H9501
## 8473 H9502
## 8474 H9503
## 8475 H95111
## 8476 H95112
## 8477 H95113
## 8478 H95119
## 8479 H95121
## 8480 H95122
## 8481 H95123
## 8482 H95129
## 8483 H95131
## 8484 H95132
## 8485 H95133
## 8486 H95139
## 8487 H95191
## 8488 H95192
## 8489 H95193
## 8490 H95199
## 8491 H9521
## 8492 H9522
## 8493 H9531
## 8494 H9532
## 8495 H9541
## 8496 H9542
## 8497 H9551
## 8498 H9552
## 8499 H9553
## 8500 H9554
## 8501 H95811
## 8502 H95812
## 8503 H95813
## 8504 H95819
## 8505 H9588
## 8506 H9589
## 8507 I00
## 8508 I010
## 8509 I011
## 8510 I012
## 8511 I018
## 8512 I019
## 8513 I020
## 8514 I029
## 8515 I050
## 8516 I051
## 8517 I052
## 8518 I058
## 8519 I059
## 8520 I060
## 8521 I061
## 8522 I062
## 8523 I068
## 8524 I069
## 8525 I070
## 8526 I071
## 8527 I072
## 8528 I078
## 8529 I079
## 8530 I080
## 8531 I081
## 8532 I082
## 8533 I083
## 8534 I088
## 8535 I089
## 8536 I090
## 8537 I091
## 8538 I092
## 8539 I0981
## 8540 I0989
## 8541 I099
## 8542 I10
## 8543 I110
## 8544 I119
## 8545 I120
## 8546 I129
## 8547 I130
## 8548 I1310
## 8549 I1311
## 8550 I132
## 8551 I150
## 8552 I151
## 8553 I152
## 8554 I158
## 8555 I159
## 8556 I160
## 8557 I161
## 8558 I169
## 8559 I200
## 8560 I201
## 8561 I208
## 8562 I209
## 8563 I2101
## 8564 I2102
## 8565 I2109
## 8566 I2111
## 8567 I2119
## 8568 I2121
## 8569 I2129
## 8570 I213
## 8571 I214
## 8572 I219
## 8573 I21A1
## 8574 I21A9
## 8575 I220
## 8576 I221
## 8577 I222
## 8578 I228
## 8579 I229
## 8580 I230
## 8581 I231
## 8582 I232
## 8583 I233
## 8584 I234
## 8585 I235
## 8586 I236
## 8587 I237
## 8588 I238
## 8589 I240
## 8590 I241
## 8591 I248
## 8592 I249
## 8593 I2510
## 8594 I25110
## 8595 I25111
## 8596 I25118
## 8597 I25119
## 8598 I252
## 8599 I253
## 8600 I2541
## 8601 I2542
## 8602 I255
## 8603 I256
## 8604 I25700
## 8605 I25701
## 8606 I25708
## 8607 I25709
## 8608 I25710
## 8609 I25711
## 8610 I25718
## 8611 I25719
## 8612 I25720
## 8613 I25721
## 8614 I25728
## 8615 I25729
## 8616 I25730
## 8617 I25731
## 8618 I25738
## 8619 I25739
## 8620 I25750
## 8621 I25751
## 8622 I25758
## 8623 I25759
## 8624 I25760
## 8625 I25761
## 8626 I25768
## 8627 I25769
## 8628 I25790
## 8629 I25791
## 8630 I25798
## 8631 I25799
## 8632 I25810
## 8633 I25811
## 8634 I25812
## 8635 I2582
## 8636 I2583
## 8637 I2584
## 8638 I2589
## 8639 I259
## 8640 I2601
## 8641 I2602
## 8642 I2609
## 8643 I2690
## 8644 I2692
## 8645 I2693
## 8646 I2694
## 8647 I2699
## 8648 I270
## 8649 I271
## 8650 I2720
## 8651 I2721
## 8652 I2722
## 8653 I2723
## 8654 I2724
## 8655 I2729
## 8656 I2781
## 8657 I2782
## 8658 I2783
## 8659 I2789
## 8660 I279
## 8661 I280
## 8662 I281
## 8663 I288
## 8664 I289
## 8665 I300
## 8666 I301
## 8667 I308
## 8668 I309
## 8669 I310
## 8670 I311
## 8671 I312
## 8672 I313
## 8673 I314
## 8674 I318
## 8675 I319
## 8676 I32
## 8677 I330
## 8678 I339
## 8679 I340
## 8680 I341
## 8681 I342
## 8682 I348
## 8683 I349
## 8684 I350
## 8685 I351
## 8686 I352
## 8687 I358
## 8688 I359
## 8689 I360
## 8690 I361
## 8691 I362
## 8692 I368
## 8693 I369
## 8694 I370
## 8695 I371
## 8696 I372
## 8697 I378
## 8698 I379
## 8699 I38
## 8700 I39
## 8701 I400
## 8702 I401
## 8703 I408
## 8704 I409
## 8705 I41
## 8706 I420
## 8707 I421
## 8708 I422
## 8709 I423
## 8710 I424
## 8711 I425
## 8712 I426
## 8713 I427
## 8714 I428
## 8715 I429
## 8716 I43
## 8717 I440
## 8718 I441
## 8719 I442
## 8720 I4430
## 8721 I4439
## 8722 I444
## 8723 I445
## 8724 I4460
## 8725 I4469
## 8726 I447
## 8727 I450
## 8728 I4510
## 8729 I4519
## 8730 I452
## 8731 I453
## 8732 I454
## 8733 I455
## 8734 I456
## 8735 I4581
## 8736 I4589
## 8737 I459
## 8738 I462
## 8739 I468
## 8740 I469
## 8741 I470
## 8742 I471
## 8743 I472
## 8744 I479
## 8745 I480
## 8746 I4811
## 8747 I4819
## 8748 I4820
## 8749 I4821
## 8750 I483
## 8751 I484
## 8752 I4891
## 8753 I4892
## 8754 I4901
## 8755 I4902
## 8756 I491
## 8757 I492
## 8758 I493
## 8759 I4940
## 8760 I4949
## 8761 I495
## 8762 I498
## 8763 I499
## 8764 I501
## 8765 I5020
## 8766 I5021
## 8767 I5022
## 8768 I5023
## 8769 I5030
## 8770 I5031
## 8771 I5032
## 8772 I5033
## 8773 I5040
## 8774 I5041
## 8775 I5042
## 8776 I5043
## 8777 I50810
## 8778 I50811
## 8779 I50812
## 8780 I50813
## 8781 I50814
## 8782 I5082
## 8783 I5083
## 8784 I5084
## 8785 I5089
## 8786 I509
## 8787 I510
## 8788 I511
## 8789 I512
## 8790 I513
## 8791 I514
## 8792 I515
## 8793 I517
## 8794 I5181
## 8795 I5189
## 8796 I519
## 8797 I52
## 8798 I6000
## 8799 I6001
## 8800 I6002
## 8801 I6010
## 8802 I6011
## 8803 I6012
## 8804 I602
## 8805 I6030
## 8806 I6031
## 8807 I6032
## 8808 I604
## 8809 I6050
## 8810 I6051
## 8811 I6052
## 8812 I606
## 8813 I607
## 8814 I608
## 8815 I609
## 8816 I610
## 8817 I611
## 8818 I612
## 8819 I613
## 8820 I614
## 8821 I615
## 8822 I616
## 8823 I618
## 8824 I619
## 8825 I6200
## 8826 I6201
## 8827 I6202
## 8828 I6203
## 8829 I621
## 8830 I629
## 8831 I6300
## 8832 I63011
## 8833 I63012
## 8834 I63013
## 8835 I63019
## 8836 I6302
## 8837 I63031
## 8838 I63032
## 8839 I63033
## 8840 I63039
## 8841 I6309
## 8842 I6310
## 8843 I63111
## 8844 I63112
## 8845 I63113
## 8846 I63119
## 8847 I6312
## 8848 I63131
## 8849 I63132
## 8850 I63133
## 8851 I63139
## 8852 I6319
## 8853 I6320
## 8854 I63211
## 8855 I63212
## 8856 I63213
## 8857 I63219
## 8858 I6322
## 8859 I63231
## 8860 I63232
## 8861 I63233
## 8862 I63239
## 8863 I6329
## 8864 I6330
## 8865 I63311
## 8866 I63312
## 8867 I63313
## 8868 I63319
## 8869 I63321
## 8870 I63322
## 8871 I63323
## 8872 I63329
## 8873 I63331
## 8874 I63332
## 8875 I63333
## 8876 I63339
## 8877 I63341
## 8878 I63342
## 8879 I63343
## 8880 I63349
## 8881 I6339
## 8882 I6340
## 8883 I63411
## 8884 I63412
## 8885 I63413
## 8886 I63419
## 8887 I63421
## 8888 I63422
## 8889 I63423
## 8890 I63429
## 8891 I63431
## 8892 I63432
## 8893 I63433
## 8894 I63439
## 8895 I63441
## 8896 I63442
## 8897 I63443
## 8898 I63449
## 8899 I6349
## 8900 I6350
## 8901 I63511
## 8902 I63512
## 8903 I63513
## 8904 I63519
## 8905 I63521
## 8906 I63522
## 8907 I63523
## 8908 I63529
## 8909 I63531
## 8910 I63532
## 8911 I63533
## 8912 I63539
## 8913 I63541
## 8914 I63542
## 8915 I63543
## 8916 I63549
## 8917 I6359
## 8918 I636
## 8919 I6381
## 8920 I6389
## 8921 I639
## 8922 I6501
## 8923 I6502
## 8924 I6503
## 8925 I6509
## 8926 I651
## 8927 I6521
## 8928 I6522
## 8929 I6523
## 8930 I6529
## 8931 I658
## 8932 I659
## 8933 I6601
## 8934 I6602
## 8935 I6603
## 8936 I6609
## 8937 I6611
## 8938 I6612
## 8939 I6613
## 8940 I6619
## 8941 I6621
## 8942 I6622
## 8943 I6623
## 8944 I6629
## 8945 I663
## 8946 I668
## 8947 I669
## 8948 I670
## 8949 I671
## 8950 I672
## 8951 I673
## 8952 I674
## 8953 I675
## 8954 I676
## 8955 I677
## 8956 I6781
## 8957 I6782
## 8958 I6783
## 8959 I67841
## 8960 I67848
## 8961 I67850
## 8962 I67858
## 8963 I6789
## 8964 I679
## 8965 I680
## 8966 I682
## 8967 I688
## 8968 I6900
## 8969 I69010
## 8970 I69011
## 8971 I69012
## 8972 I69013
## 8973 I69014
## 8974 I69015
## 8975 I69018
## 8976 I69019
## 8977 I69020
## 8978 I69021
## 8979 I69022
## 8980 I69023
## 8981 I69028
## 8982 I69031
## 8983 I69032
## 8984 I69033
## 8985 I69034
## 8986 I69039
## 8987 I69041
## 8988 I69042
## 8989 I69043
## 8990 I69044
## 8991 I69049
## 8992 I69051
## 8993 I69052
## 8994 I69053
## 8995 I69054
## 8996 I69059
## 8997 I69061
## 8998 I69062
## 8999 I69063
## 9000 I69064
## 9001 I69065
## 9002 I69069
## 9003 I69090
## 9004 I69091
## 9005 I69092
## 9006 I69093
## 9007 I69098
## 9008 I6910
## 9009 I69110
## 9010 I69111
## 9011 I69112
## 9012 I69113
## 9013 I69114
## 9014 I69115
## 9015 I69118
## 9016 I69119
## 9017 I69120
## 9018 I69121
## 9019 I69122
## 9020 I69123
## 9021 I69128
## 9022 I69131
## 9023 I69132
## 9024 I69133
## 9025 I69134
## 9026 I69139
## 9027 I69141
## 9028 I69142
## 9029 I69143
## 9030 I69144
## 9031 I69149
## 9032 I69151
## 9033 I69152
## 9034 I69153
## 9035 I69154
## 9036 I69159
## 9037 I69161
## 9038 I69162
## 9039 I69163
## 9040 I69164
## 9041 I69165
## 9042 I69169
## 9043 I69190
## 9044 I69191
## 9045 I69192
## 9046 I69193
## 9047 I69198
## 9048 I6920
## 9049 I69210
## 9050 I69211
## 9051 I69212
## 9052 I69213
## 9053 I69214
## 9054 I69215
## 9055 I69218
## 9056 I69219
## 9057 I69220
## 9058 I69221
## 9059 I69222
## 9060 I69223
## 9061 I69228
## 9062 I69231
## 9063 I69232
## 9064 I69233
## 9065 I69234
## 9066 I69239
## 9067 I69241
## 9068 I69242
## 9069 I69243
## 9070 I69244
## 9071 I69249
## 9072 I69251
## 9073 I69252
## 9074 I69253
## 9075 I69254
## 9076 I69259
## 9077 I69261
## 9078 I69262
## 9079 I69263
## 9080 I69264
## 9081 I69265
## 9082 I69269
## 9083 I69290
## 9084 I69291
## 9085 I69292
## 9086 I69293
## 9087 I69298
## 9088 I6930
## 9089 I69310
## 9090 I69311
## 9091 I69312
## 9092 I69313
## 9093 I69314
## 9094 I69315
## 9095 I69318
## 9096 I69319
## 9097 I69320
## 9098 I69321
## 9099 I69322
## 9100 I69323
## 9101 I69328
## 9102 I69331
## 9103 I69332
## 9104 I69333
## 9105 I69334
## 9106 I69339
## 9107 I69341
## 9108 I69342
## 9109 I69343
## 9110 I69344
## 9111 I69349
## 9112 I69351
## 9113 I69352
## 9114 I69353
## 9115 I69354
## 9116 I69359
## 9117 I69361
## 9118 I69362
## 9119 I69363
## 9120 I69364
## 9121 I69365
## 9122 I69369
## 9123 I69390
## 9124 I69391
## 9125 I69392
## 9126 I69393
## 9127 I69398
## 9128 I6980
## 9129 I69810
## 9130 I69811
## 9131 I69812
## 9132 I69813
## 9133 I69814
## 9134 I69815
## 9135 I69818
## 9136 I69819
## 9137 I69820
## 9138 I69821
## 9139 I69822
## 9140 I69823
## 9141 I69828
## 9142 I69831
## 9143 I69832
## 9144 I69833
## 9145 I69834
## 9146 I69839
## 9147 I69841
## 9148 I69842
## 9149 I69843
## 9150 I69844
## 9151 I69849
## 9152 I69851
## 9153 I69852
## 9154 I69853
## 9155 I69854
## 9156 I69859
## 9157 I69861
## 9158 I69862
## 9159 I69863
## 9160 I69864
## 9161 I69865
## 9162 I69869
## 9163 I69890
## 9164 I69891
## 9165 I69892
## 9166 I69893
## 9167 I69898
## 9168 I6990
## 9169 I69910
## 9170 I69911
## 9171 I69912
## 9172 I69913
## 9173 I69914
## 9174 I69915
## 9175 I69918
## 9176 I69919
## 9177 I69920
## 9178 I69921
## 9179 I69922
## 9180 I69923
## 9181 I69928
## 9182 I69931
## 9183 I69932
## 9184 I69933
## 9185 I69934
## 9186 I69939
## 9187 I69941
## 9188 I69942
## 9189 I69943
## 9190 I69944
## 9191 I69949
## 9192 I69951
## 9193 I69952
## 9194 I69953
## 9195 I69954
## 9196 I69959
## 9197 I69961
## 9198 I69962
## 9199 I69963
## 9200 I69964
## 9201 I69965
## 9202 I69969
## 9203 I69990
## 9204 I69991
## 9205 I69992
## 9206 I69993
## 9207 I69998
## 9208 I700
## 9209 I701
## 9210 I70201
## 9211 I70202
## 9212 I70203
## 9213 I70208
## 9214 I70209
## 9215 I70211
## 9216 I70212
## 9217 I70213
## 9218 I70218
## 9219 I70219
## 9220 I70221
## 9221 I70222
## 9222 I70223
## 9223 I70228
## 9224 I70229
## 9225 I70231
## 9226 I70232
## 9227 I70233
## 9228 I70234
## 9229 I70235
## 9230 I70238
## 9231 I70239
## 9232 I70241
## 9233 I70242
## 9234 I70243
## 9235 I70244
## 9236 I70245
## 9237 I70248
## 9238 I70249
## 9239 I7025
## 9240 I70261
## 9241 I70262
## 9242 I70263
## 9243 I70268
## 9244 I70269
## 9245 I70291
## 9246 I70292
## 9247 I70293
## 9248 I70298
## 9249 I70299
## 9250 I70301
## 9251 I70302
## 9252 I70303
## 9253 I70308
## 9254 I70309
## 9255 I70311
## 9256 I70312
## 9257 I70313
## 9258 I70318
## 9259 I70319
## 9260 I70321
## 9261 I70322
## 9262 I70323
## 9263 I70328
## 9264 I70329
## 9265 I70331
## 9266 I70332
## 9267 I70333
## 9268 I70334
## 9269 I70335
## 9270 I70338
## 9271 I70339
## 9272 I70341
## 9273 I70342
## 9274 I70343
## 9275 I70344
## 9276 I70345
## 9277 I70348
## 9278 I70349
## 9279 I7035
## 9280 I70361
## 9281 I70362
## 9282 I70363
## 9283 I70368
## 9284 I70369
## 9285 I70391
## 9286 I70392
## 9287 I70393
## 9288 I70398
## 9289 I70399
## 9290 I70401
## 9291 I70402
## 9292 I70403
## 9293 I70408
## 9294 I70409
## 9295 I70411
## 9296 I70412
## 9297 I70413
## 9298 I70418
## 9299 I70419
## 9300 I70421
## 9301 I70422
## 9302 I70423
## 9303 I70428
## 9304 I70429
## 9305 I70431
## 9306 I70432
## 9307 I70433
## 9308 I70434
## 9309 I70435
## 9310 I70438
## 9311 I70439
## 9312 I70441
## 9313 I70442
## 9314 I70443
## 9315 I70444
## 9316 I70445
## 9317 I70448
## 9318 I70449
## 9319 I7045
## 9320 I70461
## 9321 I70462
## 9322 I70463
## 9323 I70468
## 9324 I70469
## 9325 I70491
## 9326 I70492
## 9327 I70493
## 9328 I70498
## 9329 I70499
## 9330 I70501
## 9331 I70502
## 9332 I70503
## 9333 I70508
## 9334 I70509
## 9335 I70511
## 9336 I70512
## 9337 I70513
## 9338 I70518
## 9339 I70519
## 9340 I70521
## 9341 I70522
## 9342 I70523
## 9343 I70528
## 9344 I70529
## 9345 I70531
## 9346 I70532
## 9347 I70533
## 9348 I70534
## 9349 I70535
## 9350 I70538
## 9351 I70539
## 9352 I70541
## 9353 I70542
## 9354 I70543
## 9355 I70544
## 9356 I70545
## 9357 I70548
## 9358 I70549
## 9359 I7055
## 9360 I70561
## 9361 I70562
## 9362 I70563
## 9363 I70568
## 9364 I70569
## 9365 I70591
## 9366 I70592
## 9367 I70593
## 9368 I70598
## 9369 I70599
## 9370 I70601
## 9371 I70602
## 9372 I70603
## 9373 I70608
## 9374 I70609
## 9375 I70611
## 9376 I70612
## 9377 I70613
## 9378 I70618
## 9379 I70619
## 9380 I70621
## 9381 I70622
## 9382 I70623
## 9383 I70628
## 9384 I70629
## 9385 I70631
## 9386 I70632
## 9387 I70633
## 9388 I70634
## 9389 I70635
## 9390 I70638
## 9391 I70639
## 9392 I70641
## 9393 I70642
## 9394 I70643
## 9395 I70644
## 9396 I70645
## 9397 I70648
## 9398 I70649
## 9399 I7065
## 9400 I70661
## 9401 I70662
## 9402 I70663
## 9403 I70668
## 9404 I70669
## 9405 I70691
## 9406 I70692
## 9407 I70693
## 9408 I70698
## 9409 I70699
## 9410 I70701
## 9411 I70702
## 9412 I70703
## 9413 I70708
## 9414 I70709
## 9415 I70711
## 9416 I70712
## 9417 I70713
## 9418 I70718
## 9419 I70719
## 9420 I70721
## 9421 I70722
## 9422 I70723
## 9423 I70728
## 9424 I70729
## 9425 I70731
## 9426 I70732
## 9427 I70733
## 9428 I70734
## 9429 I70735
## 9430 I70738
## 9431 I70739
## 9432 I70741
## 9433 I70742
## 9434 I70743
## 9435 I70744
## 9436 I70745
## 9437 I70748
## 9438 I70749
## 9439 I7075
## 9440 I70761
## 9441 I70762
## 9442 I70763
## 9443 I70768
## 9444 I70769
## 9445 I70791
## 9446 I70792
## 9447 I70793
## 9448 I70798
## 9449 I70799
## 9450 I708
## 9451 I7090
## 9452 I7091
## 9453 I7092
## 9454 I7100
## 9455 I7101
## 9456 I7102
## 9457 I7103
## 9458 I711
## 9459 I712
## 9460 I713
## 9461 I714
## 9462 I715
## 9463 I716
## 9464 I718
## 9465 I719
## 9466 I720
## 9467 I721
## 9468 I722
## 9469 I723
## 9470 I724
## 9471 I725
## 9472 I726
## 9473 I728
## 9474 I729
## 9475 I7300
## 9476 I7301
## 9477 I731
## 9478 I7381
## 9479 I7389
## 9480 I739
## 9481 I7401
## 9482 I7409
## 9483 I7410
## 9484 I7411
## 9485 I7419
## 9486 I742
## 9487 I743
## 9488 I744
## 9489 I745
## 9490 I748
## 9491 I749
## 9492 I75011
## 9493 I75012
## 9494 I75013
## 9495 I75019
## 9496 I75021
## 9497 I75022
## 9498 I75023
## 9499 I75029
## 9500 I7581
## 9501 I7589
## 9502 I76
## 9503 I770
## 9504 I771
## 9505 I772
## 9506 I773
## 9507 I774
## 9508 I775
## 9509 I776
## 9510 I7770
## 9511 I7771
## 9512 I7772
## 9513 I7773
## 9514 I7774
## 9515 I7775
## 9516 I7776
## 9517 I7777
## 9518 I7779
## 9519 I77810
## 9520 I77811
## 9521 I77812
## 9522 I77819
## 9523 I7789
## 9524 I779
## 9525 I780
## 9526 I781
## 9527 I788
## 9528 I789
## 9529 I790
## 9530 I791
## 9531 I798
## 9532 I8000
## 9533 I8001
## 9534 I8002
## 9535 I8003
## 9536 I8010
## 9537 I8011
## 9538 I8012
## 9539 I8013
## 9540 I80201
## 9541 I80202
## 9542 I80203
## 9543 I80209
## 9544 I80211
## 9545 I80212
## 9546 I80213
## 9547 I80219
## 9548 I80221
## 9549 I80222
## 9550 I80223
## 9551 I80229
## 9552 I80231
## 9553 I80232
## 9554 I80233
## 9555 I80239
## 9556 I80241
## 9557 I80242
## 9558 I80243
## 9559 I80249
## 9560 I80251
## 9561 I80252
## 9562 I80253
## 9563 I80259
## 9564 I80291
## 9565 I80292
## 9566 I80293
## 9567 I80299
## 9568 I803
## 9569 I808
## 9570 I809
## 9571 I81
## 9572 I820
## 9573 I821
## 9574 I82210
## 9575 I82211
## 9576 I82220
## 9577 I82221
## 9578 I82290
## 9579 I82291
## 9580 I823
## 9581 I82401
## 9582 I82402
## 9583 I82403
## 9584 I82409
## 9585 I82411
## 9586 I82412
## 9587 I82413
## 9588 I82419
## 9589 I82421
## 9590 I82422
## 9591 I82423
## 9592 I82429
## 9593 I82431
## 9594 I82432
## 9595 I82433
## 9596 I82439
## 9597 I82441
## 9598 I82442
## 9599 I82443
## 9600 I82449
## 9601 I82451
## 9602 I82452
## 9603 I82453
## 9604 I82459
## 9605 I82461
## 9606 I82462
## 9607 I82463
## 9608 I82469
## 9609 I82491
## 9610 I82492
## 9611 I82493
## 9612 I82499
## 9613 I824Y1
## 9614 I824Y2
## 9615 I824Y3
## 9616 I824Y9
## 9617 I824Z1
## 9618 I824Z2
## 9619 I824Z3
## 9620 I824Z9
## 9621 I82501
## 9622 I82502
## 9623 I82503
## 9624 I82509
## 9625 I82511
## 9626 I82512
## 9627 I82513
## 9628 I82519
## 9629 I82521
## 9630 I82522
## 9631 I82523
## 9632 I82529
## 9633 I82531
## 9634 I82532
## 9635 I82533
## 9636 I82539
## 9637 I82541
## 9638 I82542
## 9639 I82543
## 9640 I82549
## 9641 I82551
## 9642 I82552
## 9643 I82553
## 9644 I82559
## 9645 I82561
## 9646 I82562
## 9647 I82563
## 9648 I82569
## 9649 I82591
## 9650 I82592
## 9651 I82593
## 9652 I82599
## 9653 I825Y1
## 9654 I825Y2
## 9655 I825Y3
## 9656 I825Y9
## 9657 I825Z1
## 9658 I825Z2
## 9659 I825Z3
## 9660 I825Z9
## 9661 I82601
## 9662 I82602
## 9663 I82603
## 9664 I82609
## 9665 I82611
## 9666 I82612
## 9667 I82613
## 9668 I82619
## 9669 I82621
## 9670 I82622
## 9671 I82623
## 9672 I82629
## 9673 I82701
## 9674 I82702
## 9675 I82703
## 9676 I82709
## 9677 I82711
## 9678 I82712
## 9679 I82713
## 9680 I82719
## 9681 I82721
## 9682 I82722
## 9683 I82723
## 9684 I82729
## 9685 I82A11
## 9686 I82A12
## 9687 I82A13
## 9688 I82A19
## 9689 I82A21
## 9690 I82A22
## 9691 I82A23
## 9692 I82A29
## 9693 I82B11
## 9694 I82B12
## 9695 I82B13
## 9696 I82B19
## 9697 I82B21
## 9698 I82B22
## 9699 I82B23
## 9700 I82B29
## 9701 I82C11
## 9702 I82C12
## 9703 I82C13
## 9704 I82C19
## 9705 I82C21
## 9706 I82C22
## 9707 I82C23
## 9708 I82C29
## 9709 I82811
## 9710 I82812
## 9711 I82813
## 9712 I82819
## 9713 I82890
## 9714 I82891
## 9715 I8290
## 9716 I8291
## 9717 I83001
## 9718 I83002
## 9719 I83003
## 9720 I83004
## 9721 I83005
## 9722 I83008
## 9723 I83009
## 9724 I83011
## 9725 I83012
## 9726 I83013
## 9727 I83014
## 9728 I83015
## 9729 I83018
## 9730 I83019
## 9731 I83021
## 9732 I83022
## 9733 I83023
## 9734 I83024
## 9735 I83025
## 9736 I83028
## 9737 I83029
## 9738 I8310
## 9739 I8311
## 9740 I8312
## 9741 I83201
## 9742 I83202
## 9743 I83203
## 9744 I83204
## 9745 I83205
## 9746 I83208
## 9747 I83209
## 9748 I83211
## 9749 I83212
## 9750 I83213
## 9751 I83214
## 9752 I83215
## 9753 I83218
## 9754 I83219
## 9755 I83221
## 9756 I83222
## 9757 I83223
## 9758 I83224
## 9759 I83225
## 9760 I83228
## 9761 I83229
## 9762 I83811
## 9763 I83812
## 9764 I83813
## 9765 I83819
## 9766 I83891
## 9767 I83892
## 9768 I83893
## 9769 I83899
## 9770 I8390
## 9771 I8391
## 9772 I8392
## 9773 I8393
## 9774 I8500
## 9775 I8501
## 9776 I8510
## 9777 I8511
## 9778 I860
## 9779 I861
## 9780 I862
## 9781 I863
## 9782 I864
## 9783 I868
## 9784 I87001
## 9785 I87002
## 9786 I87003
## 9787 I87009
## 9788 I87011
## 9789 I87012
## 9790 I87013
## 9791 I87019
## 9792 I87021
## 9793 I87022
## 9794 I87023
## 9795 I87029
## 9796 I87031
## 9797 I87032
## 9798 I87033
## 9799 I87039
## 9800 I87091
## 9801 I87092
## 9802 I87093
## 9803 I87099
## 9804 I871
## 9805 I872
## 9806 I87301
## 9807 I87302
## 9808 I87303
## 9809 I87309
## 9810 I87311
## 9811 I87312
## 9812 I87313
## 9813 I87319
## 9814 I87321
## 9815 I87322
## 9816 I87323
## 9817 I87329
## 9818 I87331
## 9819 I87332
## 9820 I87333
## 9821 I87339
## 9822 I87391
## 9823 I87392
## 9824 I87393
## 9825 I87399
## 9826 I878
## 9827 I879
## 9828 I880
## 9829 I881
## 9830 I888
## 9831 I889
## 9832 I890
## 9833 I891
## 9834 I898
## 9835 I899
## 9836 I950
## 9837 I951
## 9838 I952
## 9839 I953
## 9840 I9581
## 9841 I9589
## 9842 I959
## 9843 I96
## 9844 I970
## 9845 I97110
## 9846 I97111
## 9847 I97120
## 9848 I97121
## 9849 I97130
## 9850 I97131
## 9851 I97190
## 9852 I97191
## 9853 I972
## 9854 I973
## 9855 I97410
## 9856 I97411
## 9857 I97418
## 9858 I9742
## 9859 I9751
## 9860 I9752
## 9861 I97610
## 9862 I97611
## 9863 I97618
## 9864 I97620
## 9865 I97621
## 9866 I97622
## 9867 I97630
## 9868 I97631
## 9869 I97638
## 9870 I97640
## 9871 I97641
## 9872 I97648
## 9873 I97710
## 9874 I97711
## 9875 I97790
## 9876 I97791
## 9877 I97810
## 9878 I97811
## 9879 I97820
## 9880 I97821
## 9881 I9788
## 9882 I9789
## 9883 I998
## 9884 I999
## 9885 J00
## 9886 J0100
## 9887 J0101
## 9888 J0110
## 9889 J0111
## 9890 J0120
## 9891 J0121
## 9892 J0130
## 9893 J0131
## 9894 J0140
## 9895 J0141
## 9896 J0180
## 9897 J0181
## 9898 J0190
## 9899 J0191
## 9900 J020
## 9901 J028
## 9902 J029
## 9903 J0300
## 9904 J0301
## 9905 J0380
## 9906 J0381
## 9907 J0390
## 9908 J0391
## 9909 J040
## 9910 J0410
## 9911 J0411
## 9912 J042
## 9913 J0430
## 9914 J0431
## 9915 J050
## 9916 J0510
## 9917 J0511
## 9918 J060
## 9919 J069
## 9920 J09X1
## 9921 J09X2
## 9922 J09X3
## 9923 J09X9
## 9924 J1000
## 9925 J1001
## 9926 J1008
## 9927 J101
## 9928 J102
## 9929 J1081
## 9930 J1082
## 9931 J1083
## 9932 J1089
## 9933 J1100
## 9934 J1108
## 9935 J111
## 9936 J112
## 9937 J1181
## 9938 J1182
## 9939 J1183
## 9940 J1189
## 9941 J120
## 9942 J121
## 9943 J122
## 9944 J123
## 9945 J1281
## 9946 J1289
## 9947 J129
## 9948 J13
## 9949 J14
## 9950 J150
## 9951 J151
## 9952 J1520
## 9953 J15211
## 9954 J15212
## 9955 J1529
## 9956 J153
## 9957 J154
## 9958 J155
## 9959 J156
## 9960 J157
## 9961 J158
## 9962 J159
## 9963 J160
## 9964 J168
## 9965 J17
## 9966 J180
## 9967 J181
## 9968 J182
## 9969 J188
## 9970 J189
## 9971 J200
## 9972 J201
## 9973 J202
## 9974 J203
## 9975 J204
## 9976 J205
## 9977 J206
## 9978 J207
## 9979 J208
## 9980 J209
## 9981 J210
## 9982 J211
## 9983 J218
## 9984 J219
## 9985 J22
## 9986 J300
## 9987 J301
## 9988 J302
## 9989 J305
## 9990 J3081
## 9991 J3089
## 9992 J309
## 9993 J310
## 9994 J311
## 9995 J312
## 9996 J320
## 9997 J321
## 9998 J322
## 9999 J323
## 10000 J324
## 10001 J328
## 10002 J329
## 10003 J330
## 10004 J331
## 10005 J338
## 10006 J339
## 10007 J340
## 10008 J341
## 10009 J342
## 10010 J343
## 10011 J3481
## 10012 J3489
## 10013 J349
## 10014 J3501
## 10015 J3502
## 10016 J3503
## 10017 J351
## 10018 J352
## 10019 J353
## 10020 J358
## 10021 J359
## 10022 J36
## 10023 J370
## 10024 J371
## 10025 J3800
## 10026 J3801
## 10027 J3802
## 10028 J381
## 10029 J382
## 10030 J383
## 10031 J384
## 10032 J385
## 10033 J386
## 10034 J387
## 10035 J390
## 10036 J391
## 10037 J392
## 10038 J393
## 10039 J398
## 10040 J399
## 10041 J40
## 10042 J410
## 10043 J411
## 10044 J418
## 10045 J42
## 10046 J430
## 10047 J431
## 10048 J432
## 10049 J438
## 10050 J439
## 10051 J440
## 10052 J441
## 10053 J449
## 10054 J4520
## 10055 J4521
## 10056 J4522
## 10057 J4530
## 10058 J4531
## 10059 J4532
## 10060 J4540
## 10061 J4541
## 10062 J4542
## 10063 J4550
## 10064 J4551
## 10065 J4552
## 10066 J45901
## 10067 J45902
## 10068 J45909
## 10069 J45990
## 10070 J45991
## 10071 J45998
## 10072 J470
## 10073 J471
## 10074 J479
## 10075 J60
## 10076 J61
## 10077 J620
## 10078 J628
## 10079 J630
## 10080 J631
## 10081 J632
## 10082 J633
## 10083 J634
## 10084 J635
## 10085 J636
## 10086 J64
## 10087 J65
## 10088 J660
## 10089 J661
## 10090 J662
## 10091 J668
## 10092 J670
## 10093 J671
## 10094 J672
## 10095 J673
## 10096 J674
## 10097 J675
## 10098 J676
## 10099 J677
## 10100 J678
## 10101 J679
## 10102 J680
## 10103 J681
## 10104 J682
## 10105 J683
## 10106 J684
## 10107 J688
## 10108 J689
## 10109 J690
## 10110 J691
## 10111 J698
## 10112 J700
## 10113 J701
## 10114 J702
## 10115 J703
## 10116 J704
## 10117 J705
## 10118 J708
## 10119 J709
## 10120 J80
## 10121 J810
## 10122 J811
## 10123 J82
## 10124 J8401
## 10125 J8402
## 10126 J8403
## 10127 J8409
## 10128 J8410
## 10129 J84111
## 10130 J84112
## 10131 J84113
## 10132 J84114
## 10133 J84115
## 10134 J84116
## 10135 J84117
## 10136 J8417
## 10137 J842
## 10138 J8481
## 10139 J8482
## 10140 J8483
## 10141 J84841
## 10142 J84842
## 10143 J84843
## 10144 J84848
## 10145 J8489
## 10146 J849
## 10147 J850
## 10148 J851
## 10149 J852
## 10150 J853
## 10151 J860
## 10152 J869
## 10153 J90
## 10154 J910
## 10155 J918
## 10156 J920
## 10157 J929
## 10158 J930
## 10159 J9311
## 10160 J9312
## 10161 J9381
## 10162 J9382
## 10163 J9383
## 10164 J939
## 10165 J940
## 10166 J941
## 10167 J942
## 10168 J948
## 10169 J949
## 10170 J9500
## 10171 J9501
## 10172 J9502
## 10173 J9503
## 10174 J9504
## 10175 J9509
## 10176 J951
## 10177 J952
## 10178 J953
## 10179 J954
## 10180 J955
## 10181 J9561
## 10182 J9562
## 10183 J9571
## 10184 J9572
## 10185 J95811
## 10186 J95812
## 10187 J95821
## 10188 J95822
## 10189 J95830
## 10190 J95831
## 10191 J9584
## 10192 J95850
## 10193 J95851
## 10194 J95859
## 10195 J95860
## 10196 J95861
## 10197 J95862
## 10198 J95863
## 10199 J9588
## 10200 J9589
## 10201 J9600
## 10202 J9601
## 10203 J9602
## 10204 J9610
## 10205 J9611
## 10206 J9612
## 10207 J9620
## 10208 J9621
## 10209 J9622
## 10210 J9690
## 10211 J9691
## 10212 J9692
## 10213 J9801
## 10214 J9809
## 10215 J9811
## 10216 J9819
## 10217 J982
## 10218 J983
## 10219 J984
## 10220 J9851
## 10221 J9859
## 10222 J986
## 10223 J988
## 10224 J989
## 10225 J99
## 10226 K000
## 10227 K001
## 10228 K002
## 10229 K003
## 10230 K004
## 10231 K005
## 10232 K006
## 10233 K007
## 10234 K008
## 10235 K009
## 10236 K010
## 10237 K011
## 10238 K023
## 10239 K0251
## 10240 K0252
## 10241 K0253
## 10242 K0261
## 10243 K0262
## 10244 K0263
## 10245 K027
## 10246 K029
## 10247 K030
## 10248 K031
## 10249 K032
## 10250 K033
## 10251 K034
## 10252 K035
## 10253 K036
## 10254 K037
## 10255 K0381
## 10256 K0389
## 10257 K039
## 10258 K0401
## 10259 K0402
## 10260 K041
## 10261 K042
## 10262 K043
## 10263 K044
## 10264 K045
## 10265 K046
## 10266 K047
## 10267 K048
## 10268 K0490
## 10269 K0499
## 10270 K0500
## 10271 K0501
## 10272 K0510
## 10273 K0511
## 10274 K0520
## 10275 K05211
## 10276 K05212
## 10277 K05213
## 10278 K05219
## 10279 K05221
## 10280 K05222
## 10281 K05223
## 10282 K05229
## 10283 K0530
## 10284 K05311
## 10285 K05312
## 10286 K05313
## 10287 K05319
## 10288 K05321
## 10289 K05322
## 10290 K05323
## 10291 K05329
## 10292 K054
## 10293 K055
## 10294 K056
## 10295 K06010
## 10296 K06011
## 10297 K06012
## 10298 K06013
## 10299 K06020
## 10300 K06021
## 10301 K06022
## 10302 K06023
## 10303 K061
## 10304 K062
## 10305 K063
## 10306 K068
## 10307 K069
## 10308 K080
## 10309 K08101
## 10310 K08102
## 10311 K08103
## 10312 K08104
## 10313 K08109
## 10314 K08111
## 10315 K08112
## 10316 K08113
## 10317 K08114
## 10318 K08119
## 10319 K08121
## 10320 K08122
## 10321 K08123
## 10322 K08124
## 10323 K08129
## 10324 K08131
## 10325 K08132
## 10326 K08133
## 10327 K08134
## 10328 K08139
## 10329 K08191
## 10330 K08192
## 10331 K08193
## 10332 K08194
## 10333 K08199
## 10334 K0820
## 10335 K0821
## 10336 K0822
## 10337 K0823
## 10338 K0824
## 10339 K0825
## 10340 K0826
## 10341 K083
## 10342 K08401
## 10343 K08402
## 10344 K08403
## 10345 K08404
## 10346 K08409
## 10347 K08411
## 10348 K08412
## 10349 K08413
## 10350 K08414
## 10351 K08419
## 10352 K08421
## 10353 K08422
## 10354 K08423
## 10355 K08424
## 10356 K08429
## 10357 K08431
## 10358 K08432
## 10359 K08433
## 10360 K08434
## 10361 K08439
## 10362 K08491
## 10363 K08492
## 10364 K08493
## 10365 K08494
## 10366 K08499
## 10367 K0850
## 10368 K0851
## 10369 K0852
## 10370 K08530
## 10371 K08531
## 10372 K08539
## 10373 K0854
## 10374 K0855
## 10375 K0856
## 10376 K0859
## 10377 K0881
## 10378 K0882
## 10379 K0889
## 10380 K089
## 10381 K090
## 10382 K091
## 10383 K098
## 10384 K099
## 10385 K110
## 10386 K111
## 10387 K1120
## 10388 K1121
## 10389 K1122
## 10390 K1123
## 10391 K113
## 10392 K114
## 10393 K115
## 10394 K116
## 10395 K117
## 10396 K118
## 10397 K119
## 10398 K120
## 10399 K121
## 10400 K122
## 10401 K1230
## 10402 K1231
## 10403 K1232
## 10404 K1233
## 10405 K1239
## 10406 K130
## 10407 K131
## 10408 K1321
## 10409 K1322
## 10410 K1323
## 10411 K1324
## 10412 K1329
## 10413 K133
## 10414 K134
## 10415 K135
## 10416 K136
## 10417 K1370
## 10418 K1379
## 10419 K140
## 10420 K141
## 10421 K142
## 10422 K143
## 10423 K144
## 10424 K145
## 10425 K146
## 10426 K148
## 10427 K149
## 10428 K200
## 10429 K208
## 10430 K209
## 10431 K210
## 10432 K219
## 10433 K220
## 10434 K2210
## 10435 K2211
## 10436 K222
## 10437 K223
## 10438 K224
## 10439 K225
## 10440 K226
## 10441 K2270
## 10442 K22710
## 10443 K22711
## 10444 K22719
## 10445 K228
## 10446 K229
## 10447 K23
## 10448 K250
## 10449 K251
## 10450 K252
## 10451 K253
## 10452 K254
## 10453 K255
## 10454 K256
## 10455 K257
## 10456 K259
## 10457 K260
## 10458 K261
## 10459 K262
## 10460 K263
## 10461 K264
## 10462 K265
## 10463 K266
## 10464 K267
## 10465 K269
## 10466 K270
## 10467 K271
## 10468 K272
## 10469 K273
## 10470 K274
## 10471 K275
## 10472 K276
## 10473 K277
## 10474 K279
## 10475 K280
## 10476 K281
## 10477 K282
## 10478 K283
## 10479 K284
## 10480 K285
## 10481 K286
## 10482 K287
## 10483 K289
## 10484 K2900
## 10485 K2901
## 10486 K2920
## 10487 K2921
## 10488 K2930
## 10489 K2931
## 10490 K2940
## 10491 K2941
## 10492 K2950
## 10493 K2951
## 10494 K2960
## 10495 K2961
## 10496 K2970
## 10497 K2971
## 10498 K2980
## 10499 K2981
## 10500 K2990
## 10501 K2991
## 10502 K30
## 10503 K310
## 10504 K311
## 10505 K312
## 10506 K313
## 10507 K314
## 10508 K315
## 10509 K316
## 10510 K317
## 10511 K31811
## 10512 K31819
## 10513 K3182
## 10514 K3183
## 10515 K3184
## 10516 K3189
## 10517 K319
## 10518 K3520
## 10519 K3521
## 10520 K3530
## 10521 K3531
## 10522 K3532
## 10523 K3533
## 10524 K3580
## 10525 K35890
## 10526 K35891
## 10527 K36
## 10528 K37
## 10529 K380
## 10530 K381
## 10531 K382
## 10532 K383
## 10533 K388
## 10534 K389
## 10535 K4000
## 10536 K4001
## 10537 K4010
## 10538 K4011
## 10539 K4020
## 10540 K4021
## 10541 K4030
## 10542 K4031
## 10543 K4040
## 10544 K4041
## 10545 K4090
## 10546 K4091
## 10547 K4100
## 10548 K4101
## 10549 K4110
## 10550 K4111
## 10551 K4120
## 10552 K4121
## 10553 K4130
## 10554 K4131
## 10555 K4140
## 10556 K4141
## 10557 K4190
## 10558 K4191
## 10559 K420
## 10560 K421
## 10561 K429
## 10562 K430
## 10563 K431
## 10564 K432
## 10565 K433
## 10566 K434
## 10567 K435
## 10568 K436
## 10569 K437
## 10570 K439
## 10571 K440
## 10572 K441
## 10573 K449
## 10574 K450
## 10575 K451
## 10576 K458
## 10577 K460
## 10578 K461
## 10579 K469
## 10580 K5000
## 10581 K50011
## 10582 K50012
## 10583 K50013
## 10584 K50014
## 10585 K50018
## 10586 K50019
## 10587 K5010
## 10588 K50111
## 10589 K50112
## 10590 K50113
## 10591 K50114
## 10592 K50118
## 10593 K50119
## 10594 K5080
## 10595 K50811
## 10596 K50812
## 10597 K50813
## 10598 K50814
## 10599 K50818
## 10600 K50819
## 10601 K5090
## 10602 K50911
## 10603 K50912
## 10604 K50913
## 10605 K50914
## 10606 K50918
## 10607 K50919
## 10608 K5100
## 10609 K51011
## 10610 K51012
## 10611 K51013
## 10612 K51014
## 10613 K51018
## 10614 K51019
## 10615 K5120
## 10616 K51211
## 10617 K51212
## 10618 K51213
## 10619 K51214
## 10620 K51218
## 10621 K51219
## 10622 K5130
## 10623 K51311
## 10624 K51312
## 10625 K51313
## 10626 K51314
## 10627 K51318
## 10628 K51319
## 10629 K5140
## 10630 K51411
## 10631 K51412
## 10632 K51413
## 10633 K51414
## 10634 K51418
## 10635 K51419
## 10636 K5150
## 10637 K51511
## 10638 K51512
## 10639 K51513
## 10640 K51514
## 10641 K51518
## 10642 K51519
## 10643 K5180
## 10644 K51811
## 10645 K51812
## 10646 K51813
## 10647 K51814
## 10648 K51818
## 10649 K51819
## 10650 K5190
## 10651 K51911
## 10652 K51912
## 10653 K51913
## 10654 K51914
## 10655 K51918
## 10656 K51919
## 10657 K520
## 10658 K521
## 10659 K5221
## 10660 K5222
## 10661 K5229
## 10662 K523
## 10663 K5281
## 10664 K5282
## 10665 K52831
## 10666 K52832
## 10667 K52838
## 10668 K52839
## 10669 K5289
## 10670 K529
## 10671 K55011
## 10672 K55012
## 10673 K55019
## 10674 K55021
## 10675 K55022
## 10676 K55029
## 10677 K55031
## 10678 K55032
## 10679 K55039
## 10680 K55041
## 10681 K55042
## 10682 K55049
## 10683 K55051
## 10684 K55052
## 10685 K55059
## 10686 K55061
## 10687 K55062
## 10688 K55069
## 10689 K551
## 10690 K5520
## 10691 K5521
## 10692 K5530
## 10693 K5531
## 10694 K5532
## 10695 K5533
## 10696 K558
## 10697 K559
## 10698 K560
## 10699 K561
## 10700 K562
## 10701 K563
## 10702 K5641
## 10703 K5649
## 10704 K5650
## 10705 K5651
## 10706 K5652
## 10707 K56600
## 10708 K56601
## 10709 K56609
## 10710 K56690
## 10711 K56691
## 10712 K56699
## 10713 K567
## 10714 K5700
## 10715 K5701
## 10716 K5710
## 10717 K5711
## 10718 K5712
## 10719 K5713
## 10720 K5720
## 10721 K5721
## 10722 K5730
## 10723 K5731
## 10724 K5732
## 10725 K5733
## 10726 K5740
## 10727 K5741
## 10728 K5750
## 10729 K5751
## 10730 K5752
## 10731 K5753
## 10732 K5780
## 10733 K5781
## 10734 K5790
## 10735 K5791
## 10736 K5792
## 10737 K5793
## 10738 K580
## 10739 K581
## 10740 K582
## 10741 K588
## 10742 K589
## 10743 K5900
## 10744 K5901
## 10745 K5902
## 10746 K5903
## 10747 K5904
## 10748 K5909
## 10749 K591
## 10750 K592
## 10751 K5931
## 10752 K5939
## 10753 K594
## 10754 K598
## 10755 K599
## 10756 K600
## 10757 K601
## 10758 K602
## 10759 K603
## 10760 K604
## 10761 K605
## 10762 K610
## 10763 K611
## 10764 K612
## 10765 K6131
## 10766 K6139
## 10767 K614
## 10768 K615
## 10769 K620
## 10770 K621
## 10771 K622
## 10772 K623
## 10773 K624
## 10774 K625
## 10775 K626
## 10776 K627
## 10777 K6281
## 10778 K6282
## 10779 K6289
## 10780 K629
## 10781 K630
## 10782 K631
## 10783 K632
## 10784 K633
## 10785 K634
## 10786 K635
## 10787 K6381
## 10788 K6389
## 10789 K639
## 10790 K640
## 10791 K641
## 10792 K642
## 10793 K643
## 10794 K644
## 10795 K645
## 10796 K648
## 10797 K649
## 10798 K650
## 10799 K651
## 10800 K652
## 10801 K653
## 10802 K654
## 10803 K658
## 10804 K659
## 10805 K660
## 10806 K661
## 10807 K668
## 10808 K669
## 10809 K67
## 10810 K6811
## 10811 K6812
## 10812 K6819
## 10813 K689
## 10814 K700
## 10815 K7010
## 10816 K7011
## 10817 K702
## 10818 K7030
## 10819 K7031
## 10820 K7040
## 10821 K7041
## 10822 K709
## 10823 K710
## 10824 K7110
## 10825 K7111
## 10826 K712
## 10827 K713
## 10828 K714
## 10829 K7150
## 10830 K7151
## 10831 K716
## 10832 K717
## 10833 K718
## 10834 K719
## 10835 K7200
## 10836 K7201
## 10837 K7210
## 10838 K7211
## 10839 K7290
## 10840 K7291
## 10841 K730
## 10842 K731
## 10843 K732
## 10844 K738
## 10845 K739
## 10846 K740
## 10847 K741
## 10848 K742
## 10849 K743
## 10850 K744
## 10851 K745
## 10852 K7460
## 10853 K7469
## 10854 K750
## 10855 K751
## 10856 K752
## 10857 K753
## 10858 K754
## 10859 K7581
## 10860 K7589
## 10861 K759
## 10862 K760
## 10863 K761
## 10864 K762
## 10865 K763
## 10866 K764
## 10867 K765
## 10868 K766
## 10869 K767
## 10870 K7681
## 10871 K7689
## 10872 K769
## 10873 K77
## 10874 K8000
## 10875 K8001
## 10876 K8010
## 10877 K8011
## 10878 K8012
## 10879 K8013
## 10880 K8018
## 10881 K8019
## 10882 K8020
## 10883 K8021
## 10884 K8030
## 10885 K8031
## 10886 K8032
## 10887 K8033
## 10888 K8034
## 10889 K8035
## 10890 K8036
## 10891 K8037
## 10892 K8040
## 10893 K8041
## 10894 K8042
## 10895 K8043
## 10896 K8044
## 10897 K8045
## 10898 K8046
## 10899 K8047
## 10900 K8050
## 10901 K8051
## 10902 K8060
## 10903 K8061
## 10904 K8062
## 10905 K8063
## 10906 K8064
## 10907 K8065
## 10908 K8066
## 10909 K8067
## 10910 K8070
## 10911 K8071
## 10912 K8080
## 10913 K8081
## 10914 K810
## 10915 K811
## 10916 K812
## 10917 K819
## 10918 K820
## 10919 K821
## 10920 K822
## 10921 K823
## 10922 K824
## 10923 K828
## 10924 K829
## 10925 K82A1
## 10926 K82A2
## 10927 K8301
## 10928 K8309
## 10929 K831
## 10930 K832
## 10931 K833
## 10932 K834
## 10933 K835
## 10934 K838
## 10935 K839
## 10936 K8500
## 10937 K8501
## 10938 K8502
## 10939 K8510
## 10940 K8511
## 10941 K8512
## 10942 K8520
## 10943 K8521
## 10944 K8522
## 10945 K8530
## 10946 K8531
## 10947 K8532
## 10948 K8580
## 10949 K8581
## 10950 K8582
## 10951 K8590
## 10952 K8591
## 10953 K8592
## 10954 K860
## 10955 K861
## 10956 K862
## 10957 K863
## 10958 K8681
## 10959 K8689
## 10960 K869
## 10961 K87
## 10962 K900
## 10963 K901
## 10964 K902
## 10965 K903
## 10966 K9041
## 10967 K9049
## 10968 K9081
## 10969 K9089
## 10970 K909
## 10971 K910
## 10972 K911
## 10973 K912
## 10974 K9130
## 10975 K9131
## 10976 K9132
## 10977 K915
## 10978 K9161
## 10979 K9162
## 10980 K9171
## 10981 K9172
## 10982 K9181
## 10983 K9182
## 10984 K9183
## 10985 K91840
## 10986 K91841
## 10987 K91850
## 10988 K91858
## 10989 K9186
## 10990 K91870
## 10991 K91871
## 10992 K91872
## 10993 K91873
## 10994 K9189
## 10995 K920
## 10996 K921
## 10997 K922
## 10998 K9281
## 10999 K9289
## 11000 K929
## 11001 K9400
## 11002 K9401
## 11003 K9402
## 11004 K9403
## 11005 K9409
## 11006 K9410
## 11007 K9411
## 11008 K9412
## 11009 K9413
## 11010 K9419
## 11011 K9420
## 11012 K9421
## 11013 K9422
## 11014 K9423
## 11015 K9429
## 11016 K9430
## 11017 K9431
## 11018 K9432
## 11019 K9433
## 11020 K9439
## 11021 K9501
## 11022 K9509
## 11023 K9581
## 11024 K9589
## 11025 L00
## 11026 L0100
## 11027 L0101
## 11028 L0102
## 11029 L0103
## 11030 L0109
## 11031 L011
## 11032 L0201
## 11033 L0202
## 11034 L0203
## 11035 L0211
## 11036 L0212
## 11037 L0213
## 11038 L02211
## 11039 L02212
## 11040 L02213
## 11041 L02214
## 11042 L02215
## 11043 L02216
## 11044 L02219
## 11045 L02221
## 11046 L02222
## 11047 L02223
## 11048 L02224
## 11049 L02225
## 11050 L02226
## 11051 L02229
## 11052 L02231
## 11053 L02232
## 11054 L02233
## 11055 L02234
## 11056 L02235
## 11057 L02236
## 11058 L02239
## 11059 L0231
## 11060 L0232
## 11061 L0233
## 11062 L02411
## 11063 L02412
## 11064 L02413
## 11065 L02414
## 11066 L02415
## 11067 L02416
## 11068 L02419
## 11069 L02421
## 11070 L02422
## 11071 L02423
## 11072 L02424
## 11073 L02425
## 11074 L02426
## 11075 L02429
## 11076 L02431
## 11077 L02432
## 11078 L02433
## 11079 L02434
## 11080 L02435
## 11081 L02436
## 11082 L02439
## 11083 L02511
## 11084 L02512
## 11085 L02519
## 11086 L02521
## 11087 L02522
## 11088 L02529
## 11089 L02531
## 11090 L02532
## 11091 L02539
## 11092 L02611
## 11093 L02612
## 11094 L02619
## 11095 L02621
## 11096 L02622
## 11097 L02629
## 11098 L02631
## 11099 L02632
## 11100 L02639
## 11101 L02811
## 11102 L02818
## 11103 L02821
## 11104 L02828
## 11105 L02831
## 11106 L02838
## 11107 L0291
## 11108 L0292
## 11109 L0293
## 11110 L03011
## 11111 L03012
## 11112 L03019
## 11113 L03021
## 11114 L03022
## 11115 L03029
## 11116 L03031
## 11117 L03032
## 11118 L03039
## 11119 L03041
## 11120 L03042
## 11121 L03049
## 11122 L03111
## 11123 L03112
## 11124 L03113
## 11125 L03114
## 11126 L03115
## 11127 L03116
## 11128 L03119
## 11129 L03121
## 11130 L03122
## 11131 L03123
## 11132 L03124
## 11133 L03125
## 11134 L03126
## 11135 L03129
## 11136 L03211
## 11137 L03212
## 11138 L03213
## 11139 L03221
## 11140 L03222
## 11141 L03311
## 11142 L03312
## 11143 L03313
## 11144 L03314
## 11145 L03315
## 11146 L03316
## 11147 L03317
## 11148 L03319
## 11149 L03321
## 11150 L03322
## 11151 L03323
## 11152 L03324
## 11153 L03325
## 11154 L03326
## 11155 L03327
## 11156 L03329
## 11157 L03811
## 11158 L03818
## 11159 L03891
## 11160 L03898
## 11161 L0390
## 11162 L0391
## 11163 L040
## 11164 L041
## 11165 L042
## 11166 L043
## 11167 L048
## 11168 L049
## 11169 L0501
## 11170 L0502
## 11171 L0591
## 11172 L0592
## 11173 L080
## 11174 L081
## 11175 L0881
## 11176 L0882
## 11177 L0889
## 11178 L089
## 11179 L100
## 11180 L101
## 11181 L102
## 11182 L103
## 11183 L104
## 11184 L105
## 11185 L1081
## 11186 L1089
## 11187 L109
## 11188 L110
## 11189 L111
## 11190 L118
## 11191 L119
## 11192 L120
## 11193 L121
## 11194 L122
## 11195 L1230
## 11196 L1231
## 11197 L1235
## 11198 L128
## 11199 L129
## 11200 L130
## 11201 L131
## 11202 L138
## 11203 L139
## 11204 L14
## 11205 L200
## 11206 L2081
## 11207 L2082
## 11208 L2083
## 11209 L2084
## 11210 L2089
## 11211 L209
## 11212 L210
## 11213 L211
## 11214 L218
## 11215 L219
## 11216 L22
## 11217 L230
## 11218 L231
## 11219 L232
## 11220 L233
## 11221 L234
## 11222 L235
## 11223 L236
## 11224 L237
## 11225 L2381
## 11226 L2389
## 11227 L239
## 11228 L240
## 11229 L241
## 11230 L242
## 11231 L243
## 11232 L244
## 11233 L245
## 11234 L246
## 11235 L247
## 11236 L2481
## 11237 L2489
## 11238 L249
## 11239 L250
## 11240 L251
## 11241 L252
## 11242 L253
## 11243 L254
## 11244 L255
## 11245 L258
## 11246 L259
## 11247 L26
## 11248 L270
## 11249 L271
## 11250 L272
## 11251 L278
## 11252 L279
## 11253 L280
## 11254 L281
## 11255 L282
## 11256 L290
## 11257 L291
## 11258 L292
## 11259 L293
## 11260 L298
## 11261 L299
## 11262 L300
## 11263 L301
## 11264 L302
## 11265 L303
## 11266 L304
## 11267 L305
## 11268 L308
## 11269 L309
## 11270 L400
## 11271 L401
## 11272 L402
## 11273 L403
## 11274 L404
## 11275 L4050
## 11276 L4051
## 11277 L4052
## 11278 L4053
## 11279 L4054
## 11280 L4059
## 11281 L408
## 11282 L409
## 11283 L410
## 11284 L411
## 11285 L413
## 11286 L414
## 11287 L415
## 11288 L418
## 11289 L419
## 11290 L42
## 11291 L430
## 11292 L431
## 11293 L432
## 11294 L433
## 11295 L438
## 11296 L439
## 11297 L440
## 11298 L441
## 11299 L442
## 11300 L443
## 11301 L444
## 11302 L448
## 11303 L449
## 11304 L45
## 11305 L490
## 11306 L491
## 11307 L492
## 11308 L493
## 11309 L494
## 11310 L495
## 11311 L496
## 11312 L497
## 11313 L498
## 11314 L499
## 11315 L500
## 11316 L501
## 11317 L502
## 11318 L503
## 11319 L504
## 11320 L505
## 11321 L506
## 11322 L508
## 11323 L509
## 11324 L510
## 11325 L511
## 11326 L512
## 11327 L513
## 11328 L518
## 11329 L519
## 11330 L52
## 11331 L530
## 11332 L531
## 11333 L532
## 11334 L533
## 11335 L538
## 11336 L539
## 11337 L54
## 11338 L550
## 11339 L551
## 11340 L552
## 11341 L559
## 11342 L560
## 11343 L561
## 11344 L562
## 11345 L563
## 11346 L564
## 11347 L565
## 11348 L568
## 11349 L569
## 11350 L570
## 11351 L571
## 11352 L572
## 11353 L573
## 11354 L574
## 11355 L575
## 11356 L578
## 11357 L579
## 11358 L580
## 11359 L581
## 11360 L589
## 11361 L590
## 11362 L598
## 11363 L599
## 11364 L600
## 11365 L601
## 11366 L602
## 11367 L603
## 11368 L604
## 11369 L605
## 11370 L608
## 11371 L609
## 11372 L62
## 11373 L630
## 11374 L631
## 11375 L632
## 11376 L638
## 11377 L639
## 11378 L640
## 11379 L648
## 11380 L649
## 11381 L650
## 11382 L651
## 11383 L652
## 11384 L658
## 11385 L659
## 11386 L660
## 11387 L661
## 11388 L662
## 11389 L663
## 11390 L664
## 11391 L668
## 11392 L669
## 11393 L670
## 11394 L671
## 11395 L678
## 11396 L679
## 11397 L680
## 11398 L681
## 11399 L682
## 11400 L683
## 11401 L688
## 11402 L689
## 11403 L700
## 11404 L701
## 11405 L702
## 11406 L703
## 11407 L704
## 11408 L705
## 11409 L708
## 11410 L709
## 11411 L710
## 11412 L711
## 11413 L718
## 11414 L719
## 11415 L720
## 11416 L7211
## 11417 L7212
## 11418 L722
## 11419 L723
## 11420 L728
## 11421 L729
## 11422 L730
## 11423 L731
## 11424 L732
## 11425 L738
## 11426 L739
## 11427 L740
## 11428 L741
## 11429 L742
## 11430 L743
## 11431 L744
## 11432 L74510
## 11433 L74511
## 11434 L74512
## 11435 L74513
## 11436 L74519
## 11437 L7452
## 11438 L748
## 11439 L749
## 11440 L750
## 11441 L751
## 11442 L752
## 11443 L758
## 11444 L759
## 11445 L7601
## 11446 L7602
## 11447 L7611
## 11448 L7612
## 11449 L7621
## 11450 L7622
## 11451 L7631
## 11452 L7632
## 11453 L7633
## 11454 L7634
## 11455 L7681
## 11456 L7682
## 11457 L80
## 11458 L810
## 11459 L811
## 11460 L812
## 11461 L813
## 11462 L814
## 11463 L815
## 11464 L816
## 11465 L817
## 11466 L818
## 11467 L819
## 11468 L820
## 11469 L821
## 11470 L83
## 11471 L84
## 11472 L850
## 11473 L851
## 11474 L852
## 11475 L853
## 11476 L858
## 11477 L859
## 11478 L86
## 11479 L870
## 11480 L871
## 11481 L872
## 11482 L878
## 11483 L879
## 11484 L88
## 11485 L89000
## 11486 L89001
## 11487 L89002
## 11488 L89003
## 11489 L89004
## 11490 L89006
## 11491 L89009
## 11492 L89010
## 11493 L89011
## 11494 L89012
## 11495 L89013
## 11496 L89014
## 11497 L89016
## 11498 L89019
## 11499 L89020
## 11500 L89021
## 11501 L89022
## 11502 L89023
## 11503 L89024
## 11504 L89026
## 11505 L89029
## 11506 L89100
## 11507 L89101
## 11508 L89102
## 11509 L89103
## 11510 L89104
## 11511 L89106
## 11512 L89109
## 11513 L89110
## 11514 L89111
## 11515 L89112
## 11516 L89113
## 11517 L89114
## 11518 L89116
## 11519 L89119
## 11520 L89120
## 11521 L89121
## 11522 L89122
## 11523 L89123
## 11524 L89124
## 11525 L89126
## 11526 L89129
## 11527 L89130
## 11528 L89131
## 11529 L89132
## 11530 L89133
## 11531 L89134
## 11532 L89136
## 11533 L89139
## 11534 L89140
## 11535 L89141
## 11536 L89142
## 11537 L89143
## 11538 L89144
## 11539 L89146
## 11540 L89149
## 11541 L89150
## 11542 L89151
## 11543 L89152
## 11544 L89153
## 11545 L89154
## 11546 L89156
## 11547 L89159
## 11548 L89200
## 11549 L89201
## 11550 L89202
## 11551 L89203
## 11552 L89204
## 11553 L89206
## 11554 L89209
## 11555 L89210
## 11556 L89211
## 11557 L89212
## 11558 L89213
## 11559 L89214
## 11560 L89216
## 11561 L89219
## 11562 L89220
## 11563 L89221
## 11564 L89222
## 11565 L89223
## 11566 L89224
## 11567 L89226
## 11568 L89229
## 11569 L89300
## 11570 L89301
## 11571 L89302
## 11572 L89303
## 11573 L89304
## 11574 L89306
## 11575 L89309
## 11576 L89310
## 11577 L89311
## 11578 L89312
## 11579 L89313
## 11580 L89314
## 11581 L89316
## 11582 L89319
## 11583 L89320
## 11584 L89321
## 11585 L89322
## 11586 L89323
## 11587 L89324
## 11588 L89326
## 11589 L89329
## 11590 L8940
## 11591 L8941
## 11592 L8942
## 11593 L8943
## 11594 L8944
## 11595 L8945
## 11596 L8946
## 11597 L89500
## 11598 L89501
## 11599 L89502
## 11600 L89503
## 11601 L89504
## 11602 L89506
## 11603 L89509
## 11604 L89510
## 11605 L89511
## 11606 L89512
## 11607 L89513
## 11608 L89514
## 11609 L89516
## 11610 L89519
## 11611 L89520
## 11612 L89521
## 11613 L89522
## 11614 L89523
## 11615 L89524
## 11616 L89526
## 11617 L89529
## 11618 L89600
## 11619 L89601
## 11620 L89602
## 11621 L89603
## 11622 L89604
## 11623 L89606
## 11624 L89609
## 11625 L89610
## 11626 L89611
## 11627 L89612
## 11628 L89613
## 11629 L89614
## 11630 L89616
## 11631 L89619
## 11632 L89620
## 11633 L89621
## 11634 L89622
## 11635 L89623
## 11636 L89624
## 11637 L89626
## 11638 L89629
## 11639 L89810
## 11640 L89811
## 11641 L89812
## 11642 L89813
## 11643 L89814
## 11644 L89816
## 11645 L89819
## 11646 L89890
## 11647 L89891
## 11648 L89892
## 11649 L89893
## 11650 L89894
## 11651 L89896
## 11652 L89899
## 11653 L8990
## 11654 L8991
## 11655 L8992
## 11656 L8993
## 11657 L8994
## 11658 L8995
## 11659 L8996
## 11660 L900
## 11661 L901
## 11662 L902
## 11663 L903
## 11664 L904
## 11665 L905
## 11666 L906
## 11667 L908
## 11668 L909
## 11669 L910
## 11670 L918
## 11671 L919
## 11672 L920
## 11673 L921
## 11674 L922
## 11675 L923
## 11676 L928
## 11677 L929
## 11678 L930
## 11679 L931
## 11680 L932
## 11681 L940
## 11682 L941
## 11683 L942
## 11684 L943
## 11685 L944
## 11686 L945
## 11687 L946
## 11688 L948
## 11689 L949
## 11690 L950
## 11691 L951
## 11692 L958
## 11693 L959
## 11694 L97101
## 11695 L97102
## 11696 L97103
## 11697 L97104
## 11698 L97105
## 11699 L97106
## 11700 L97108
## 11701 L97109
## 11702 L97111
## 11703 L97112
## 11704 L97113
## 11705 L97114
## 11706 L97115
## 11707 L97116
## 11708 L97118
## 11709 L97119
## 11710 L97121
## 11711 L97122
## 11712 L97123
## 11713 L97124
## 11714 L97125
## 11715 L97126
## 11716 L97128
## 11717 L97129
## 11718 L97201
## 11719 L97202
## 11720 L97203
## 11721 L97204
## 11722 L97205
## 11723 L97206
## 11724 L97208
## 11725 L97209
## 11726 L97211
## 11727 L97212
## 11728 L97213
## 11729 L97214
## 11730 L97215
## 11731 L97216
## 11732 L97218
## 11733 L97219
## 11734 L97221
## 11735 L97222
## 11736 L97223
## 11737 L97224
## 11738 L97225
## 11739 L97226
## 11740 L97228
## 11741 L97229
## 11742 L97301
## 11743 L97302
## 11744 L97303
## 11745 L97304
## 11746 L97305
## 11747 L97306
## 11748 L97308
## 11749 L97309
## 11750 L97311
## 11751 L97312
## 11752 L97313
## 11753 L97314
## 11754 L97315
## 11755 L97316
## 11756 L97318
## 11757 L97319
## 11758 L97321
## 11759 L97322
## 11760 L97323
## 11761 L97324
## 11762 L97325
## 11763 L97326
## 11764 L97328
## 11765 L97329
## 11766 L97401
## 11767 L97402
## 11768 L97403
## 11769 L97404
## 11770 L97405
## 11771 L97406
## 11772 L97408
## 11773 L97409
## 11774 L97411
## 11775 L97412
## 11776 L97413
## 11777 L97414
## 11778 L97415
## 11779 L97416
## 11780 L97418
## 11781 L97419
## 11782 L97421
## 11783 L97422
## 11784 L97423
## 11785 L97424
## 11786 L97425
## 11787 L97426
## 11788 L97428
## 11789 L97429
## 11790 L97501
## 11791 L97502
## 11792 L97503
## 11793 L97504
## 11794 L97505
## 11795 L97506
## 11796 L97508
## 11797 L97509
## 11798 L97511
## 11799 L97512
## 11800 L97513
## 11801 L97514
## 11802 L97515
## 11803 L97516
## 11804 L97518
## 11805 L97519
## 11806 L97521
## 11807 L97522
## 11808 L97523
## 11809 L97524
## 11810 L97525
## 11811 L97526
## 11812 L97528
## 11813 L97529
## 11814 L97801
## 11815 L97802
## 11816 L97803
## 11817 L97804
## 11818 L97805
## 11819 L97806
## 11820 L97808
## 11821 L97809
## 11822 L97811
## 11823 L97812
## 11824 L97813
## 11825 L97814
## 11826 L97815
## 11827 L97816
## 11828 L97818
## 11829 L97819
## 11830 L97821
## 11831 L97822
## 11832 L97823
## 11833 L97824
## 11834 L97825
## 11835 L97826
## 11836 L97828
## 11837 L97829
## 11838 L97901
## 11839 L97902
## 11840 L97903
## 11841 L97904
## 11842 L97905
## 11843 L97906
## 11844 L97908
## 11845 L97909
## 11846 L97911
## 11847 L97912
## 11848 L97913
## 11849 L97914
## 11850 L97915
## 11851 L97916
## 11852 L97918
## 11853 L97919
## 11854 L97921
## 11855 L97922
## 11856 L97923
## 11857 L97924
## 11858 L97925
## 11859 L97926
## 11860 L97928
## 11861 L97929
## 11862 L980
## 11863 L981
## 11864 L982
## 11865 L983
## 11866 L98411
## 11867 L98412
## 11868 L98413
## 11869 L98414
## 11870 L98415
## 11871 L98416
## 11872 L98418
## 11873 L98419
## 11874 L98421
## 11875 L98422
## 11876 L98423
## 11877 L98424
## 11878 L98425
## 11879 L98426
## 11880 L98428
## 11881 L98429
## 11882 L98491
## 11883 L98492
## 11884 L98493
## 11885 L98494
## 11886 L98495
## 11887 L98496
## 11888 L98498
## 11889 L98499
## 11890 L985
## 11891 L986
## 11892 L987
## 11893 L988
## 11894 L989
## 11895 L99
## 11896 M0000
## 11897 M00011
## 11898 M00012
## 11899 M00019
## 11900 M00021
## 11901 M00022
## 11902 M00029
## 11903 M00031
## 11904 M00032
## 11905 M00039
## 11906 M00041
## 11907 M00042
## 11908 M00049
## 11909 M00051
## 11910 M00052
## 11911 M00059
## 11912 M00061
## 11913 M00062
## 11914 M00069
## 11915 M00071
## 11916 M00072
## 11917 M00079
## 11918 M0008
## 11919 M0009
## 11920 M0010
## 11921 M00111
## 11922 M00112
## 11923 M00119
## 11924 M00121
## 11925 M00122
## 11926 M00129
## 11927 M00131
## 11928 M00132
## 11929 M00139
## 11930 M00141
## 11931 M00142
## 11932 M00149
## 11933 M00151
## 11934 M00152
## 11935 M00159
## 11936 M00161
## 11937 M00162
## 11938 M00169
## 11939 M00171
## 11940 M00172
## 11941 M00179
## 11942 M0018
## 11943 M0019
## 11944 M0020
## 11945 M00211
## 11946 M00212
## 11947 M00219
## 11948 M00221
## 11949 M00222
## 11950 M00229
## 11951 M00231
## 11952 M00232
## 11953 M00239
## 11954 M00241
## 11955 M00242
## 11956 M00249
## 11957 M00251
## 11958 M00252
## 11959 M00259
## 11960 M00261
## 11961 M00262
## 11962 M00269
## 11963 M00271
## 11964 M00272
## 11965 M00279
## 11966 M0028
## 11967 M0029
## 11968 M0080
## 11969 M00811
## 11970 M00812
## 11971 M00819
## 11972 M00821
## 11973 M00822
## 11974 M00829
## 11975 M00831
## 11976 M00832
## 11977 M00839
## 11978 M00841
## 11979 M00842
## 11980 M00849
## 11981 M00851
## 11982 M00852
## 11983 M00859
## 11984 M00861
## 11985 M00862
## 11986 M00869
## 11987 M00871
## 11988 M00872
## 11989 M00879
## 11990 M0088
## 11991 M0089
## 11992 M009
## 11993 M01X0
## 11994 M01X11
## 11995 M01X12
## 11996 M01X19
## 11997 M01X21
## 11998 M01X22
## 11999 M01X29
## 12000 M01X31
## 12001 M01X32
## 12002 M01X39
## 12003 M01X41
## 12004 M01X42
## 12005 M01X49
## 12006 M01X51
## 12007 M01X52
## 12008 M01X59
## 12009 M01X61
## 12010 M01X62
## 12011 M01X69
## 12012 M01X71
## 12013 M01X72
## 12014 M01X79
## 12015 M01X8
## 12016 M01X9
## 12017 M0200
## 12018 M02011
## 12019 M02012
## 12020 M02019
## 12021 M02021
## 12022 M02022
## 12023 M02029
## 12024 M02031
## 12025 M02032
## 12026 M02039
## 12027 M02041
## 12028 M02042
## 12029 M02049
## 12030 M02051
## 12031 M02052
## 12032 M02059
## 12033 M02061
## 12034 M02062
## 12035 M02069
## 12036 M02071
## 12037 M02072
## 12038 M02079
## 12039 M0208
## 12040 M0209
## 12041 M0210
## 12042 M02111
## 12043 M02112
## 12044 M02119
## 12045 M02121
## 12046 M02122
## 12047 M02129
## 12048 M02131
## 12049 M02132
## 12050 M02139
## 12051 M02141
## 12052 M02142
## 12053 M02149
## 12054 M02151
## 12055 M02152
## 12056 M02159
## 12057 M02161
## 12058 M02162
## 12059 M02169
## 12060 M02171
## 12061 M02172
## 12062 M02179
## 12063 M0218
## 12064 M0219
## 12065 M0220
## 12066 M02211
## 12067 M02212
## 12068 M02219
## 12069 M02221
## 12070 M02222
## 12071 M02229
## 12072 M02231
## 12073 M02232
## 12074 M02239
## 12075 M02241
## 12076 M02242
## 12077 M02249
## 12078 M02251
## 12079 M02252
## 12080 M02259
## 12081 M02261
## 12082 M02262
## 12083 M02269
## 12084 M02271
## 12085 M02272
## 12086 M02279
## 12087 M0228
## 12088 M0229
## 12089 M0230
## 12090 M02311
## 12091 M02312
## 12092 M02319
## 12093 M02321
## 12094 M02322
## 12095 M02329
## 12096 M02331
## 12097 M02332
## 12098 M02339
## 12099 M02341
## 12100 M02342
## 12101 M02349
## 12102 M02351
## 12103 M02352
## 12104 M02359
## 12105 M02361
## 12106 M02362
## 12107 M02369
## 12108 M02371
## 12109 M02372
## 12110 M02379
## 12111 M0238
## 12112 M0239
## 12113 M0280
## 12114 M02811
## 12115 M02812
## 12116 M02819
## 12117 M02821
## 12118 M02822
## 12119 M02829
## 12120 M02831
## 12121 M02832
## 12122 M02839
## 12123 M02841
## 12124 M02842
## 12125 M02849
## 12126 M02851
## 12127 M02852
## 12128 M02859
## 12129 M02861
## 12130 M02862
## 12131 M02869
## 12132 M02871
## 12133 M02872
## 12134 M02879
## 12135 M0288
## 12136 M0289
## 12137 M029
## 12138 M041
## 12139 M042
## 12140 M048
## 12141 M049
## 12142 M0500
## 12143 M05011
## 12144 M05012
## 12145 M05019
## 12146 M05021
## 12147 M05022
## 12148 M05029
## 12149 M05031
## 12150 M05032
## 12151 M05039
## 12152 M05041
## 12153 M05042
## 12154 M05049
## 12155 M05051
## 12156 M05052
## 12157 M05059
## 12158 M05061
## 12159 M05062
## 12160 M05069
## 12161 M05071
## 12162 M05072
## 12163 M05079
## 12164 M0509
## 12165 M0510
## 12166 M05111
## 12167 M05112
## 12168 M05119
## 12169 M05121
## 12170 M05122
## 12171 M05129
## 12172 M05131
## 12173 M05132
## 12174 M05139
## 12175 M05141
## 12176 M05142
## 12177 M05149
## 12178 M05151
## 12179 M05152
## 12180 M05159
## 12181 M05161
## 12182 M05162
## 12183 M05169
## 12184 M05171
## 12185 M05172
## 12186 M05179
## 12187 M0519
## 12188 M0520
## 12189 M05211
## 12190 M05212
## 12191 M05219
## 12192 M05221
## 12193 M05222
## 12194 M05229
## 12195 M05231
## 12196 M05232
## 12197 M05239
## 12198 M05241
## 12199 M05242
## 12200 M05249
## 12201 M05251
## 12202 M05252
## 12203 M05259
## 12204 M05261
## 12205 M05262
## 12206 M05269
## 12207 M05271
## 12208 M05272
## 12209 M05279
## 12210 M0529
## 12211 M0530
## 12212 M05311
## 12213 M05312
## 12214 M05319
## 12215 M05321
## 12216 M05322
## 12217 M05329
## 12218 M05331
## 12219 M05332
## 12220 M05339
## 12221 M05341
## 12222 M05342
## 12223 M05349
## 12224 M05351
## 12225 M05352
## 12226 M05359
## 12227 M05361
## 12228 M05362
## 12229 M05369
## 12230 M05371
## 12231 M05372
## 12232 M05379
## 12233 M0539
## 12234 M0540
## 12235 M05411
## 12236 M05412
## 12237 M05419
## 12238 M05421
## 12239 M05422
## 12240 M05429
## 12241 M05431
## 12242 M05432
## 12243 M05439
## 12244 M05441
## 12245 M05442
## 12246 M05449
## 12247 M05451
## 12248 M05452
## 12249 M05459
## 12250 M05461
## 12251 M05462
## 12252 M05469
## 12253 M05471
## 12254 M05472
## 12255 M05479
## 12256 M0549
## 12257 M0550
## 12258 M05511
## 12259 M05512
## 12260 M05519
## 12261 M05521
## 12262 M05522
## 12263 M05529
## 12264 M05531
## 12265 M05532
## 12266 M05539
## 12267 M05541
## 12268 M05542
## 12269 M05549
## 12270 M05551
## 12271 M05552
## 12272 M05559
## 12273 M05561
## 12274 M05562
## 12275 M05569
## 12276 M05571
## 12277 M05572
## 12278 M05579
## 12279 M0559
## 12280 M0560
## 12281 M05611
## 12282 M05612
## 12283 M05619
## 12284 M05621
## 12285 M05622
## 12286 M05629
## 12287 M05631
## 12288 M05632
## 12289 M05639
## 12290 M05641
## 12291 M05642
## 12292 M05649
## 12293 M05651
## 12294 M05652
## 12295 M05659
## 12296 M05661
## 12297 M05662
## 12298 M05669
## 12299 M05671
## 12300 M05672
## 12301 M05679
## 12302 M0569
## 12303 M0570
## 12304 M05711
## 12305 M05712
## 12306 M05719
## 12307 M05721
## 12308 M05722
## 12309 M05729
## 12310 M05731
## 12311 M05732
## 12312 M05739
## 12313 M05741
## 12314 M05742
## 12315 M05749
## 12316 M05751
## 12317 M05752
## 12318 M05759
## 12319 M05761
## 12320 M05762
## 12321 M05769
## 12322 M05771
## 12323 M05772
## 12324 M05779
## 12325 M0579
## 12326 M0580
## 12327 M05811
## 12328 M05812
## 12329 M05819
## 12330 M05821
## 12331 M05822
## 12332 M05829
## 12333 M05831
## 12334 M05832
## 12335 M05839
## 12336 M05841
## 12337 M05842
## 12338 M05849
## 12339 M05851
## 12340 M05852
## 12341 M05859
## 12342 M05861
## 12343 M05862
## 12344 M05869
## 12345 M05871
## 12346 M05872
## 12347 M05879
## 12348 M0589
## 12349 M059
## 12350 M0600
## 12351 M06011
## 12352 M06012
## 12353 M06019
## 12354 M06021
## 12355 M06022
## 12356 M06029
## 12357 M06031
## 12358 M06032
## 12359 M06039
## 12360 M06041
## 12361 M06042
## 12362 M06049
## 12363 M06051
## 12364 M06052
## 12365 M06059
## 12366 M06061
## 12367 M06062
## 12368 M06069
## 12369 M06071
## 12370 M06072
## 12371 M06079
## 12372 M0608
## 12373 M0609
## 12374 M061
## 12375 M0620
## 12376 M06211
## 12377 M06212
## 12378 M06219
## 12379 M06221
## 12380 M06222
## 12381 M06229
## 12382 M06231
## 12383 M06232
## 12384 M06239
## 12385 M06241
## 12386 M06242
## 12387 M06249
## 12388 M06251
## 12389 M06252
## 12390 M06259
## 12391 M06261
## 12392 M06262
## 12393 M06269
## 12394 M06271
## 12395 M06272
## 12396 M06279
## 12397 M0628
## 12398 M0629
## 12399 M0630
## 12400 M06311
## 12401 M06312
## 12402 M06319
## 12403 M06321
## 12404 M06322
## 12405 M06329
## 12406 M06331
## 12407 M06332
## 12408 M06339
## 12409 M06341
## 12410 M06342
## 12411 M06349
## 12412 M06351
## 12413 M06352
## 12414 M06359
## 12415 M06361
## 12416 M06362
## 12417 M06369
## 12418 M06371
## 12419 M06372
## 12420 M06379
## 12421 M0638
## 12422 M0639
## 12423 M064
## 12424 M0680
## 12425 M06811
## 12426 M06812
## 12427 M06819
## 12428 M06821
## 12429 M06822
## 12430 M06829
## 12431 M06831
## 12432 M06832
## 12433 M06839
## 12434 M06841
## 12435 M06842
## 12436 M06849
## 12437 M06851
## 12438 M06852
## 12439 M06859
## 12440 M06861
## 12441 M06862
## 12442 M06869
## 12443 M06871
## 12444 M06872
## 12445 M06879
## 12446 M0688
## 12447 M0689
## 12448 M069
## 12449 M0760
## 12450 M07611
## 12451 M07612
## 12452 M07619
## 12453 M07621
## 12454 M07622
## 12455 M07629
## 12456 M07631
## 12457 M07632
## 12458 M07639
## 12459 M07641
## 12460 M07642
## 12461 M07649
## 12462 M07651
## 12463 M07652
## 12464 M07659
## 12465 M07661
## 12466 M07662
## 12467 M07669
## 12468 M07671
## 12469 M07672
## 12470 M07679
## 12471 M0768
## 12472 M0769
## 12473 M0800
## 12474 M08011
## 12475 M08012
## 12476 M08019
## 12477 M08021
## 12478 M08022
## 12479 M08029
## 12480 M08031
## 12481 M08032
## 12482 M08039
## 12483 M08041
## 12484 M08042
## 12485 M08049
## 12486 M08051
## 12487 M08052
## 12488 M08059
## 12489 M08061
## 12490 M08062
## 12491 M08069
## 12492 M08071
## 12493 M08072
## 12494 M08079
## 12495 M0808
## 12496 M0809
## 12497 M081
## 12498 M0820
## 12499 M08211
## 12500 M08212
## 12501 M08219
## 12502 M08221
## 12503 M08222
## 12504 M08229
## 12505 M08231
## 12506 M08232
## 12507 M08239
## 12508 M08241
## 12509 M08242
## 12510 M08249
## 12511 M08251
## 12512 M08252
## 12513 M08259
## 12514 M08261
## 12515 M08262
## 12516 M08269
## 12517 M08271
## 12518 M08272
## 12519 M08279
## 12520 M0828
## 12521 M0829
## 12522 M083
## 12523 M0840
## 12524 M08411
## 12525 M08412
## 12526 M08419
## 12527 M08421
## 12528 M08422
## 12529 M08429
## 12530 M08431
## 12531 M08432
## 12532 M08439
## 12533 M08441
## 12534 M08442
## 12535 M08449
## 12536 M08451
## 12537 M08452
## 12538 M08459
## 12539 M08461
## 12540 M08462
## 12541 M08469
## 12542 M08471
## 12543 M08472
## 12544 M08479
## 12545 M0848
## 12546 M0880
## 12547 M08811
## 12548 M08812
## 12549 M08819
## 12550 M08821
## 12551 M08822
## 12552 M08829
## 12553 M08831
## 12554 M08832
## 12555 M08839
## 12556 M08841
## 12557 M08842
## 12558 M08849
## 12559 M08851
## 12560 M08852
## 12561 M08859
## 12562 M08861
## 12563 M08862
## 12564 M08869
## 12565 M08871
## 12566 M08872
## 12567 M08879
## 12568 M0888
## 12569 M0889
## 12570 M0890
## 12571 M08911
## 12572 M08912
## 12573 M08919
## 12574 M08921
## 12575 M08922
## 12576 M08929
## 12577 M08931
## 12578 M08932
## 12579 M08939
## 12580 M08941
## 12581 M08942
## 12582 M08949
## 12583 M08951
## 12584 M08952
## 12585 M08959
## 12586 M08961
## 12587 M08962
## 12588 M08969
## 12589 M08971
## 12590 M08972
## 12591 M08979
## 12592 M0898
## 12593 M0899
## 12594 M1A00X0
## 12595 M1A00X1
## 12596 M1A0110
## 12597 M1A0111
## 12598 M1A0120
## 12599 M1A0121
## 12600 M1A0190
## 12601 M1A0191
## 12602 M1A0210
## 12603 M1A0211
## 12604 M1A0220
## 12605 M1A0221
## 12606 M1A0290
## 12607 M1A0291
## 12608 M1A0310
## 12609 M1A0311
## 12610 M1A0320
## 12611 M1A0321
## 12612 M1A0390
## 12613 M1A0391
## 12614 M1A0410
## 12615 M1A0411
## 12616 M1A0420
## 12617 M1A0421
## 12618 M1A0490
## 12619 M1A0491
## 12620 M1A0510
## 12621 M1A0511
## 12622 M1A0520
## 12623 M1A0521
## 12624 M1A0590
## 12625 M1A0591
## 12626 M1A0610
## 12627 M1A0611
## 12628 M1A0620
## 12629 M1A0621
## 12630 M1A0690
## 12631 M1A0691
## 12632 M1A0710
## 12633 M1A0711
## 12634 M1A0720
## 12635 M1A0721
## 12636 M1A0790
## 12637 M1A0791
## 12638 M1A08X0
## 12639 M1A08X1
## 12640 M1A09X0
## 12641 M1A09X1
## 12642 M1A10X0
## 12643 M1A10X1
## 12644 M1A1110
## 12645 M1A1111
## 12646 M1A1120
## 12647 M1A1121
## 12648 M1A1190
## 12649 M1A1191
## 12650 M1A1210
## 12651 M1A1211
## 12652 M1A1220
## 12653 M1A1221
## 12654 M1A1290
## 12655 M1A1291
## 12656 M1A1310
## 12657 M1A1311
## 12658 M1A1320
## 12659 M1A1321
## 12660 M1A1390
## 12661 M1A1391
## 12662 M1A1410
## 12663 M1A1411
## 12664 M1A1420
## 12665 M1A1421
## 12666 M1A1490
## 12667 M1A1491
## 12668 M1A1510
## 12669 M1A1511
## 12670 M1A1520
## 12671 M1A1521
## 12672 M1A1590
## 12673 M1A1591
## 12674 M1A1610
## 12675 M1A1611
## 12676 M1A1620
## 12677 M1A1621
## 12678 M1A1690
## 12679 M1A1691
## 12680 M1A1710
## 12681 M1A1711
## 12682 M1A1720
## 12683 M1A1721
## 12684 M1A1790
## 12685 M1A1791
## 12686 M1A18X0
## 12687 M1A18X1
## 12688 M1A19X0
## 12689 M1A19X1
## 12690 M1A20X0
## 12691 M1A20X1
## 12692 M1A2110
## 12693 M1A2111
## 12694 M1A2120
## 12695 M1A2121
## 12696 M1A2190
## 12697 M1A2191
## 12698 M1A2210
## 12699 M1A2211
## 12700 M1A2220
## 12701 M1A2221
## 12702 M1A2290
## 12703 M1A2291
## 12704 M1A2310
## 12705 M1A2311
## 12706 M1A2320
## 12707 M1A2321
## 12708 M1A2390
## 12709 M1A2391
## 12710 M1A2410
## 12711 M1A2411
## 12712 M1A2420
## 12713 M1A2421
## 12714 M1A2490
## 12715 M1A2491
## 12716 M1A2510
## 12717 M1A2511
## 12718 M1A2520
## 12719 M1A2521
## 12720 M1A2590
## 12721 M1A2591
## 12722 M1A2610
## 12723 M1A2611
## 12724 M1A2620
## 12725 M1A2621
## 12726 M1A2690
## 12727 M1A2691
## 12728 M1A2710
## 12729 M1A2711
## 12730 M1A2720
## 12731 M1A2721
## 12732 M1A2790
## 12733 M1A2791
## 12734 M1A28X0
## 12735 M1A28X1
## 12736 M1A29X0
## 12737 M1A29X1
## 12738 M1A30X0
## 12739 M1A30X1
## 12740 M1A3110
## 12741 M1A3111
## 12742 M1A3120
## 12743 M1A3121
## 12744 M1A3190
## 12745 M1A3191
## 12746 M1A3210
## 12747 M1A3211
## 12748 M1A3220
## 12749 M1A3221
## 12750 M1A3290
## 12751 M1A3291
## 12752 M1A3310
## 12753 M1A3311
## 12754 M1A3320
## 12755 M1A3321
## 12756 M1A3390
## 12757 M1A3391
## 12758 M1A3410
## 12759 M1A3411
## 12760 M1A3420
## 12761 M1A3421
## 12762 M1A3490
## 12763 M1A3491
## 12764 M1A3510
## 12765 M1A3511
## 12766 M1A3520
## 12767 M1A3521
## 12768 M1A3590
## 12769 M1A3591
## 12770 M1A3610
## 12771 M1A3611
## 12772 M1A3620
## 12773 M1A3621
## 12774 M1A3690
## 12775 M1A3691
## 12776 M1A3710
## 12777 M1A3711
## 12778 M1A3720
## 12779 M1A3721
## 12780 M1A3790
## 12781 M1A3791
## 12782 M1A38X0
## 12783 M1A38X1
## 12784 M1A39X0
## 12785 M1A39X1
## 12786 M1A40X0
## 12787 M1A40X1
## 12788 M1A4110
## 12789 M1A4111
## 12790 M1A4120
## 12791 M1A4121
## 12792 M1A4190
## 12793 M1A4191
## 12794 M1A4210
## 12795 M1A4211
## 12796 M1A4220
## 12797 M1A4221
## 12798 M1A4290
## 12799 M1A4291
## 12800 M1A4310
## 12801 M1A4311
## 12802 M1A4320
## 12803 M1A4321
## 12804 M1A4390
## 12805 M1A4391
## 12806 M1A4410
## 12807 M1A4411
## 12808 M1A4420
## 12809 M1A4421
## 12810 M1A4490
## 12811 M1A4491
## 12812 M1A4510
## 12813 M1A4511
## 12814 M1A4520
## 12815 M1A4521
## 12816 M1A4590
## 12817 M1A4591
## 12818 M1A4610
## 12819 M1A4611
## 12820 M1A4620
## 12821 M1A4621
## 12822 M1A4690
## 12823 M1A4691
## 12824 M1A4710
## 12825 M1A4711
## 12826 M1A4720
## 12827 M1A4721
## 12828 M1A4790
## 12829 M1A4791
## 12830 M1A48X0
## 12831 M1A48X1
## 12832 M1A49X0
## 12833 M1A49X1
## 12834 M1A9XX0
## 12835 M1A9XX1
## 12836 M1000
## 12837 M10011
## 12838 M10012
## 12839 M10019
## 12840 M10021
## 12841 M10022
## 12842 M10029
## 12843 M10031
## 12844 M10032
## 12845 M10039
## 12846 M10041
## 12847 M10042
## 12848 M10049
## 12849 M10051
## 12850 M10052
## 12851 M10059
## 12852 M10061
## 12853 M10062
## 12854 M10069
## 12855 M10071
## 12856 M10072
## 12857 M10079
## 12858 M1008
## 12859 M1009
## 12860 M1010
## 12861 M10111
## 12862 M10112
## 12863 M10119
## 12864 M10121
## 12865 M10122
## 12866 M10129
## 12867 M10131
## 12868 M10132
## 12869 M10139
## 12870 M10141
## 12871 M10142
## 12872 M10149
## 12873 M10151
## 12874 M10152
## 12875 M10159
## 12876 M10161
## 12877 M10162
## 12878 M10169
## 12879 M10171
## 12880 M10172
## 12881 M10179
## 12882 M1018
## 12883 M1019
## 12884 M1020
## 12885 M10211
## 12886 M10212
## 12887 M10219
## 12888 M10221
## 12889 M10222
## 12890 M10229
## 12891 M10231
## 12892 M10232
## 12893 M10239
## 12894 M10241
## 12895 M10242
## 12896 M10249
## 12897 M10251
## 12898 M10252
## 12899 M10259
## 12900 M10261
## 12901 M10262
## 12902 M10269
## 12903 M10271
## 12904 M10272
## 12905 M10279
## 12906 M1028
## 12907 M1029
## 12908 M1030
## 12909 M10311
## 12910 M10312
## 12911 M10319
## 12912 M10321
## 12913 M10322
## 12914 M10329
## 12915 M10331
## 12916 M10332
## 12917 M10339
## 12918 M10341
## 12919 M10342
## 12920 M10349
## 12921 M10351
## 12922 M10352
## 12923 M10359
## 12924 M10361
## 12925 M10362
## 12926 M10369
## 12927 M10371
## 12928 M10372
## 12929 M10379
## 12930 M1038
## 12931 M1039
## 12932 M1040
## 12933 M10411
## 12934 M10412
## 12935 M10419
## 12936 M10421
## 12937 M10422
## 12938 M10429
## 12939 M10431
## 12940 M10432
## 12941 M10439
## 12942 M10441
## 12943 M10442
## 12944 M10449
## 12945 M10451
## 12946 M10452
## 12947 M10459
## 12948 M10461
## 12949 M10462
## 12950 M10469
## 12951 M10471
## 12952 M10472
## 12953 M10479
## 12954 M1048
## 12955 M1049
## 12956 M109
## 12957 M1100
## 12958 M11011
## 12959 M11012
## 12960 M11019
## 12961 M11021
## 12962 M11022
## 12963 M11029
## 12964 M11031
## 12965 M11032
## 12966 M11039
## 12967 M11041
## 12968 M11042
## 12969 M11049
## 12970 M11051
## 12971 M11052
## 12972 M11059
## 12973 M11061
## 12974 M11062
## 12975 M11069
## 12976 M11071
## 12977 M11072
## 12978 M11079
## 12979 M1108
## 12980 M1109
## 12981 M1110
## 12982 M11111
## 12983 M11112
## 12984 M11119
## 12985 M11121
## 12986 M11122
## 12987 M11129
## 12988 M11131
## 12989 M11132
## 12990 M11139
## 12991 M11141
## 12992 M11142
## 12993 M11149
## 12994 M11151
## 12995 M11152
## 12996 M11159
## 12997 M11161
## 12998 M11162
## 12999 M11169
## 13000 M11171
## 13001 M11172
## 13002 M11179
## 13003 M1118
## 13004 M1119
## 13005 M1120
## 13006 M11211
## 13007 M11212
## 13008 M11219
## 13009 M11221
## 13010 M11222
## 13011 M11229
## 13012 M11231
## 13013 M11232
## 13014 M11239
## 13015 M11241
## 13016 M11242
## 13017 M11249
## 13018 M11251
## 13019 M11252
## 13020 M11259
## 13021 M11261
## 13022 M11262
## 13023 M11269
## 13024 M11271
## 13025 M11272
## 13026 M11279
## 13027 M1128
## 13028 M1129
## 13029 M1180
## 13030 M11811
## 13031 M11812
## 13032 M11819
## 13033 M11821
## 13034 M11822
## 13035 M11829
## 13036 M11831
## 13037 M11832
## 13038 M11839
## 13039 M11841
## 13040 M11842
## 13041 M11849
## 13042 M11851
## 13043 M11852
## 13044 M11859
## 13045 M11861
## 13046 M11862
## 13047 M11869
## 13048 M11871
## 13049 M11872
## 13050 M11879
## 13051 M1188
## 13052 M1189
## 13053 M119
## 13054 M1200
## 13055 M12011
## 13056 M12012
## 13057 M12019
## 13058 M12021
## 13059 M12022
## 13060 M12029
## 13061 M12031
## 13062 M12032
## 13063 M12039
## 13064 M12041
## 13065 M12042
## 13066 M12049
## 13067 M12051
## 13068 M12052
## 13069 M12059
## 13070 M12061
## 13071 M12062
## 13072 M12069
## 13073 M12071
## 13074 M12072
## 13075 M12079
## 13076 M1208
## 13077 M1209
## 13078 M1210
## 13079 M12111
## 13080 M12112
## 13081 M12119
## 13082 M12121
## 13083 M12122
## 13084 M12129
## 13085 M12131
## 13086 M12132
## 13087 M12139
## 13088 M12141
## 13089 M12142
## 13090 M12149
## 13091 M12151
## 13092 M12152
## 13093 M12159
## 13094 M12161
## 13095 M12162
## 13096 M12169
## 13097 M12171
## 13098 M12172
## 13099 M12179
## 13100 M1218
## 13101 M1219
## 13102 M1220
## 13103 M12211
## 13104 M12212
## 13105 M12219
## 13106 M12221
## 13107 M12222
## 13108 M12229
## 13109 M12231
## 13110 M12232
## 13111 M12239
## 13112 M12241
## 13113 M12242
## 13114 M12249
## 13115 M12251
## 13116 M12252
## 13117 M12259
## 13118 M12261
## 13119 M12262
## 13120 M12269
## 13121 M12271
## 13122 M12272
## 13123 M12279
## 13124 M1228
## 13125 M1229
## 13126 M1230
## 13127 M12311
## 13128 M12312
## 13129 M12319
## 13130 M12321
## 13131 M12322
## 13132 M12329
## 13133 M12331
## 13134 M12332
## 13135 M12339
## 13136 M12341
## 13137 M12342
## 13138 M12349
## 13139 M12351
## 13140 M12352
## 13141 M12359
## 13142 M12361
## 13143 M12362
## 13144 M12369
## 13145 M12371
## 13146 M12372
## 13147 M12379
## 13148 M1238
## 13149 M1239
## 13150 M1240
## 13151 M12411
## 13152 M12412
## 13153 M12419
## 13154 M12421
## 13155 M12422
## 13156 M12429
## 13157 M12431
## 13158 M12432
## 13159 M12439
## 13160 M12441
## 13161 M12442
## 13162 M12449
## 13163 M12451
## 13164 M12452
## 13165 M12459
## 13166 M12461
## 13167 M12462
## 13168 M12469
## 13169 M12471
## 13170 M12472
## 13171 M12479
## 13172 M1248
## 13173 M1249
## 13174 M1250
## 13175 M12511
## 13176 M12512
## 13177 M12519
## 13178 M12521
## 13179 M12522
## 13180 M12529
## 13181 M12531
## 13182 M12532
## 13183 M12539
## 13184 M12541
## 13185 M12542
## 13186 M12549
## 13187 M12551
## 13188 M12552
## 13189 M12559
## 13190 M12561
## 13191 M12562
## 13192 M12569
## 13193 M12571
## 13194 M12572
## 13195 M12579
## 13196 M1258
## 13197 M1259
## 13198 M1280
## 13199 M12811
## 13200 M12812
## 13201 M12819
## 13202 M12821
## 13203 M12822
## 13204 M12829
## 13205 M12831
## 13206 M12832
## 13207 M12839
## 13208 M12841
## 13209 M12842
## 13210 M12849
## 13211 M12851
## 13212 M12852
## 13213 M12859
## 13214 M12861
## 13215 M12862
## 13216 M12869
## 13217 M12871
## 13218 M12872
## 13219 M12879
## 13220 M1288
## 13221 M1289
## 13222 M129
## 13223 M130
## 13224 M1310
## 13225 M13111
## 13226 M13112
## 13227 M13119
## 13228 M13121
## 13229 M13122
## 13230 M13129
## 13231 M13131
## 13232 M13132
## 13233 M13139
## 13234 M13141
## 13235 M13142
## 13236 M13149
## 13237 M13151
## 13238 M13152
## 13239 M13159
## 13240 M13161
## 13241 M13162
## 13242 M13169
## 13243 M13171
## 13244 M13172
## 13245 M13179
## 13246 M1380
## 13247 M13811
## 13248 M13812
## 13249 M13819
## 13250 M13821
## 13251 M13822
## 13252 M13829
## 13253 M13831
## 13254 M13832
## 13255 M13839
## 13256 M13841
## 13257 M13842
## 13258 M13849
## 13259 M13851
## 13260 M13852
## 13261 M13859
## 13262 M13861
## 13263 M13862
## 13264 M13869
## 13265 M13871
## 13266 M13872
## 13267 M13879
## 13268 M1388
## 13269 M1389
## 13270 M1460
## 13271 M14611
## 13272 M14612
## 13273 M14619
## 13274 M14621
## 13275 M14622
## 13276 M14629
## 13277 M14631
## 13278 M14632
## 13279 M14639
## 13280 M14641
## 13281 M14642
## 13282 M14649
## 13283 M14651
## 13284 M14652
## 13285 M14659
## 13286 M14661
## 13287 M14662
## 13288 M14669
## 13289 M14671
## 13290 M14672
## 13291 M14679
## 13292 M1468
## 13293 M1469
## 13294 M1480
## 13295 M14811
## 13296 M14812
## 13297 M14819
## 13298 M14821
## 13299 M14822
## 13300 M14829
## 13301 M14831
## 13302 M14832
## 13303 M14839
## 13304 M14841
## 13305 M14842
## 13306 M14849
## 13307 M14851
## 13308 M14852
## 13309 M14859
## 13310 M14861
## 13311 M14862
## 13312 M14869
## 13313 M14871
## 13314 M14872
## 13315 M14879
## 13316 M1488
## 13317 M1489
## 13318 M150
## 13319 M151
## 13320 M152
## 13321 M153
## 13322 M154
## 13323 M158
## 13324 M159
## 13325 M160
## 13326 M1610
## 13327 M1611
## 13328 M1612
## 13329 M162
## 13330 M1630
## 13331 M1631
## 13332 M1632
## 13333 M164
## 13334 M1650
## 13335 M1651
## 13336 M1652
## 13337 M166
## 13338 M167
## 13339 M169
## 13340 M170
## 13341 M1710
## 13342 M1711
## 13343 M1712
## 13344 M172
## 13345 M1730
## 13346 M1731
## 13347 M1732
## 13348 M174
## 13349 M175
## 13350 M179
## 13351 M180
## 13352 M1810
## 13353 M1811
## 13354 M1812
## 13355 M182
## 13356 M1830
## 13357 M1831
## 13358 M1832
## 13359 M184
## 13360 M1850
## 13361 M1851
## 13362 M1852
## 13363 M189
## 13364 M19011
## 13365 M19012
## 13366 M19019
## 13367 M19021
## 13368 M19022
## 13369 M19029
## 13370 M19031
## 13371 M19032
## 13372 M19039
## 13373 M19041
## 13374 M19042
## 13375 M19049
## 13376 M19071
## 13377 M19072
## 13378 M19079
## 13379 M19111
## 13380 M19112
## 13381 M19119
## 13382 M19121
## 13383 M19122
## 13384 M19129
## 13385 M19131
## 13386 M19132
## 13387 M19139
## 13388 M19141
## 13389 M19142
## 13390 M19149
## 13391 M19171
## 13392 M19172
## 13393 M19179
## 13394 M19211
## 13395 M19212
## 13396 M19219
## 13397 M19221
## 13398 M19222
## 13399 M19229
## 13400 M19231
## 13401 M19232
## 13402 M19239
## 13403 M19241
## 13404 M19242
## 13405 M19249
## 13406 M19271
## 13407 M19272
## 13408 M19279
## 13409 M1990
## 13410 M1991
## 13411 M1992
## 13412 M1993
## 13413 M20001
## 13414 M20002
## 13415 M20009
## 13416 M20011
## 13417 M20012
## 13418 M20019
## 13419 M20021
## 13420 M20022
## 13421 M20029
## 13422 M20031
## 13423 M20032
## 13424 M20039
## 13425 M20091
## 13426 M20092
## 13427 M20099
## 13428 M2010
## 13429 M2011
## 13430 M2012
## 13431 M2020
## 13432 M2021
## 13433 M2022
## 13434 M2030
## 13435 M2031
## 13436 M2032
## 13437 M2040
## 13438 M2041
## 13439 M2042
## 13440 M205X1
## 13441 M205X2
## 13442 M205X9
## 13443 M2060
## 13444 M2061
## 13445 M2062
## 13446 M2100
## 13447 M21021
## 13448 M21022
## 13449 M21029
## 13450 M21051
## 13451 M21052
## 13452 M21059
## 13453 M21061
## 13454 M21062
## 13455 M21069
## 13456 M21071
## 13457 M21072
## 13458 M21079
## 13459 M2110
## 13460 M21121
## 13461 M21122
## 13462 M21129
## 13463 M21151
## 13464 M21152
## 13465 M21159
## 13466 M21161
## 13467 M21162
## 13468 M21169
## 13469 M21171
## 13470 M21172
## 13471 M21179
## 13472 M2120
## 13473 M21211
## 13474 M21212
## 13475 M21219
## 13476 M21221
## 13477 M21222
## 13478 M21229
## 13479 M21231
## 13480 M21232
## 13481 M21239
## 13482 M21241
## 13483 M21242
## 13484 M21249
## 13485 M21251
## 13486 M21252
## 13487 M21259
## 13488 M21261
## 13489 M21262
## 13490 M21269
## 13491 M21271
## 13492 M21272
## 13493 M21279
## 13494 M21331
## 13495 M21332
## 13496 M21339
## 13497 M21371
## 13498 M21372
## 13499 M21379
## 13500 M2140
## 13501 M2141
## 13502 M2142
## 13503 M21511
## 13504 M21512
## 13505 M21519
## 13506 M21521
## 13507 M21522
## 13508 M21529
## 13509 M21531
## 13510 M21532
## 13511 M21539
## 13512 M21541
## 13513 M21542
## 13514 M21549
## 13515 M21611
## 13516 M21612
## 13517 M21619
## 13518 M21621
## 13519 M21622
## 13520 M21629
## 13521 M216X1
## 13522 M216X2
## 13523 M216X9
## 13524 M2170
## 13525 M21721
## 13526 M21722
## 13527 M21729
## 13528 M21731
## 13529 M21732
## 13530 M21733
## 13531 M21734
## 13532 M21739
## 13533 M21751
## 13534 M21752
## 13535 M21759
## 13536 M21761
## 13537 M21762
## 13538 M21763
## 13539 M21764
## 13540 M21769
## 13541 M2180
## 13542 M21821
## 13543 M21822
## 13544 M21829
## 13545 M21831
## 13546 M21832
## 13547 M21839
## 13548 M21851
## 13549 M21852
## 13550 M21859
## 13551 M21861
## 13552 M21862
## 13553 M21869
## 13554 M2190
## 13555 M21921
## 13556 M21922
## 13557 M21929
## 13558 M21931
## 13559 M21932
## 13560 M21939
## 13561 M21941
## 13562 M21942
## 13563 M21949
## 13564 M21951
## 13565 M21952
## 13566 M21959
## 13567 M21961
## 13568 M21962
## 13569 M21969
## 13570 M2200
## 13571 M2201
## 13572 M2202
## 13573 M2210
## 13574 M2211
## 13575 M2212
## 13576 M222X1
## 13577 M222X2
## 13578 M222X9
## 13579 M223X1
## 13580 M223X2
## 13581 M223X9
## 13582 M2240
## 13583 M2241
## 13584 M2242
## 13585 M228X1
## 13586 M228X2
## 13587 M228X9
## 13588 M2290
## 13589 M2291
## 13590 M2292
## 13591 M23000
## 13592 M23001
## 13593 M23002
## 13594 M23003
## 13595 M23004
## 13596 M23005
## 13597 M23006
## 13598 M23007
## 13599 M23009
## 13600 M23011
## 13601 M23012
## 13602 M23019
## 13603 M23021
## 13604 M23022
## 13605 M23029
## 13606 M23031
## 13607 M23032
## 13608 M23039
## 13609 M23041
## 13610 M23042
## 13611 M23049
## 13612 M23051
## 13613 M23052
## 13614 M23059
## 13615 M23061
## 13616 M23062
## 13617 M23069
## 13618 M23200
## 13619 M23201
## 13620 M23202
## 13621 M23203
## 13622 M23204
## 13623 M23205
## 13624 M23206
## 13625 M23207
## 13626 M23209
## 13627 M23211
## 13628 M23212
## 13629 M23219
## 13630 M23221
## 13631 M23222
## 13632 M23229
## 13633 M23231
## 13634 M23232
## 13635 M23239
## 13636 M23241
## 13637 M23242
## 13638 M23249
## 13639 M23251
## 13640 M23252
## 13641 M23259
## 13642 M23261
## 13643 M23262
## 13644 M23269
## 13645 M23300
## 13646 M23301
## 13647 M23302
## 13648 M23303
## 13649 M23304
## 13650 M23305
## 13651 M23306
## 13652 M23307
## 13653 M23309
## 13654 M23311
## 13655 M23312
## 13656 M23319
## 13657 M23321
## 13658 M23322
## 13659 M23329
## 13660 M23331
## 13661 M23332
## 13662 M23339
## 13663 M23341
## 13664 M23342
## 13665 M23349
## 13666 M23351
## 13667 M23352
## 13668 M23359
## 13669 M23361
## 13670 M23362
## 13671 M23369
## 13672 M2340
## 13673 M2341
## 13674 M2342
## 13675 M2350
## 13676 M2351
## 13677 M2352
## 13678 M23601
## 13679 M23602
## 13680 M23609
## 13681 M23611
## 13682 M23612
## 13683 M23619
## 13684 M23621
## 13685 M23622
## 13686 M23629
## 13687 M23631
## 13688 M23632
## 13689 M23639
## 13690 M23641
## 13691 M23642
## 13692 M23649
## 13693 M23671
## 13694 M23672
## 13695 M23679
## 13696 M238X1
## 13697 M238X2
## 13698 M238X9
## 13699 M2390
## 13700 M2391
## 13701 M2392
## 13702 M2400
## 13703 M24011
## 13704 M24012
## 13705 M24019
## 13706 M24021
## 13707 M24022
## 13708 M24029
## 13709 M24031
## 13710 M24032
## 13711 M24039
## 13712 M24041
## 13713 M24042
## 13714 M24049
## 13715 M24051
## 13716 M24052
## 13717 M24059
## 13718 M24071
## 13719 M24072
## 13720 M24073
## 13721 M24074
## 13722 M24075
## 13723 M24076
## 13724 M2408
## 13725 M2410
## 13726 M24111
## 13727 M24112
## 13728 M24119
## 13729 M24121
## 13730 M24122
## 13731 M24129
## 13732 M24131
## 13733 M24132
## 13734 M24139
## 13735 M24141
## 13736 M24142
## 13737 M24149
## 13738 M24151
## 13739 M24152
## 13740 M24159
## 13741 M24171
## 13742 M24172
## 13743 M24173
## 13744 M24174
## 13745 M24175
## 13746 M24176
## 13747 M2420
## 13748 M24211
## 13749 M24212
## 13750 M24219
## 13751 M24221
## 13752 M24222
## 13753 M24229
## 13754 M24231
## 13755 M24232
## 13756 M24239
## 13757 M24241
## 13758 M24242
## 13759 M24249
## 13760 M24251
## 13761 M24252
## 13762 M24259
## 13763 M24271
## 13764 M24272
## 13765 M24273
## 13766 M24274
## 13767 M24275
## 13768 M24276
## 13769 M2428
## 13770 M2430
## 13771 M24311
## 13772 M24312
## 13773 M24319
## 13774 M24321
## 13775 M24322
## 13776 M24329
## 13777 M24331
## 13778 M24332
## 13779 M24339
## 13780 M24341
## 13781 M24342
## 13782 M24349
## 13783 M24351
## 13784 M24352
## 13785 M24359
## 13786 M24361
## 13787 M24362
## 13788 M24369
## 13789 M24371
## 13790 M24372
## 13791 M24373
## 13792 M24374
## 13793 M24375
## 13794 M24376
## 13795 M2440
## 13796 M24411
## 13797 M24412
## 13798 M24419
## 13799 M24421
## 13800 M24422
## 13801 M24429
## 13802 M24431
## 13803 M24432
## 13804 M24439
## 13805 M24441
## 13806 M24442
## 13807 M24443
## 13808 M24444
## 13809 M24445
## 13810 M24446
## 13811 M24451
## 13812 M24452
## 13813 M24459
## 13814 M24461
## 13815 M24462
## 13816 M24469
## 13817 M24471
## 13818 M24472
## 13819 M24473
## 13820 M24474
## 13821 M24475
## 13822 M24476
## 13823 M24477
## 13824 M24478
## 13825 M24479
## 13826 M2450
## 13827 M24511
## 13828 M24512
## 13829 M24519
## 13830 M24521
## 13831 M24522
## 13832 M24529
## 13833 M24531
## 13834 M24532
## 13835 M24539
## 13836 M24541
## 13837 M24542
## 13838 M24549
## 13839 M24551
## 13840 M24552
## 13841 M24559
## 13842 M24561
## 13843 M24562
## 13844 M24569
## 13845 M24571
## 13846 M24572
## 13847 M24573
## 13848 M24574
## 13849 M24575
## 13850 M24576
## 13851 M2460
## 13852 M24611
## 13853 M24612
## 13854 M24619
## 13855 M24621
## 13856 M24622
## 13857 M24629
## 13858 M24631
## 13859 M24632
## 13860 M24639
## 13861 M24641
## 13862 M24642
## 13863 M24649
## 13864 M24651
## 13865 M24652
## 13866 M24659
## 13867 M24661
## 13868 M24662
## 13869 M24669
## 13870 M24671
## 13871 M24672
## 13872 M24673
## 13873 M24674
## 13874 M24675
## 13875 M24676
## 13876 M247
## 13877 M2480
## 13878 M24811
## 13879 M24812
## 13880 M24819
## 13881 M24821
## 13882 M24822
## 13883 M24829
## 13884 M24831
## 13885 M24832
## 13886 M24839
## 13887 M24841
## 13888 M24842
## 13889 M24849
## 13890 M24851
## 13891 M24852
## 13892 M24859
## 13893 M24871
## 13894 M24872
## 13895 M24873
## 13896 M24874
## 13897 M24875
## 13898 M24876
## 13899 M249
## 13900 M2500
## 13901 M25011
## 13902 M25012
## 13903 M25019
## 13904 M25021
## 13905 M25022
## 13906 M25029
## 13907 M25031
## 13908 M25032
## 13909 M25039
## 13910 M25041
## 13911 M25042
## 13912 M25049
## 13913 M25051
## 13914 M25052
## 13915 M25059
## 13916 M25061
## 13917 M25062
## 13918 M25069
## 13919 M25071
## 13920 M25072
## 13921 M25073
## 13922 M25074
## 13923 M25075
## 13924 M25076
## 13925 M2508
## 13926 M2510
## 13927 M25111
## 13928 M25112
## 13929 M25119
## 13930 M25121
## 13931 M25122
## 13932 M25129
## 13933 M25131
## 13934 M25132
## 13935 M25139
## 13936 M25141
## 13937 M25142
## 13938 M25149
## 13939 M25151
## 13940 M25152
## 13941 M25159
## 13942 M25161
## 13943 M25162
## 13944 M25169
## 13945 M25171
## 13946 M25172
## 13947 M25173
## 13948 M25174
## 13949 M25175
## 13950 M25176
## 13951 M2518
## 13952 M2520
## 13953 M25211
## 13954 M25212
## 13955 M25219
## 13956 M25221
## 13957 M25222
## 13958 M25229
## 13959 M25231
## 13960 M25232
## 13961 M25239
## 13962 M25241
## 13963 M25242
## 13964 M25249
## 13965 M25251
## 13966 M25252
## 13967 M25259
## 13968 M25261
## 13969 M25262
## 13970 M25269
## 13971 M25271
## 13972 M25272
## 13973 M25279
## 13974 M2528
## 13975 M2530
## 13976 M25311
## 13977 M25312
## 13978 M25319
## 13979 M25321
## 13980 M25322
## 13981 M25329
## 13982 M25331
## 13983 M25332
## 13984 M25339
## 13985 M25341
## 13986 M25342
## 13987 M25349
## 13988 M25351
## 13989 M25352
## 13990 M25359
## 13991 M25361
## 13992 M25362
## 13993 M25369
## 13994 M25371
## 13995 M25372
## 13996 M25373
## 13997 M25374
## 13998 M25375
## 13999 M25376
## 14000 M2540
## 14001 M25411
## 14002 M25412
## 14003 M25419
## 14004 M25421
## 14005 M25422
## 14006 M25429
## 14007 M25431
## 14008 M25432
## 14009 M25439
## 14010 M25441
## 14011 M25442
## 14012 M25449
## 14013 M25451
## 14014 M25452
## 14015 M25459
## 14016 M25461
## 14017 M25462
## 14018 M25469
## 14019 M25471
## 14020 M25472
## 14021 M25473
## 14022 M25474
## 14023 M25475
## 14024 M25476
## 14025 M2548
## 14026 M2550
## 14027 M25511
## 14028 M25512
## 14029 M25519
## 14030 M25521
## 14031 M25522
## 14032 M25529
## 14033 M25531
## 14034 M25532
## 14035 M25539
## 14036 M25541
## 14037 M25542
## 14038 M25549
## 14039 M25551
## 14040 M25552
## 14041 M25559
## 14042 M25561
## 14043 M25562
## 14044 M25569
## 14045 M25571
## 14046 M25572
## 14047 M25579
## 14048 M2560
## 14049 M25611
## 14050 M25612
## 14051 M25619
## 14052 M25621
## 14053 M25622
## 14054 M25629
## 14055 M25631
## 14056 M25632
## 14057 M25639
## 14058 M25641
## 14059 M25642
## 14060 M25649
## 14061 M25651
## 14062 M25652
## 14063 M25659
## 14064 M25661
## 14065 M25662
## 14066 M25669
## 14067 M25671
## 14068 M25672
## 14069 M25673
## 14070 M25674
## 14071 M25675
## 14072 M25676
## 14073 M2570
## 14074 M25711
## 14075 M25712
## 14076 M25719
## 14077 M25721
## 14078 M25722
## 14079 M25729
## 14080 M25731
## 14081 M25732
## 14082 M25739
## 14083 M25741
## 14084 M25742
## 14085 M25749
## 14086 M25751
## 14087 M25752
## 14088 M25759
## 14089 M25761
## 14090 M25762
## 14091 M25769
## 14092 M25771
## 14093 M25772
## 14094 M25773
## 14095 M25774
## 14096 M25775
## 14097 M25776
## 14098 M2578
## 14099 M2580
## 14100 M25811
## 14101 M25812
## 14102 M25819
## 14103 M25821
## 14104 M25822
## 14105 M25829
## 14106 M25831
## 14107 M25832
## 14108 M25839
## 14109 M25841
## 14110 M25842
## 14111 M25849
## 14112 M25851
## 14113 M25852
## 14114 M25859
## 14115 M25861
## 14116 M25862
## 14117 M25869
## 14118 M25871
## 14119 M25872
## 14120 M25879
## 14121 M259
## 14122 M2600
## 14123 M2601
## 14124 M2602
## 14125 M2603
## 14126 M2604
## 14127 M2605
## 14128 M2606
## 14129 M2607
## 14130 M2609
## 14131 M2610
## 14132 M2611
## 14133 M2612
## 14134 M2619
## 14135 M2620
## 14136 M26211
## 14137 M26212
## 14138 M26213
## 14139 M26219
## 14140 M26220
## 14141 M26221
## 14142 M2623
## 14143 M2624
## 14144 M2625
## 14145 M2629
## 14146 M2630
## 14147 M2631
## 14148 M2632
## 14149 M2633
## 14150 M2634
## 14151 M2635
## 14152 M2636
## 14153 M2637
## 14154 M2639
## 14155 M264
## 14156 M2650
## 14157 M2651
## 14158 M2652
## 14159 M2653
## 14160 M2654
## 14161 M2655
## 14162 M2656
## 14163 M2657
## 14164 M2659
## 14165 M26601
## 14166 M26602
## 14167 M26603
## 14168 M26609
## 14169 M26611
## 14170 M26612
## 14171 M26613
## 14172 M26619
## 14173 M26621
## 14174 M26622
## 14175 M26623
## 14176 M26629
## 14177 M26631
## 14178 M26632
## 14179 M26633
## 14180 M26639
## 14181 M2669
## 14182 M2670
## 14183 M2671
## 14184 M2672
## 14185 M2673
## 14186 M2674
## 14187 M2679
## 14188 M2681
## 14189 M2682
## 14190 M2689
## 14191 M269
## 14192 M270
## 14193 M271
## 14194 M272
## 14195 M273
## 14196 M2740
## 14197 M2749
## 14198 M2751
## 14199 M2752
## 14200 M2753
## 14201 M2759
## 14202 M2761
## 14203 M2762
## 14204 M2763
## 14205 M2769
## 14206 M278
## 14207 M279
## 14208 M300
## 14209 M301
## 14210 M302
## 14211 M303
## 14212 M308
## 14213 M310
## 14214 M311
## 14215 M312
## 14216 M3130
## 14217 M3131
## 14218 M314
## 14219 M315
## 14220 M316
## 14221 M317
## 14222 M318
## 14223 M319
## 14224 M320
## 14225 M3210
## 14226 M3211
## 14227 M3212
## 14228 M3213
## 14229 M3214
## 14230 M3215
## 14231 M3219
## 14232 M328
## 14233 M329
## 14234 M3300
## 14235 M3301
## 14236 M3302
## 14237 M3303
## 14238 M3309
## 14239 M3310
## 14240 M3311
## 14241 M3312
## 14242 M3313
## 14243 M3319
## 14244 M3320
## 14245 M3321
## 14246 M3322
## 14247 M3329
## 14248 M3390
## 14249 M3391
## 14250 M3392
## 14251 M3393
## 14252 M3399
## 14253 M340
## 14254 M341
## 14255 M342
## 14256 M3481
## 14257 M3482
## 14258 M3483
## 14259 M3489
## 14260 M349
## 14261 M3500
## 14262 M3501
## 14263 M3502
## 14264 M3503
## 14265 M3504
## 14266 M3509
## 14267 M351
## 14268 M352
## 14269 M353
## 14270 M354
## 14271 M355
## 14272 M356
## 14273 M357
## 14274 M358
## 14275 M359
## 14276 M360
## 14277 M361
## 14278 M362
## 14279 M363
## 14280 M364
## 14281 M368
## 14282 M4000
## 14283 M4003
## 14284 M4004
## 14285 M4005
## 14286 M4010
## 14287 M4012
## 14288 M4013
## 14289 M4014
## 14290 M4015
## 14291 M40202
## 14292 M40203
## 14293 M40204
## 14294 M40205
## 14295 M40209
## 14296 M40292
## 14297 M40293
## 14298 M40294
## 14299 M40295
## 14300 M40299
## 14301 M4030
## 14302 M4035
## 14303 M4036
## 14304 M4037
## 14305 M4040
## 14306 M4045
## 14307 M4046
## 14308 M4047
## 14309 M4050
## 14310 M4055
## 14311 M4056
## 14312 M4057
## 14313 M4100
## 14314 M4102
## 14315 M4103
## 14316 M4104
## 14317 M4105
## 14318 M4106
## 14319 M4107
## 14320 M4108
## 14321 M41112
## 14322 M41113
## 14323 M41114
## 14324 M41115
## 14325 M41116
## 14326 M41117
## 14327 M41119
## 14328 M41122
## 14329 M41123
## 14330 M41124
## 14331 M41125
## 14332 M41126
## 14333 M41127
## 14334 M41129
## 14335 M4120
## 14336 M4122
## 14337 M4123
## 14338 M4124
## 14339 M4125
## 14340 M4126
## 14341 M4127
## 14342 M4130
## 14343 M4134
## 14344 M4135
## 14345 M4140
## 14346 M4141
## 14347 M4142
## 14348 M4143
## 14349 M4144
## 14350 M4145
## 14351 M4146
## 14352 M4147
## 14353 M4150
## 14354 M4152
## 14355 M4153
## 14356 M4154
## 14357 M4155
## 14358 M4156
## 14359 M4157
## 14360 M4180
## 14361 M4182
## 14362 M4183
## 14363 M4184
## 14364 M4185
## 14365 M4186
## 14366 M4187
## 14367 M419
## 14368 M4200
## 14369 M4201
## 14370 M4202
## 14371 M4203
## 14372 M4204
## 14373 M4205
## 14374 M4206
## 14375 M4207
## 14376 M4208
## 14377 M4209
## 14378 M4210
## 14379 M4211
## 14380 M4212
## 14381 M4213
## 14382 M4214
## 14383 M4215
## 14384 M4216
## 14385 M4217
## 14386 M4218
## 14387 M4219
## 14388 M429
## 14389 M4300
## 14390 M4301
## 14391 M4302
## 14392 M4303
## 14393 M4304
## 14394 M4305
## 14395 M4306
## 14396 M4307
## 14397 M4308
## 14398 M4309
## 14399 M4310
## 14400 M4311
## 14401 M4312
## 14402 M4313
## 14403 M4314
## 14404 M4315
## 14405 M4316
## 14406 M4317
## 14407 M4318
## 14408 M4319
## 14409 M4320
## 14410 M4321
## 14411 M4322
## 14412 M4323
## 14413 M4324
## 14414 M4325
## 14415 M4326
## 14416 M4327
## 14417 M4328
## 14418 M433
## 14419 M434
## 14420 M435X2
## 14421 M435X3
## 14422 M435X4
## 14423 M435X5
## 14424 M435X6
## 14425 M435X7
## 14426 M435X8
## 14427 M435X9
## 14428 M436
## 14429 M438X1
## 14430 M438X2
## 14431 M438X3
## 14432 M438X4
## 14433 M438X5
## 14434 M438X6
## 14435 M438X7
## 14436 M438X8
## 14437 M438X9
## 14438 M439
## 14439 M450
## 14440 M451
## 14441 M452
## 14442 M453
## 14443 M454
## 14444 M455
## 14445 M456
## 14446 M457
## 14447 M458
## 14448 M459
## 14449 M4600
## 14450 M4601
## 14451 M4602
## 14452 M4603
## 14453 M4604
## 14454 M4605
## 14455 M4606
## 14456 M4607
## 14457 M4608
## 14458 M4609
## 14459 M461
## 14460 M4620
## 14461 M4621
## 14462 M4622
## 14463 M4623
## 14464 M4624
## 14465 M4625
## 14466 M4626
## 14467 M4627
## 14468 M4628
## 14469 M4630
## 14470 M4631
## 14471 M4632
## 14472 M4633
## 14473 M4634
## 14474 M4635
## 14475 M4636
## 14476 M4637
## 14477 M4638
## 14478 M4639
## 14479 M4640
## 14480 M4641
## 14481 M4642
## 14482 M4643
## 14483 M4644
## 14484 M4645
## 14485 M4646
## 14486 M4647
## 14487 M4648
## 14488 M4649
## 14489 M4650
## 14490 M4651
## 14491 M4652
## 14492 M4653
## 14493 M4654
## 14494 M4655
## 14495 M4656
## 14496 M4657
## 14497 M4658
## 14498 M4659
## 14499 M4680
## 14500 M4681
## 14501 M4682
## 14502 M4683
## 14503 M4684
## 14504 M4685
## 14505 M4686
## 14506 M4687
## 14507 M4688
## 14508 M4689
## 14509 M4690
## 14510 M4691
## 14511 M4692
## 14512 M4693
## 14513 M4694
## 14514 M4695
## 14515 M4696
## 14516 M4697
## 14517 M4698
## 14518 M4699
## 14519 M47011
## 14520 M47012
## 14521 M47013
## 14522 M47014
## 14523 M47015
## 14524 M47016
## 14525 M47019
## 14526 M47021
## 14527 M47022
## 14528 M47029
## 14529 M4710
## 14530 M4711
## 14531 M4712
## 14532 M4713
## 14533 M4714
## 14534 M4715
## 14535 M4716
## 14536 M4720
## 14537 M4721
## 14538 M4722
## 14539 M4723
## 14540 M4724
## 14541 M4725
## 14542 M4726
## 14543 M4727
## 14544 M4728
## 14545 M47811
## 14546 M47812
## 14547 M47813
## 14548 M47814
## 14549 M47815
## 14550 M47816
## 14551 M47817
## 14552 M47818
## 14553 M47819
## 14554 M47891
## 14555 M47892
## 14556 M47893
## 14557 M47894
## 14558 M47895
## 14559 M47896
## 14560 M47897
## 14561 M47898
## 14562 M47899
## 14563 M479
## 14564 M4800
## 14565 M4801
## 14566 M4802
## 14567 M4803
## 14568 M4804
## 14569 M4805
## 14570 M48061
## 14571 M48062
## 14572 M4807
## 14573 M4808
## 14574 M4810
## 14575 M4811
## 14576 M4812
## 14577 M4813
## 14578 M4814
## 14579 M4815
## 14580 M4816
## 14581 M4817
## 14582 M4818
## 14583 M4819
## 14584 M4820
## 14585 M4821
## 14586 M4822
## 14587 M4823
## 14588 M4824
## 14589 M4825
## 14590 M4826
## 14591 M4827
## 14592 M4830
## 14593 M4831
## 14594 M4832
## 14595 M4833
## 14596 M4834
## 14597 M4835
## 14598 M4836
## 14599 M4837
## 14600 M4838
## 14601 M4840XA
## 14602 M4840XD
## 14603 M4840XG
## 14604 M4840XS
## 14605 M4841XA
## 14606 M4841XD
## 14607 M4841XG
## 14608 M4841XS
## 14609 M4842XA
## 14610 M4842XD
## 14611 M4842XG
## 14612 M4842XS
## 14613 M4843XA
## 14614 M4843XD
## 14615 M4843XG
## 14616 M4843XS
## 14617 M4844XA
## 14618 M4844XD
## 14619 M4844XG
## 14620 M4844XS
## 14621 M4845XA
## 14622 M4845XD
## 14623 M4845XG
## 14624 M4845XS
## 14625 M4846XA
## 14626 M4846XD
## 14627 M4846XG
## 14628 M4846XS
## 14629 M4847XA
## 14630 M4847XD
## 14631 M4847XG
## 14632 M4847XS
## 14633 M4848XA
## 14634 M4848XD
## 14635 M4848XG
## 14636 M4848XS
## 14637 M4850XA
## 14638 M4850XD
## 14639 M4850XG
## 14640 M4850XS
## 14641 M4851XA
## 14642 M4851XD
## 14643 M4851XG
## 14644 M4851XS
## 14645 M4852XA
## 14646 M4852XD
## 14647 M4852XG
## 14648 M4852XS
## 14649 M4853XA
## 14650 M4853XD
## 14651 M4853XG
## 14652 M4853XS
## 14653 M4854XA
## 14654 M4854XD
## 14655 M4854XG
## 14656 M4854XS
## 14657 M4855XA
## 14658 M4855XD
## 14659 M4855XG
## 14660 M4855XS
## 14661 M4856XA
## 14662 M4856XD
## 14663 M4856XG
## 14664 M4856XS
## 14665 M4857XA
## 14666 M4857XD
## 14667 M4857XG
## 14668 M4857XS
## 14669 M4858XA
## 14670 M4858XD
## 14671 M4858XG
## 14672 M4858XS
## 14673 M488X1
## 14674 M488X2
## 14675 M488X3
## 14676 M488X4
## 14677 M488X5
## 14678 M488X6
## 14679 M488X7
## 14680 M488X8
## 14681 M488X9
## 14682 M489
## 14683 M4980
## 14684 M4981
## 14685 M4982
## 14686 M4983
## 14687 M4984
## 14688 M4985
## 14689 M4986
## 14690 M4987
## 14691 M4988
## 14692 M4989
## 14693 M5000
## 14694 M5001
## 14695 M50020
## 14696 M50021
## 14697 M50022
## 14698 M50023
## 14699 M5003
## 14700 M5010
## 14701 M5011
## 14702 M50120
## 14703 M50121
## 14704 M50122
## 14705 M50123
## 14706 M5013
## 14707 M5020
## 14708 M5021
## 14709 M50220
## 14710 M50221
## 14711 M50222
## 14712 M50223
## 14713 M5023
## 14714 M5030
## 14715 M5031
## 14716 M50320
## 14717 M50321
## 14718 M50322
## 14719 M50323
## 14720 M5033
## 14721 M5080
## 14722 M5081
## 14723 M50820
## 14724 M50821
## 14725 M50822
## 14726 M50823
## 14727 M5083
## 14728 M5090
## 14729 M5091
## 14730 M50920
## 14731 M50921
## 14732 M50922
## 14733 M50923
## 14734 M5093
## 14735 M5104
## 14736 M5105
## 14737 M5106
## 14738 M5114
## 14739 M5115
## 14740 M5116
## 14741 M5117
## 14742 M5124
## 14743 M5125
## 14744 M5126
## 14745 M5127
## 14746 M5134
## 14747 M5135
## 14748 M5136
## 14749 M5137
## 14750 M5144
## 14751 M5145
## 14752 M5146
## 14753 M5147
## 14754 M5184
## 14755 M5185
## 14756 M5186
## 14757 M5187
## 14758 M519
## 14759 M530
## 14760 M531
## 14761 M532X1
## 14762 M532X2
## 14763 M532X3
## 14764 M532X4
## 14765 M532X5
## 14766 M532X6
## 14767 M532X7
## 14768 M532X8
## 14769 M532X9
## 14770 M533
## 14771 M5380
## 14772 M5381
## 14773 M5382
## 14774 M5383
## 14775 M5384
## 14776 M5385
## 14777 M5386
## 14778 M5387
## 14779 M5388
## 14780 M539
## 14781 M5400
## 14782 M5401
## 14783 M5402
## 14784 M5403
## 14785 M5404
## 14786 M5405
## 14787 M5406
## 14788 M5407
## 14789 M5408
## 14790 M5409
## 14791 M5410
## 14792 M5411
## 14793 M5412
## 14794 M5413
## 14795 M5414
## 14796 M5415
## 14797 M5416
## 14798 M5417
## 14799 M5418
## 14800 M542
## 14801 M5430
## 14802 M5431
## 14803 M5432
## 14804 M5440
## 14805 M5441
## 14806 M5442
## 14807 M545
## 14808 M546
## 14809 M5481
## 14810 M5489
## 14811 M549
## 14812 M60000
## 14813 M60001
## 14814 M60002
## 14815 M60003
## 14816 M60004
## 14817 M60005
## 14818 M60009
## 14819 M60011
## 14820 M60012
## 14821 M60019
## 14822 M60021
## 14823 M60022
## 14824 M60029
## 14825 M60031
## 14826 M60032
## 14827 M60039
## 14828 M60041
## 14829 M60042
## 14830 M60043
## 14831 M60044
## 14832 M60045
## 14833 M60046
## 14834 M60051
## 14835 M60052
## 14836 M60059
## 14837 M60061
## 14838 M60062
## 14839 M60069
## 14840 M60070
## 14841 M60071
## 14842 M60072
## 14843 M60073
## 14844 M60074
## 14845 M60075
## 14846 M60076
## 14847 M60077
## 14848 M60078
## 14849 M6008
## 14850 M6009
## 14851 M6010
## 14852 M60111
## 14853 M60112
## 14854 M60119
## 14855 M60121
## 14856 M60122
## 14857 M60129
## 14858 M60131
## 14859 M60132
## 14860 M60139
## 14861 M60141
## 14862 M60142
## 14863 M60149
## 14864 M60151
## 14865 M60152
## 14866 M60159
## 14867 M60161
## 14868 M60162
## 14869 M60169
## 14870 M60171
## 14871 M60172
## 14872 M60179
## 14873 M6018
## 14874 M6019
## 14875 M6020
## 14876 M60211
## 14877 M60212
## 14878 M60219
## 14879 M60221
## 14880 M60222
## 14881 M60229
## 14882 M60231
## 14883 M60232
## 14884 M60239
## 14885 M60241
## 14886 M60242
## 14887 M60249
## 14888 M60251
## 14889 M60252
## 14890 M60259
## 14891 M60261
## 14892 M60262
## 14893 M60269
## 14894 M60271
## 14895 M60272
## 14896 M60279
## 14897 M6028
## 14898 M6080
## 14899 M60811
## 14900 M60812
## 14901 M60819
## 14902 M60821
## 14903 M60822
## 14904 M60829
## 14905 M60831
## 14906 M60832
## 14907 M60839
## 14908 M60841
## 14909 M60842
## 14910 M60849
## 14911 M60851
## 14912 M60852
## 14913 M60859
## 14914 M60861
## 14915 M60862
## 14916 M60869
## 14917 M60871
## 14918 M60872
## 14919 M60879
## 14920 M6088
## 14921 M6089
## 14922 M609
## 14923 M6100
## 14924 M61011
## 14925 M61012
## 14926 M61019
## 14927 M61021
## 14928 M61022
## 14929 M61029
## 14930 M61031
## 14931 M61032
## 14932 M61039
## 14933 M61041
## 14934 M61042
## 14935 M61049
## 14936 M61051
## 14937 M61052
## 14938 M61059
## 14939 M61061
## 14940 M61062
## 14941 M61069
## 14942 M61071
## 14943 M61072
## 14944 M61079
## 14945 M6108
## 14946 M6109
## 14947 M6110
## 14948 M61111
## 14949 M61112
## 14950 M61119
## 14951 M61121
## 14952 M61122
## 14953 M61129
## 14954 M61131
## 14955 M61132
## 14956 M61139
## 14957 M61141
## 14958 M61142
## 14959 M61143
## 14960 M61144
## 14961 M61145
## 14962 M61146
## 14963 M61151
## 14964 M61152
## 14965 M61159
## 14966 M61161
## 14967 M61162
## 14968 M61169
## 14969 M61171
## 14970 M61172
## 14971 M61173
## 14972 M61174
## 14973 M61175
## 14974 M61176
## 14975 M61177
## 14976 M61178
## 14977 M61179
## 14978 M6118
## 14979 M6119
## 14980 M6120
## 14981 M61211
## 14982 M61212
## 14983 M61219
## 14984 M61221
## 14985 M61222
## 14986 M61229
## 14987 M61231
## 14988 M61232
## 14989 M61239
## 14990 M61241
## 14991 M61242
## 14992 M61249
## 14993 M61251
## 14994 M61252
## 14995 M61259
## 14996 M61261
## 14997 M61262
## 14998 M61269
## 14999 M61271
## 15000 M61272
## 15001 M61279
## 15002 M6128
## 15003 M6129
## 15004 M6130
## 15005 M61311
## 15006 M61312
## 15007 M61319
## 15008 M61321
## 15009 M61322
## 15010 M61329
## 15011 M61331
## 15012 M61332
## 15013 M61339
## 15014 M61341
## 15015 M61342
## 15016 M61349
## 15017 M61351
## 15018 M61352
## 15019 M61359
## 15020 M61361
## 15021 M61362
## 15022 M61369
## 15023 M61371
## 15024 M61372
## 15025 M61379
## 15026 M6138
## 15027 M6139
## 15028 M6140
## 15029 M61411
## 15030 M61412
## 15031 M61419
## 15032 M61421
## 15033 M61422
## 15034 M61429
## 15035 M61431
## 15036 M61432
## 15037 M61439
## 15038 M61441
## 15039 M61442
## 15040 M61449
## 15041 M61451
## 15042 M61452
## 15043 M61459
## 15044 M61461
## 15045 M61462
## 15046 M61469
## 15047 M61471
## 15048 M61472
## 15049 M61479
## 15050 M6148
## 15051 M6149
## 15052 M6150
## 15053 M61511
## 15054 M61512
## 15055 M61519
## 15056 M61521
## 15057 M61522
## 15058 M61529
## 15059 M61531
## 15060 M61532
## 15061 M61539
## 15062 M61541
## 15063 M61542
## 15064 M61549
## 15065 M61551
## 15066 M61552
## 15067 M61559
## 15068 M61561
## 15069 M61562
## 15070 M61569
## 15071 M61571
## 15072 M61572
## 15073 M61579
## 15074 M6158
## 15075 M6159
## 15076 M619
## 15077 M6200
## 15078 M62011
## 15079 M62012
## 15080 M62019
## 15081 M62021
## 15082 M62022
## 15083 M62029
## 15084 M62031
## 15085 M62032
## 15086 M62039
## 15087 M62041
## 15088 M62042
## 15089 M62049
## 15090 M62051
## 15091 M62052
## 15092 M62059
## 15093 M62061
## 15094 M62062
## 15095 M62069
## 15096 M62071
## 15097 M62072
## 15098 M62079
## 15099 M6208
## 15100 M6210
## 15101 M62111
## 15102 M62112
## 15103 M62119
## 15104 M62121
## 15105 M62122
## 15106 M62129
## 15107 M62131
## 15108 M62132
## 15109 M62139
## 15110 M62141
## 15111 M62142
## 15112 M62149
## 15113 M62151
## 15114 M62152
## 15115 M62159
## 15116 M62161
## 15117 M62162
## 15118 M62169
## 15119 M62171
## 15120 M62172
## 15121 M62179
## 15122 M6218
## 15123 M6220
## 15124 M62211
## 15125 M62212
## 15126 M62219
## 15127 M62221
## 15128 M62222
## 15129 M62229
## 15130 M62231
## 15131 M62232
## 15132 M62239
## 15133 M62241
## 15134 M62242
## 15135 M62249
## 15136 M62251
## 15137 M62252
## 15138 M62259
## 15139 M62261
## 15140 M62262
## 15141 M62269
## 15142 M62271
## 15143 M62272
## 15144 M62279
## 15145 M6228
## 15146 M623
## 15147 M6240
## 15148 M62411
## 15149 M62412
## 15150 M62419
## 15151 M62421
## 15152 M62422
## 15153 M62429
## 15154 M62431
## 15155 M62432
## 15156 M62439
## 15157 M62441
## 15158 M62442
## 15159 M62449
## 15160 M62451
## 15161 M62452
## 15162 M62459
## 15163 M62461
## 15164 M62462
## 15165 M62469
## 15166 M62471
## 15167 M62472
## 15168 M62479
## 15169 M6248
## 15170 M6249
## 15171 M6250
## 15172 M62511
## 15173 M62512
## 15174 M62519
## 15175 M62521
## 15176 M62522
## 15177 M62529
## 15178 M62531
## 15179 M62532
## 15180 M62539
## 15181 M62541
## 15182 M62542
## 15183 M62549
## 15184 M62551
## 15185 M62552
## 15186 M62559
## 15187 M62561
## 15188 M62562
## 15189 M62569
## 15190 M62571
## 15191 M62572
## 15192 M62579
## 15193 M6258
## 15194 M6259
## 15195 M6281
## 15196 M6282
## 15197 M62830
## 15198 M62831
## 15199 M62838
## 15200 M6284
## 15201 M6289
## 15202 M629
## 15203 M6380
## 15204 M63811
## 15205 M63812
## 15206 M63819
## 15207 M63821
## 15208 M63822
## 15209 M63829
## 15210 M63831
## 15211 M63832
## 15212 M63839
## 15213 M63841
## 15214 M63842
## 15215 M63849
## 15216 M63851
## 15217 M63852
## 15218 M63859
## 15219 M63861
## 15220 M63862
## 15221 M63869
## 15222 M63871
## 15223 M63872
## 15224 M63879
## 15225 M6388
## 15226 M6389
## 15227 M6500
## 15228 M65011
## 15229 M65012
## 15230 M65019
## 15231 M65021
## 15232 M65022
## 15233 M65029
## 15234 M65031
## 15235 M65032
## 15236 M65039
## 15237 M65041
## 15238 M65042
## 15239 M65049
## 15240 M65051
## 15241 M65052
## 15242 M65059
## 15243 M65061
## 15244 M65062
## 15245 M65069
## 15246 M65071
## 15247 M65072
## 15248 M65079
## 15249 M6508
## 15250 M6510
## 15251 M65111
## 15252 M65112
## 15253 M65119
## 15254 M65121
## 15255 M65122
## 15256 M65129
## 15257 M65131
## 15258 M65132
## 15259 M65139
## 15260 M65141
## 15261 M65142
## 15262 M65149
## 15263 M65151
## 15264 M65152
## 15265 M65159
## 15266 M65161
## 15267 M65162
## 15268 M65169
## 15269 M65171
## 15270 M65172
## 15271 M65179
## 15272 M6518
## 15273 M6519
## 15274 M6520
## 15275 M65221
## 15276 M65222
## 15277 M65229
## 15278 M65231
## 15279 M65232
## 15280 M65239
## 15281 M65241
## 15282 M65242
## 15283 M65249
## 15284 M65251
## 15285 M65252
## 15286 M65259
## 15287 M65261
## 15288 M65262
## 15289 M65269
## 15290 M65271
## 15291 M65272
## 15292 M65279
## 15293 M6528
## 15294 M6529
## 15295 M6530
## 15296 M65311
## 15297 M65312
## 15298 M65319
## 15299 M65321
## 15300 M65322
## 15301 M65329
## 15302 M65331
## 15303 M65332
## 15304 M65339
## 15305 M65341
## 15306 M65342
## 15307 M65349
## 15308 M65351
## 15309 M65352
## 15310 M65359
## 15311 M654
## 15312 M6580
## 15313 M65811
## 15314 M65812
## 15315 M65819
## 15316 M65821
## 15317 M65822
## 15318 M65829
## 15319 M65831
## 15320 M65832
## 15321 M65839
## 15322 M65841
## 15323 M65842
## 15324 M65849
## 15325 M65851
## 15326 M65852
## 15327 M65859
## 15328 M65861
## 15329 M65862
## 15330 M65869
## 15331 M65871
## 15332 M65872
## 15333 M65879
## 15334 M6588
## 15335 M6589
## 15336 M659
## 15337 M660
## 15338 M6610
## 15339 M66111
## 15340 M66112
## 15341 M66119
## 15342 M66121
## 15343 M66122
## 15344 M66129
## 15345 M66131
## 15346 M66132
## 15347 M66139
## 15348 M66141
## 15349 M66142
## 15350 M66143
## 15351 M66144
## 15352 M66145
## 15353 M66146
## 15354 M66151
## 15355 M66152
## 15356 M66159
## 15357 M66171
## 15358 M66172
## 15359 M66173
## 15360 M66174
## 15361 M66175
## 15362 M66176
## 15363 M66177
## 15364 M66178
## 15365 M66179
## 15366 M6618
## 15367 M6620
## 15368 M66211
## 15369 M66212
## 15370 M66219
## 15371 M66221
## 15372 M66222
## 15373 M66229
## 15374 M66231
## 15375 M66232
## 15376 M66239
## 15377 M66241
## 15378 M66242
## 15379 M66249
## 15380 M66251
## 15381 M66252
## 15382 M66259
## 15383 M66261
## 15384 M66262
## 15385 M66269
## 15386 M66271
## 15387 M66272
## 15388 M66279
## 15389 M6628
## 15390 M6629
## 15391 M6630
## 15392 M66311
## 15393 M66312
## 15394 M66319
## 15395 M66321
## 15396 M66322
## 15397 M66329
## 15398 M66331
## 15399 M66332
## 15400 M66339
## 15401 M66341
## 15402 M66342
## 15403 M66349
## 15404 M66351
## 15405 M66352
## 15406 M66359
## 15407 M66361
## 15408 M66362
## 15409 M66369
## 15410 M66371
## 15411 M66372
## 15412 M66379
## 15413 M6638
## 15414 M6639
## 15415 M6680
## 15416 M66811
## 15417 M66812
## 15418 M66819
## 15419 M66821
## 15420 M66822
## 15421 M66829
## 15422 M66831
## 15423 M66832
## 15424 M66839
## 15425 M66841
## 15426 M66842
## 15427 M66849
## 15428 M66851
## 15429 M66852
## 15430 M66859
## 15431 M66861
## 15432 M66862
## 15433 M66869
## 15434 M66871
## 15435 M66872
## 15436 M66879
## 15437 M6688
## 15438 M6689
## 15439 M669
## 15440 M6700
## 15441 M6701
## 15442 M6702
## 15443 M6720
## 15444 M67211
## 15445 M67212
## 15446 M67219
## 15447 M67221
## 15448 M67222
## 15449 M67229
## 15450 M67231
## 15451 M67232
## 15452 M67239
## 15453 M67241
## 15454 M67242
## 15455 M67249
## 15456 M67251
## 15457 M67252
## 15458 M67259
## 15459 M67261
## 15460 M67262
## 15461 M67269
## 15462 M67271
## 15463 M67272
## 15464 M67279
## 15465 M6728
## 15466 M6729
## 15467 M6730
## 15468 M67311
## 15469 M67312
## 15470 M67319
## 15471 M67321
## 15472 M67322
## 15473 M67329
## 15474 M67331
## 15475 M67332
## 15476 M67339
## 15477 M67341
## 15478 M67342
## 15479 M67349
## 15480 M67351
## 15481 M67352
## 15482 M67359
## 15483 M67361
## 15484 M67362
## 15485 M67369
## 15486 M67371
## 15487 M67372
## 15488 M67379
## 15489 M6738
## 15490 M6739
## 15491 M6740
## 15492 M67411
## 15493 M67412
## 15494 M67419
## 15495 M67421
## 15496 M67422
## 15497 M67429
## 15498 M67431
## 15499 M67432
## 15500 M67439
## 15501 M67441
## 15502 M67442
## 15503 M67449
## 15504 M67451
## 15505 M67452
## 15506 M67459
## 15507 M67461
## 15508 M67462
## 15509 M67469
## 15510 M67471
## 15511 M67472
## 15512 M67479
## 15513 M6748
## 15514 M6749
## 15515 M6750
## 15516 M6751
## 15517 M6752
## 15518 M6780
## 15519 M67811
## 15520 M67812
## 15521 M67813
## 15522 M67814
## 15523 M67819
## 15524 M67821
## 15525 M67822
## 15526 M67823
## 15527 M67824
## 15528 M67829
## 15529 M67831
## 15530 M67832
## 15531 M67833
## 15532 M67834
## 15533 M67839
## 15534 M67841
## 15535 M67842
## 15536 M67843
## 15537 M67844
## 15538 M67849
## 15539 M67851
## 15540 M67852
## 15541 M67853
## 15542 M67854
## 15543 M67859
## 15544 M67861
## 15545 M67862
## 15546 M67863
## 15547 M67864
## 15548 M67869
## 15549 M67871
## 15550 M67872
## 15551 M67873
## 15552 M67874
## 15553 M67879
## 15554 M6788
## 15555 M6789
## 15556 M6790
## 15557 M67911
## 15558 M67912
## 15559 M67919
## 15560 M67921
## 15561 M67922
## 15562 M67929
## 15563 M67931
## 15564 M67932
## 15565 M67939
## 15566 M67941
## 15567 M67942
## 15568 M67949
## 15569 M67951
## 15570 M67952
## 15571 M67959
## 15572 M67961
## 15573 M67962
## 15574 M67969
## 15575 M67971
## 15576 M67972
## 15577 M67979
## 15578 M6798
## 15579 M6799
## 15580 M70031
## 15581 M70032
## 15582 M70039
## 15583 M70041
## 15584 M70042
## 15585 M70049
## 15586 M7010
## 15587 M7011
## 15588 M7012
## 15589 M7020
## 15590 M7021
## 15591 M7022
## 15592 M7030
## 15593 M7031
## 15594 M7032
## 15595 M7040
## 15596 M7041
## 15597 M7042
## 15598 M7050
## 15599 M7051
## 15600 M7052
## 15601 M7060
## 15602 M7061
## 15603 M7062
## 15604 M7070
## 15605 M7071
## 15606 M7072
## 15607 M7080
## 15608 M70811
## 15609 M70812
## 15610 M70819
## 15611 M70821
## 15612 M70822
## 15613 M70829
## 15614 M70831
## 15615 M70832
## 15616 M70839
## 15617 M70841
## 15618 M70842
## 15619 M70849
## 15620 M70851
## 15621 M70852
## 15622 M70859
## 15623 M70861
## 15624 M70862
## 15625 M70869
## 15626 M70871
## 15627 M70872
## 15628 M70879
## 15629 M7088
## 15630 M7089
## 15631 M7090
## 15632 M70911
## 15633 M70912
## 15634 M70919
## 15635 M70921
## 15636 M70922
## 15637 M70929
## 15638 M70931
## 15639 M70932
## 15640 M70939
## 15641 M70941
## 15642 M70942
## 15643 M70949
## 15644 M70951
## 15645 M70952
## 15646 M70959
## 15647 M70961
## 15648 M70962
## 15649 M70969
## 15650 M70971
## 15651 M70972
## 15652 M70979
## 15653 M7098
## 15654 M7099
## 15655 M7100
## 15656 M71011
## 15657 M71012
## 15658 M71019
## 15659 M71021
## 15660 M71022
## 15661 M71029
## 15662 M71031
## 15663 M71032
## 15664 M71039
## 15665 M71041
## 15666 M71042
## 15667 M71049
## 15668 M71051
## 15669 M71052
## 15670 M71059
## 15671 M71061
## 15672 M71062
## 15673 M71069
## 15674 M71071
## 15675 M71072
## 15676 M71079
## 15677 M7108
## 15678 M7109
## 15679 M7110
## 15680 M71111
## 15681 M71112
## 15682 M71119
## 15683 M71121
## 15684 M71122
## 15685 M71129
## 15686 M71131
## 15687 M71132
## 15688 M71139
## 15689 M71141
## 15690 M71142
## 15691 M71149
## 15692 M71151
## 15693 M71152
## 15694 M71159
## 15695 M71161
## 15696 M71162
## 15697 M71169
## 15698 M71171
## 15699 M71172
## 15700 M71179
## 15701 M7118
## 15702 M7119
## 15703 M7120
## 15704 M7121
## 15705 M7122
## 15706 M7130
## 15707 M71311
## 15708 M71312
## 15709 M71319
## 15710 M71321
## 15711 M71322
## 15712 M71329
## 15713 M71331
## 15714 M71332
## 15715 M71339
## 15716 M71341
## 15717 M71342
## 15718 M71349
## 15719 M71351
## 15720 M71352
## 15721 M71359
## 15722 M71371
## 15723 M71372
## 15724 M71379
## 15725 M7138
## 15726 M7139
## 15727 M7140
## 15728 M71421
## 15729 M71422
## 15730 M71429
## 15731 M71431
## 15732 M71432
## 15733 M71439
## 15734 M71441
## 15735 M71442
## 15736 M71449
## 15737 M71451
## 15738 M71452
## 15739 M71459
## 15740 M71461
## 15741 M71462
## 15742 M71469
## 15743 M71471
## 15744 M71472
## 15745 M71479
## 15746 M7148
## 15747 M7149
## 15748 M7150
## 15749 M71521
## 15750 M71522
## 15751 M71529
## 15752 M71531
## 15753 M71532
## 15754 M71539
## 15755 M71541
## 15756 M71542
## 15757 M71549
## 15758 M71551
## 15759 M71552
## 15760 M71559
## 15761 M71561
## 15762 M71562
## 15763 M71569
## 15764 M71571
## 15765 M71572
## 15766 M71579
## 15767 M7158
## 15768 M7180
## 15769 M71811
## 15770 M71812
## 15771 M71819
## 15772 M71821
## 15773 M71822
## 15774 M71829
## 15775 M71831
## 15776 M71832
## 15777 M71839
## 15778 M71841
## 15779 M71842
## 15780 M71849
## 15781 M71851
## 15782 M71852
## 15783 M71859
## 15784 M71861
## 15785 M71862
## 15786 M71869
## 15787 M71871
## 15788 M71872
## 15789 M71879
## 15790 M7188
## 15791 M7189
## 15792 M719
## 15793 M720
## 15794 M721
## 15795 M722
## 15796 M724
## 15797 M726
## 15798 M728
## 15799 M729
## 15800 M7500
## 15801 M7501
## 15802 M7502
## 15803 M75100
## 15804 M75101
## 15805 M75102
## 15806 M75110
## 15807 M75111
## 15808 M75112
## 15809 M75120
## 15810 M75121
## 15811 M75122
## 15812 M7520
## 15813 M7521
## 15814 M7522
## 15815 M7530
## 15816 M7531
## 15817 M7532
## 15818 M7540
## 15819 M7541
## 15820 M7542
## 15821 M7550
## 15822 M7551
## 15823 M7552
## 15824 M7580
## 15825 M7581
## 15826 M7582
## 15827 M7590
## 15828 M7591
## 15829 M7592
## 15830 M7600
## 15831 M7601
## 15832 M7602
## 15833 M7610
## 15834 M7611
## 15835 M7612
## 15836 M7620
## 15837 M7621
## 15838 M7622
## 15839 M7630
## 15840 M7631
## 15841 M7632
## 15842 M7640
## 15843 M7641
## 15844 M7642
## 15845 M7650
## 15846 M7651
## 15847 M7652
## 15848 M7660
## 15849 M7661
## 15850 M7662
## 15851 M7670
## 15852 M7671
## 15853 M7672
## 15854 M76811
## 15855 M76812
## 15856 M76819
## 15857 M76821
## 15858 M76822
## 15859 M76829
## 15860 M76891
## 15861 M76892
## 15862 M76899
## 15863 M769
## 15864 M7700
## 15865 M7701
## 15866 M7702
## 15867 M7710
## 15868 M7711
## 15869 M7712
## 15870 M7720
## 15871 M7721
## 15872 M7722
## 15873 M7730
## 15874 M7731
## 15875 M7732
## 15876 M7740
## 15877 M7741
## 15878 M7742
## 15879 M7750
## 15880 M7751
## 15881 M7752
## 15882 M778
## 15883 M779
## 15884 M790
## 15885 M7910
## 15886 M7911
## 15887 M7912
## 15888 M7918
## 15889 M792
## 15890 M793
## 15891 M794
## 15892 M795
## 15893 M79601
## 15894 M79602
## 15895 M79603
## 15896 M79604
## 15897 M79605
## 15898 M79606
## 15899 M79609
## 15900 M79621
## 15901 M79622
## 15902 M79629
## 15903 M79631
## 15904 M79632
## 15905 M79639
## 15906 M79641
## 15907 M79642
## 15908 M79643
## 15909 M79644
## 15910 M79645
## 15911 M79646
## 15912 M79651
## 15913 M79652
## 15914 M79659
## 15915 M79661
## 15916 M79662
## 15917 M79669
## 15918 M79671
## 15919 M79672
## 15920 M79673
## 15921 M79674
## 15922 M79675
## 15923 M79676
## 15924 M797
## 15925 M79A11
## 15926 M79A12
## 15927 M79A19
## 15928 M79A21
## 15929 M79A22
## 15930 M79A29
## 15931 M79A3
## 15932 M79A9
## 15933 M7981
## 15934 M7989
## 15935 M799
## 15936 M8000XA
## 15937 M8000XD
## 15938 M8000XG
## 15939 M8000XK
## 15940 M8000XP
## 15941 M8000XS
## 15942 M80011A
## 15943 M80011D
## 15944 M80011G
## 15945 M80011K
## 15946 M80011P
## 15947 M80011S
## 15948 M80012A
## 15949 M80012D
## 15950 M80012G
## 15951 M80012K
## 15952 M80012P
## 15953 M80012S
## 15954 M80019A
## 15955 M80019D
## 15956 M80019G
## 15957 M80019K
## 15958 M80019P
## 15959 M80019S
## 15960 M80021A
## 15961 M80021D
## 15962 M80021G
## 15963 M80021K
## 15964 M80021P
## 15965 M80021S
## 15966 M80022A
## 15967 M80022D
## 15968 M80022G
## 15969 M80022K
## 15970 M80022P
## 15971 M80022S
## 15972 M80029A
## 15973 M80029D
## 15974 M80029G
## 15975 M80029K
## 15976 M80029P
## 15977 M80029S
## 15978 M80031A
## 15979 M80031D
## 15980 M80031G
## 15981 M80031K
## 15982 M80031P
## 15983 M80031S
## 15984 M80032A
## 15985 M80032D
## 15986 M80032G
## 15987 M80032K
## 15988 M80032P
## 15989 M80032S
## 15990 M80039A
## 15991 M80039D
## 15992 M80039G
## 15993 M80039K
## 15994 M80039P
## 15995 M80039S
## 15996 M80041A
## 15997 M80041D
## 15998 M80041G
## 15999 M80041K
## 16000 M80041P
## 16001 M80041S
## 16002 M80042A
## 16003 M80042D
## 16004 M80042G
## 16005 M80042K
## 16006 M80042P
## 16007 M80042S
## 16008 M80049A
## 16009 M80049D
## 16010 M80049G
## 16011 M80049K
## 16012 M80049P
## 16013 M80049S
## 16014 M80051A
## 16015 M80051D
## 16016 M80051G
## 16017 M80051K
## 16018 M80051P
## 16019 M80051S
## 16020 M80052A
## 16021 M80052D
## 16022 M80052G
## 16023 M80052K
## 16024 M80052P
## 16025 M80052S
## 16026 M80059A
## 16027 M80059D
## 16028 M80059G
## 16029 M80059K
## 16030 M80059P
## 16031 M80059S
## 16032 M80061A
## 16033 M80061D
## 16034 M80061G
## 16035 M80061K
## 16036 M80061P
## 16037 M80061S
## 16038 M80062A
## 16039 M80062D
## 16040 M80062G
## 16041 M80062K
## 16042 M80062P
## 16043 M80062S
## 16044 M80069A
## 16045 M80069D
## 16046 M80069G
## 16047 M80069K
## 16048 M80069P
## 16049 M80069S
## 16050 M80071A
## 16051 M80071D
## 16052 M80071G
## 16053 M80071K
## 16054 M80071P
## 16055 M80071S
## 16056 M80072A
## 16057 M80072D
## 16058 M80072G
## 16059 M80072K
## 16060 M80072P
## 16061 M80072S
## 16062 M80079A
## 16063 M80079D
## 16064 M80079G
## 16065 M80079K
## 16066 M80079P
## 16067 M80079S
## 16068 M8008XA
## 16069 M8008XD
## 16070 M8008XG
## 16071 M8008XK
## 16072 M8008XP
## 16073 M8008XS
## 16074 M8080XA
## 16075 M8080XD
## 16076 M8080XG
## 16077 M8080XK
## 16078 M8080XP
## 16079 M8080XS
## 16080 M80811A
## 16081 M80811D
## 16082 M80811G
## 16083 M80811K
## 16084 M80811P
## 16085 M80811S
## 16086 M80812A
## 16087 M80812D
## 16088 M80812G
## 16089 M80812K
## 16090 M80812P
## 16091 M80812S
## 16092 M80819A
## 16093 M80819D
## 16094 M80819G
## 16095 M80819K
## 16096 M80819P
## 16097 M80819S
## 16098 M80821A
## 16099 M80821D
## 16100 M80821G
## 16101 M80821K
## 16102 M80821P
## 16103 M80821S
## 16104 M80822A
## 16105 M80822D
## 16106 M80822G
## 16107 M80822K
## 16108 M80822P
## 16109 M80822S
## 16110 M80829A
## 16111 M80829D
## 16112 M80829G
## 16113 M80829K
## 16114 M80829P
## 16115 M80829S
## 16116 M80831A
## 16117 M80831D
## 16118 M80831G
## 16119 M80831K
## 16120 M80831P
## 16121 M80831S
## 16122 M80832A
## 16123 M80832D
## 16124 M80832G
## 16125 M80832K
## 16126 M80832P
## 16127 M80832S
## 16128 M80839A
## 16129 M80839D
## 16130 M80839G
## 16131 M80839K
## 16132 M80839P
## 16133 M80839S
## 16134 M80841A
## 16135 M80841D
## 16136 M80841G
## 16137 M80841K
## 16138 M80841P
## 16139 M80841S
## 16140 M80842A
## 16141 M80842D
## 16142 M80842G
## 16143 M80842K
## 16144 M80842P
## 16145 M80842S
## 16146 M80849A
## 16147 M80849D
## 16148 M80849G
## 16149 M80849K
## 16150 M80849P
## 16151 M80849S
## 16152 M80851A
## 16153 M80851D
## 16154 M80851G
## 16155 M80851K
## 16156 M80851P
## 16157 M80851S
## 16158 M80852A
## 16159 M80852D
## 16160 M80852G
## 16161 M80852K
## 16162 M80852P
## 16163 M80852S
## 16164 M80859A
## 16165 M80859D
## 16166 M80859G
## 16167 M80859K
## 16168 M80859P
## 16169 M80859S
## 16170 M80861A
## 16171 M80861D
## 16172 M80861G
## 16173 M80861K
## 16174 M80861P
## 16175 M80861S
## 16176 M80862A
## 16177 M80862D
## 16178 M80862G
## 16179 M80862K
## 16180 M80862P
## 16181 M80862S
## 16182 M80869A
## 16183 M80869D
## 16184 M80869G
## 16185 M80869K
## 16186 M80869P
## 16187 M80869S
## 16188 M80871A
## 16189 M80871D
## 16190 M80871G
## 16191 M80871K
## 16192 M80871P
## 16193 M80871S
## 16194 M80872A
## 16195 M80872D
## 16196 M80872G
## 16197 M80872K
## 16198 M80872P
## 16199 M80872S
## 16200 M80879A
## 16201 M80879D
## 16202 M80879G
## 16203 M80879K
## 16204 M80879P
## 16205 M80879S
## 16206 M8088XA
## 16207 M8088XD
## 16208 M8088XG
## 16209 M8088XK
## 16210 M8088XP
## 16211 M8088XS
## 16212 M810
## 16213 M816
## 16214 M818
## 16215 M830
## 16216 M831
## 16217 M832
## 16218 M833
## 16219 M834
## 16220 M835
## 16221 M838
## 16222 M839
## 16223 M8430XA
## 16224 M8430XD
## 16225 M8430XG
## 16226 M8430XK
## 16227 M8430XP
## 16228 M8430XS
## 16229 M84311A
## 16230 M84311D
## 16231 M84311G
## 16232 M84311K
## 16233 M84311P
## 16234 M84311S
## 16235 M84312A
## 16236 M84312D
## 16237 M84312G
## 16238 M84312K
## 16239 M84312P
## 16240 M84312S
## 16241 M84319A
## 16242 M84319D
## 16243 M84319G
## 16244 M84319K
## 16245 M84319P
## 16246 M84319S
## 16247 M84321A
## 16248 M84321D
## 16249 M84321G
## 16250 M84321K
## 16251 M84321P
## 16252 M84321S
## 16253 M84322A
## 16254 M84322D
## 16255 M84322G
## 16256 M84322K
## 16257 M84322P
## 16258 M84322S
## 16259 M84329A
## 16260 M84329D
## 16261 M84329G
## 16262 M84329K
## 16263 M84329P
## 16264 M84329S
## 16265 M84331A
## 16266 M84331D
## 16267 M84331G
## 16268 M84331K
## 16269 M84331P
## 16270 M84331S
## 16271 M84332A
## 16272 M84332D
## 16273 M84332G
## 16274 M84332K
## 16275 M84332P
## 16276 M84332S
## 16277 M84333A
## 16278 M84333D
## 16279 M84333G
## 16280 M84333K
## 16281 M84333P
## 16282 M84333S
## 16283 M84334A
## 16284 M84334D
## 16285 M84334G
## 16286 M84334K
## 16287 M84334P
## 16288 M84334S
## 16289 M84339A
## 16290 M84339D
## 16291 M84339G
## 16292 M84339K
## 16293 M84339P
## 16294 M84339S
## 16295 M84341A
## 16296 M84341D
## 16297 M84341G
## 16298 M84341K
## 16299 M84341P
## 16300 M84341S
## 16301 M84342A
## 16302 M84342D
## 16303 M84342G
## 16304 M84342K
## 16305 M84342P
## 16306 M84342S
## 16307 M84343A
## 16308 M84343D
## 16309 M84343G
## 16310 M84343K
## 16311 M84343P
## 16312 M84343S
## 16313 M84344A
## 16314 M84344D
## 16315 M84344G
## 16316 M84344K
## 16317 M84344P
## 16318 M84344S
## 16319 M84345A
## 16320 M84345D
## 16321 M84345G
## 16322 M84345K
## 16323 M84345P
## 16324 M84345S
## 16325 M84346A
## 16326 M84346D
## 16327 M84346G
## 16328 M84346K
## 16329 M84346P
## 16330 M84346S
## 16331 M84350A
## 16332 M84350D
## 16333 M84350G
## 16334 M84350K
## 16335 M84350P
## 16336 M84350S
## 16337 M84351A
## 16338 M84351D
## 16339 M84351G
## 16340 M84351K
## 16341 M84351P
## 16342 M84351S
## 16343 M84352A
## 16344 M84352D
## 16345 M84352G
## 16346 M84352K
## 16347 M84352P
## 16348 M84352S
## 16349 M84353A
## 16350 M84353D
## 16351 M84353G
## 16352 M84353K
## 16353 M84353P
## 16354 M84353S
## 16355 M84359A
## 16356 M84359D
## 16357 M84359G
## 16358 M84359K
## 16359 M84359P
## 16360 M84359S
## 16361 M84361A
## 16362 M84361D
## 16363 M84361G
## 16364 M84361K
## 16365 M84361P
## 16366 M84361S
## 16367 M84362A
## 16368 M84362D
## 16369 M84362G
## 16370 M84362K
## 16371 M84362P
## 16372 M84362S
## 16373 M84363A
## 16374 M84363D
## 16375 M84363G
## 16376 M84363K
## 16377 M84363P
## 16378 M84363S
## 16379 M84364A
## 16380 M84364D
## 16381 M84364G
## 16382 M84364K
## 16383 M84364P
## 16384 M84364S
## 16385 M84369A
## 16386 M84369D
## 16387 M84369G
## 16388 M84369K
## 16389 M84369P
## 16390 M84369S
## 16391 M84371A
## 16392 M84371D
## 16393 M84371G
## 16394 M84371K
## 16395 M84371P
## 16396 M84371S
## 16397 M84372A
## 16398 M84372D
## 16399 M84372G
## 16400 M84372K
## 16401 M84372P
## 16402 M84372S
## 16403 M84373A
## 16404 M84373D
## 16405 M84373G
## 16406 M84373K
## 16407 M84373P
## 16408 M84373S
## 16409 M84374A
## 16410 M84374D
## 16411 M84374G
## 16412 M84374K
## 16413 M84374P
## 16414 M84374S
## 16415 M84375A
## 16416 M84375D
## 16417 M84375G
## 16418 M84375K
## 16419 M84375P
## 16420 M84375S
## 16421 M84376A
## 16422 M84376D
## 16423 M84376G
## 16424 M84376K
## 16425 M84376P
## 16426 M84376S
## 16427 M84377A
## 16428 M84377D
## 16429 M84377G
## 16430 M84377K
## 16431 M84377P
## 16432 M84377S
## 16433 M84378A
## 16434 M84378D
## 16435 M84378G
## 16436 M84378K
## 16437 M84378P
## 16438 M84378S
## 16439 M84379A
## 16440 M84379D
## 16441 M84379G
## 16442 M84379K
## 16443 M84379P
## 16444 M84379S
## 16445 M8438XA
## 16446 M8438XD
## 16447 M8438XG
## 16448 M8438XK
## 16449 M8438XP
## 16450 M8438XS
## 16451 M8440XA
## 16452 M8440XD
## 16453 M8440XG
## 16454 M8440XK
## 16455 M8440XP
## 16456 M8440XS
## 16457 M84411A
## 16458 M84411D
## 16459 M84411G
## 16460 M84411K
## 16461 M84411P
## 16462 M84411S
## 16463 M84412A
## 16464 M84412D
## 16465 M84412G
## 16466 M84412K
## 16467 M84412P
## 16468 M84412S
## 16469 M84419A
## 16470 M84419D
## 16471 M84419G
## 16472 M84419K
## 16473 M84419P
## 16474 M84419S
## 16475 M84421A
## 16476 M84421D
## 16477 M84421G
## 16478 M84421K
## 16479 M84421P
## 16480 M84421S
## 16481 M84422A
## 16482 M84422D
## 16483 M84422G
## 16484 M84422K
## 16485 M84422P
## 16486 M84422S
## 16487 M84429A
## 16488 M84429D
## 16489 M84429G
## 16490 M84429K
## 16491 M84429P
## 16492 M84429S
## 16493 M84431A
## 16494 M84431D
## 16495 M84431G
## 16496 M84431K
## 16497 M84431P
## 16498 M84431S
## 16499 M84432A
## 16500 M84432D
## 16501 M84432G
## 16502 M84432K
## 16503 M84432P
## 16504 M84432S
## 16505 M84433A
## 16506 M84433D
## 16507 M84433G
## 16508 M84433K
## 16509 M84433P
## 16510 M84433S
## 16511 M84434A
## 16512 M84434D
## 16513 M84434G
## 16514 M84434K
## 16515 M84434P
## 16516 M84434S
## 16517 M84439A
## 16518 M84439D
## 16519 M84439G
## 16520 M84439K
## 16521 M84439P
## 16522 M84439S
## 16523 M84441A
## 16524 M84441D
## 16525 M84441G
## 16526 M84441K
## 16527 M84441P
## 16528 M84441S
## 16529 M84442A
## 16530 M84442D
## 16531 M84442G
## 16532 M84442K
## 16533 M84442P
## 16534 M84442S
## 16535 M84443A
## 16536 M84443D
## 16537 M84443G
## 16538 M84443K
## 16539 M84443P
## 16540 M84443S
## 16541 M84444A
## 16542 M84444D
## 16543 M84444G
## 16544 M84444K
## 16545 M84444P
## 16546 M84444S
## 16547 M84445A
## 16548 M84445D
## 16549 M84445G
## 16550 M84445K
## 16551 M84445P
## 16552 M84445S
## 16553 M84446A
## 16554 M84446D
## 16555 M84446G
## 16556 M84446K
## 16557 M84446P
## 16558 M84446S
## 16559 M84451A
## 16560 M84451D
## 16561 M84451G
## 16562 M84451K
## 16563 M84451P
## 16564 M84451S
## 16565 M84452A
## 16566 M84452D
## 16567 M84452G
## 16568 M84452K
## 16569 M84452P
## 16570 M84452S
## 16571 M84453A
## 16572 M84453D
## 16573 M84453G
## 16574 M84453K
## 16575 M84453P
## 16576 M84453S
## 16577 M84454A
## 16578 M84454D
## 16579 M84454G
## 16580 M84454K
## 16581 M84454P
## 16582 M84454S
## 16583 M84459A
## 16584 M84459D
## 16585 M84459G
## 16586 M84459K
## 16587 M84459P
## 16588 M84459S
## 16589 M84461A
## 16590 M84461D
## 16591 M84461G
## 16592 M84461K
## 16593 M84461P
## 16594 M84461S
## 16595 M84462A
## 16596 M84462D
## 16597 M84462G
## 16598 M84462K
## 16599 M84462P
## 16600 M84462S
## 16601 M84463A
## 16602 M84463D
## 16603 M84463G
## 16604 M84463K
## 16605 M84463P
## 16606 M84463S
## 16607 M84464A
## 16608 M84464D
## 16609 M84464G
## 16610 M84464K
## 16611 M84464P
## 16612 M84464S
## 16613 M84469A
## 16614 M84469D
## 16615 M84469G
## 16616 M84469K
## 16617 M84469P
## 16618 M84469S
## 16619 M84471A
## 16620 M84471D
## 16621 M84471G
## 16622 M84471K
## 16623 M84471P
## 16624 M84471S
## 16625 M84472A
## 16626 M84472D
## 16627 M84472G
## 16628 M84472K
## 16629 M84472P
## 16630 M84472S
## 16631 M84473A
## 16632 M84473D
## 16633 M84473G
## 16634 M84473K
## 16635 M84473P
## 16636 M84473S
## 16637 M84474A
## 16638 M84474D
## 16639 M84474G
## 16640 M84474K
## 16641 M84474P
## 16642 M84474S
## 16643 M84475A
## 16644 M84475D
## 16645 M84475G
## 16646 M84475K
## 16647 M84475P
## 16648 M84475S
## 16649 M84476A
## 16650 M84476D
## 16651 M84476G
## 16652 M84476K
## 16653 M84476P
## 16654 M84476S
## 16655 M84477A
## 16656 M84477D
## 16657 M84477G
## 16658 M84477K
## 16659 M84477P
## 16660 M84477S
## 16661 M84478A
## 16662 M84478D
## 16663 M84478G
## 16664 M84478K
## 16665 M84478P
## 16666 M84478S
## 16667 M84479A
## 16668 M84479D
## 16669 M84479G
## 16670 M84479K
## 16671 M84479P
## 16672 M84479S
## 16673 M8448XA
## 16674 M8448XD
## 16675 M8448XG
## 16676 M8448XK
## 16677 M8448XP
## 16678 M8448XS
## 16679 M8450XA
## 16680 M8450XD
## 16681 M8450XG
## 16682 M8450XK
## 16683 M8450XP
## 16684 M8450XS
## 16685 M84511A
## 16686 M84511D
## 16687 M84511G
## 16688 M84511K
## 16689 M84511P
## 16690 M84511S
## 16691 M84512A
## 16692 M84512D
## 16693 M84512G
## 16694 M84512K
## 16695 M84512P
## 16696 M84512S
## 16697 M84519A
## 16698 M84519D
## 16699 M84519G
## 16700 M84519K
## 16701 M84519P
## 16702 M84519S
## 16703 M84521A
## 16704 M84521D
## 16705 M84521G
## 16706 M84521K
## 16707 M84521P
## 16708 M84521S
## 16709 M84522A
## 16710 M84522D
## 16711 M84522G
## 16712 M84522K
## 16713 M84522P
## 16714 M84522S
## 16715 M84529A
## 16716 M84529D
## 16717 M84529G
## 16718 M84529K
## 16719 M84529P
## 16720 M84529S
## 16721 M84531A
## 16722 M84531D
## 16723 M84531G
## 16724 M84531K
## 16725 M84531P
## 16726 M84531S
## 16727 M84532A
## 16728 M84532D
## 16729 M84532G
## 16730 M84532K
## 16731 M84532P
## 16732 M84532S
## 16733 M84533A
## 16734 M84533D
## 16735 M84533G
## 16736 M84533K
## 16737 M84533P
## 16738 M84533S
## 16739 M84534A
## 16740 M84534D
## 16741 M84534G
## 16742 M84534K
## 16743 M84534P
## 16744 M84534S
## 16745 M84539A
## 16746 M84539D
## 16747 M84539G
## 16748 M84539K
## 16749 M84539P
## 16750 M84539S
## 16751 M84541A
## 16752 M84541D
## 16753 M84541G
## 16754 M84541K
## 16755 M84541P
## 16756 M84541S
## 16757 M84542A
## 16758 M84542D
## 16759 M84542G
## 16760 M84542K
## 16761 M84542P
## 16762 M84542S
## 16763 M84549A
## 16764 M84549D
## 16765 M84549G
## 16766 M84549K
## 16767 M84549P
## 16768 M84549S
## 16769 M84550A
## 16770 M84550D
## 16771 M84550G
## 16772 M84550K
## 16773 M84550P
## 16774 M84550S
## 16775 M84551A
## 16776 M84551D
## 16777 M84551G
## 16778 M84551K
## 16779 M84551P
## 16780 M84551S
## 16781 M84552A
## 16782 M84552D
## 16783 M84552G
## 16784 M84552K
## 16785 M84552P
## 16786 M84552S
## 16787 M84553A
## 16788 M84553D
## 16789 M84553G
## 16790 M84553K
## 16791 M84553P
## 16792 M84553S
## 16793 M84559A
## 16794 M84559D
## 16795 M84559G
## 16796 M84559K
## 16797 M84559P
## 16798 M84559S
## 16799 M84561A
## 16800 M84561D
## 16801 M84561G
## 16802 M84561K
## 16803 M84561P
## 16804 M84561S
## 16805 M84562A
## 16806 M84562D
## 16807 M84562G
## 16808 M84562K
## 16809 M84562P
## 16810 M84562S
## 16811 M84563A
## 16812 M84563D
## 16813 M84563G
## 16814 M84563K
## 16815 M84563P
## 16816 M84563S
## 16817 M84564A
## 16818 M84564D
## 16819 M84564G
## 16820 M84564K
## 16821 M84564P
## 16822 M84564S
## 16823 M84569A
## 16824 M84569D
## 16825 M84569G
## 16826 M84569K
## 16827 M84569P
## 16828 M84569S
## 16829 M84571A
## 16830 M84571D
## 16831 M84571G
## 16832 M84571K
## 16833 M84571P
## 16834 M84571S
## 16835 M84572A
## 16836 M84572D
## 16837 M84572G
## 16838 M84572K
## 16839 M84572P
## 16840 M84572S
## 16841 M84573A
## 16842 M84573D
## 16843 M84573G
## 16844 M84573K
## 16845 M84573P
## 16846 M84573S
## 16847 M84574A
## 16848 M84574D
## 16849 M84574G
## 16850 M84574K
## 16851 M84574P
## 16852 M84574S
## 16853 M84575A
## 16854 M84575D
## 16855 M84575G
## 16856 M84575K
## 16857 M84575P
## 16858 M84575S
## 16859 M84576A
## 16860 M84576D
## 16861 M84576G
## 16862 M84576K
## 16863 M84576P
## 16864 M84576S
## 16865 M8458XA
## 16866 M8458XD
## 16867 M8458XG
## 16868 M8458XK
## 16869 M8458XP
## 16870 M8458XS
## 16871 M8460XA
## 16872 M8460XD
## 16873 M8460XG
## 16874 M8460XK
## 16875 M8460XP
## 16876 M8460XS
## 16877 M84611A
## 16878 M84611D
## 16879 M84611G
## 16880 M84611K
## 16881 M84611P
## 16882 M84611S
## 16883 M84612A
## 16884 M84612D
## 16885 M84612G
## 16886 M84612K
## 16887 M84612P
## 16888 M84612S
## 16889 M84619A
## 16890 M84619D
## 16891 M84619G
## 16892 M84619K
## 16893 M84619P
## 16894 M84619S
## 16895 M84621A
## 16896 M84621D
## 16897 M84621G
## 16898 M84621K
## 16899 M84621P
## 16900 M84621S
## 16901 M84622A
## 16902 M84622D
## 16903 M84622G
## 16904 M84622K
## 16905 M84622P
## 16906 M84622S
## 16907 M84629A
## 16908 M84629D
## 16909 M84629G
## 16910 M84629K
## 16911 M84629P
## 16912 M84629S
## 16913 M84631A
## 16914 M84631D
## 16915 M84631G
## 16916 M84631K
## 16917 M84631P
## 16918 M84631S
## 16919 M84632A
## 16920 M84632D
## 16921 M84632G
## 16922 M84632K
## 16923 M84632P
## 16924 M84632S
## 16925 M84633A
## 16926 M84633D
## 16927 M84633G
## 16928 M84633K
## 16929 M84633P
## 16930 M84633S
## 16931 M84634A
## 16932 M84634D
## 16933 M84634G
## 16934 M84634K
## 16935 M84634P
## 16936 M84634S
## 16937 M84639A
## 16938 M84639D
## 16939 M84639G
## 16940 M84639K
## 16941 M84639P
## 16942 M84639S
## 16943 M84641A
## 16944 M84641D
## 16945 M84641G
## 16946 M84641K
## 16947 M84641P
## 16948 M84641S
## 16949 M84642A
## 16950 M84642D
## 16951 M84642G
## 16952 M84642K
## 16953 M84642P
## 16954 M84642S
## 16955 M84649A
## 16956 M84649D
## 16957 M84649G
## 16958 M84649K
## 16959 M84649P
## 16960 M84649S
## 16961 M84650A
## 16962 M84650D
## 16963 M84650G
## 16964 M84650K
## 16965 M84650P
## 16966 M84650S
## 16967 M84651A
## 16968 M84651D
## 16969 M84651G
## 16970 M84651K
## 16971 M84651P
## 16972 M84651S
## 16973 M84652A
## 16974 M84652D
## 16975 M84652G
## 16976 M84652K
## 16977 M84652P
## 16978 M84652S
## 16979 M84653A
## 16980 M84653D
## 16981 M84653G
## 16982 M84653K
## 16983 M84653P
## 16984 M84653S
## 16985 M84659A
## 16986 M84659D
## 16987 M84659G
## 16988 M84659K
## 16989 M84659P
## 16990 M84659S
## 16991 M84661A
## 16992 M84661D
## 16993 M84661G
## 16994 M84661K
## 16995 M84661P
## 16996 M84661S
## 16997 M84662A
## 16998 M84662D
## 16999 M84662G
## 17000 M84662K
## 17001 M84662P
## 17002 M84662S
## 17003 M84663A
## 17004 M84663D
## 17005 M84663G
## 17006 M84663K
## 17007 M84663P
## 17008 M84663S
## 17009 M84664A
## 17010 M84664D
## 17011 M84664G
## 17012 M84664K
## 17013 M84664P
## 17014 M84664S
## 17015 M84669A
## 17016 M84669D
## 17017 M84669G
## 17018 M84669K
## 17019 M84669P
## 17020 M84669S
## 17021 M84671A
## 17022 M84671D
## 17023 M84671G
## 17024 M84671K
## 17025 M84671P
## 17026 M84671S
## 17027 M84672A
## 17028 M84672D
## 17029 M84672G
## 17030 M84672K
## 17031 M84672P
## 17032 M84672S
## 17033 M84673A
## 17034 M84673D
## 17035 M84673G
## 17036 M84673K
## 17037 M84673P
## 17038 M84673S
## 17039 M84674A
## 17040 M84674D
## 17041 M84674G
## 17042 M84674K
## 17043 M84674P
## 17044 M84674S
## 17045 M84675A
## 17046 M84675D
## 17047 M84675G
## 17048 M84675K
## 17049 M84675P
## 17050 M84675S
## 17051 M84676A
## 17052 M84676D
## 17053 M84676G
## 17054 M84676K
## 17055 M84676P
## 17056 M84676S
## 17057 M8468XA
## 17058 M8468XD
## 17059 M8468XG
## 17060 M8468XK
## 17061 M8468XP
## 17062 M8468XS
## 17063 M84750A
## 17064 M84750D
## 17065 M84750G
## 17066 M84750K
## 17067 M84750P
## 17068 M84750S
## 17069 M84751A
## 17070 M84751D
## 17071 M84751G
## 17072 M84751K
## 17073 M84751P
## 17074 M84751S
## 17075 M84752A
## 17076 M84752D
## 17077 M84752G
## 17078 M84752K
## 17079 M84752P
## 17080 M84752S
## 17081 M84753A
## 17082 M84753D
## 17083 M84753G
## 17084 M84753K
## 17085 M84753P
## 17086 M84753S
## 17087 M84754A
## 17088 M84754D
## 17089 M84754G
## 17090 M84754K
## 17091 M84754P
## 17092 M84754S
## 17093 M84755A
## 17094 M84755D
## 17095 M84755G
## 17096 M84755K
## 17097 M84755P
## 17098 M84755S
## 17099 M84756A
## 17100 M84756D
## 17101 M84756G
## 17102 M84756K
## 17103 M84756P
## 17104 M84756S
## 17105 M84757A
## 17106 M84757D
## 17107 M84757G
## 17108 M84757K
## 17109 M84757P
## 17110 M84757S
## 17111 M84758A
## 17112 M84758D
## 17113 M84758G
## 17114 M84758K
## 17115 M84758P
## 17116 M84758S
## 17117 M84759A
## 17118 M84759D
## 17119 M84759G
## 17120 M84759K
## 17121 M84759P
## 17122 M84759S
## 17123 M8480
## 17124 M84811
## 17125 M84812
## 17126 M84819
## 17127 M84821
## 17128 M84822
## 17129 M84829
## 17130 M84831
## 17131 M84832
## 17132 M84833
## 17133 M84834
## 17134 M84839
## 17135 M84841
## 17136 M84842
## 17137 M84849
## 17138 M84851
## 17139 M84852
## 17140 M84859
## 17141 M84861
## 17142 M84862
## 17143 M84863
## 17144 M84864
## 17145 M84869
## 17146 M84871
## 17147 M84872
## 17148 M84879
## 17149 M8488
## 17150 M849
## 17151 M8500
## 17152 M85011
## 17153 M85012
## 17154 M85019
## 17155 M85021
## 17156 M85022
## 17157 M85029
## 17158 M85031
## 17159 M85032
## 17160 M85039
## 17161 M85041
## 17162 M85042
## 17163 M85049
## 17164 M85051
## 17165 M85052
## 17166 M85059
## 17167 M85061
## 17168 M85062
## 17169 M85069
## 17170 M85071
## 17171 M85072
## 17172 M85079
## 17173 M8508
## 17174 M8509
## 17175 M8510
## 17176 M85111
## 17177 M85112
## 17178 M85119
## 17179 M85121
## 17180 M85122
## 17181 M85129
## 17182 M85131
## 17183 M85132
## 17184 M85139
## 17185 M85141
## 17186 M85142
## 17187 M85149
## 17188 M85151
## 17189 M85152
## 17190 M85159
## 17191 M85161
## 17192 M85162
## 17193 M85169
## 17194 M85171
## 17195 M85172
## 17196 M85179
## 17197 M8518
## 17198 M8519
## 17199 M852
## 17200 M8530
## 17201 M85311
## 17202 M85312
## 17203 M85319
## 17204 M85321
## 17205 M85322
## 17206 M85329
## 17207 M85331
## 17208 M85332
## 17209 M85339
## 17210 M85341
## 17211 M85342
## 17212 M85349
## 17213 M85351
## 17214 M85352
## 17215 M85359
## 17216 M85361
## 17217 M85362
## 17218 M85369
## 17219 M85371
## 17220 M85372
## 17221 M85379
## 17222 M8538
## 17223 M8539
## 17224 M8540
## 17225 M85411
## 17226 M85412
## 17227 M85419
## 17228 M85421
## 17229 M85422
## 17230 M85429
## 17231 M85431
## 17232 M85432
## 17233 M85439
## 17234 M85441
## 17235 M85442
## 17236 M85449
## 17237 M85451
## 17238 M85452
## 17239 M85459
## 17240 M85461
## 17241 M85462
## 17242 M85469
## 17243 M85471
## 17244 M85472
## 17245 M85479
## 17246 M8548
## 17247 M8550
## 17248 M85511
## 17249 M85512
## 17250 M85519
## 17251 M85521
## 17252 M85522
## 17253 M85529
## 17254 M85531
## 17255 M85532
## 17256 M85539
## 17257 M85541
## 17258 M85542
## 17259 M85549
## 17260 M85551
## 17261 M85552
## 17262 M85559
## 17263 M85561
## 17264 M85562
## 17265 M85569
## 17266 M85571
## 17267 M85572
## 17268 M85579
## 17269 M8558
## 17270 M8559
## 17271 M8560
## 17272 M85611
## 17273 M85612
## 17274 M85619
## 17275 M85621
## 17276 M85622
## 17277 M85629
## 17278 M85631
## 17279 M85632
## 17280 M85639
## 17281 M85641
## 17282 M85642
## 17283 M85649
## 17284 M85651
## 17285 M85652
## 17286 M85659
## 17287 M85661
## 17288 M85662
## 17289 M85669
## 17290 M85671
## 17291 M85672
## 17292 M85679
## 17293 M8568
## 17294 M8569
## 17295 M8580
## 17296 M85811
## 17297 M85812
## 17298 M85819
## 17299 M85821
## 17300 M85822
## 17301 M85829
## 17302 M85831
## 17303 M85832
## 17304 M85839
## 17305 M85841
## 17306 M85842
## 17307 M85849
## 17308 M85851
## 17309 M85852
## 17310 M85859
## 17311 M85861
## 17312 M85862
## 17313 M85869
## 17314 M85871
## 17315 M85872
## 17316 M85879
## 17317 M8588
## 17318 M8589
## 17319 M859
## 17320 M8600
## 17321 M86011
## 17322 M86012
## 17323 M86019
## 17324 M86021
## 17325 M86022
## 17326 M86029
## 17327 M86031
## 17328 M86032
## 17329 M86039
## 17330 M86041
## 17331 M86042
## 17332 M86049
## 17333 M86051
## 17334 M86052
## 17335 M86059
## 17336 M86061
## 17337 M86062
## 17338 M86069
## 17339 M86071
## 17340 M86072
## 17341 M86079
## 17342 M8608
## 17343 M8609
## 17344 M8610
## 17345 M86111
## 17346 M86112
## 17347 M86119
## 17348 M86121
## 17349 M86122
## 17350 M86129
## 17351 M86131
## 17352 M86132
## 17353 M86139
## 17354 M86141
## 17355 M86142
## 17356 M86149
## 17357 M86151
## 17358 M86152
## 17359 M86159
## 17360 M86161
## 17361 M86162
## 17362 M86169
## 17363 M86171
## 17364 M86172
## 17365 M86179
## 17366 M8618
## 17367 M8619
## 17368 M8620
## 17369 M86211
## 17370 M86212
## 17371 M86219
## 17372 M86221
## 17373 M86222
## 17374 M86229
## 17375 M86231
## 17376 M86232
## 17377 M86239
## 17378 M86241
## 17379 M86242
## 17380 M86249
## 17381 M86251
## 17382 M86252
## 17383 M86259
## 17384 M86261
## 17385 M86262
## 17386 M86269
## 17387 M86271
## 17388 M86272
## 17389 M86279
## 17390 M8628
## 17391 M8629
## 17392 M8630
## 17393 M86311
## 17394 M86312
## 17395 M86319
## 17396 M86321
## 17397 M86322
## 17398 M86329
## 17399 M86331
## 17400 M86332
## 17401 M86339
## 17402 M86341
## 17403 M86342
## 17404 M86349
## 17405 M86351
## 17406 M86352
## 17407 M86359
## 17408 M86361
## 17409 M86362
## 17410 M86369
## 17411 M86371
## 17412 M86372
## 17413 M86379
## 17414 M8638
## 17415 M8639
## 17416 M8640
## 17417 M86411
## 17418 M86412
## 17419 M86419
## 17420 M86421
## 17421 M86422
## 17422 M86429
## 17423 M86431
## 17424 M86432
## 17425 M86439
## 17426 M86441
## 17427 M86442
## 17428 M86449
## 17429 M86451
## 17430 M86452
## 17431 M86459
## 17432 M86461
## 17433 M86462
## 17434 M86469
## 17435 M86471
## 17436 M86472
## 17437 M86479
## 17438 M8648
## 17439 M8649
## 17440 M8650
## 17441 M86511
## 17442 M86512
## 17443 M86519
## 17444 M86521
## 17445 M86522
## 17446 M86529
## 17447 M86531
## 17448 M86532
## 17449 M86539
## 17450 M86541
## 17451 M86542
## 17452 M86549
## 17453 M86551
## 17454 M86552
## 17455 M86559
## 17456 M86561
## 17457 M86562
## 17458 M86569
## 17459 M86571
## 17460 M86572
## 17461 M86579
## 17462 M8658
## 17463 M8659
## 17464 M8660
## 17465 M86611
## 17466 M86612
## 17467 M86619
## 17468 M86621
## 17469 M86622
## 17470 M86629
## 17471 M86631
## 17472 M86632
## 17473 M86639
## 17474 M86641
## 17475 M86642
## 17476 M86649
## 17477 M86651
## 17478 M86652
## 17479 M86659
## 17480 M86661
## 17481 M86662
## 17482 M86669
## 17483 M86671
## 17484 M86672
## 17485 M86679
## 17486 M8668
## 17487 M8669
## 17488 M868X0
## 17489 M868X1
## 17490 M868X2
## 17491 M868X3
## 17492 M868X4
## 17493 M868X5
## 17494 M868X6
## 17495 M868X7
## 17496 M868X8
## 17497 M868X9
## 17498 M869
## 17499 M8700
## 17500 M87011
## 17501 M87012
## 17502 M87019
## 17503 M87021
## 17504 M87022
## 17505 M87029
## 17506 M87031
## 17507 M87032
## 17508 M87033
## 17509 M87034
## 17510 M87035
## 17511 M87036
## 17512 M87037
## 17513 M87038
## 17514 M87039
## 17515 M87041
## 17516 M87042
## 17517 M87043
## 17518 M87044
## 17519 M87045
## 17520 M87046
## 17521 M87050
## 17522 M87051
## 17523 M87052
## 17524 M87059
## 17525 M87061
## 17526 M87062
## 17527 M87063
## 17528 M87064
## 17529 M87065
## 17530 M87066
## 17531 M87071
## 17532 M87072
## 17533 M87073
## 17534 M87074
## 17535 M87075
## 17536 M87076
## 17537 M87077
## 17538 M87078
## 17539 M87079
## 17540 M8708
## 17541 M8709
## 17542 M8710
## 17543 M87111
## 17544 M87112
## 17545 M87119
## 17546 M87121
## 17547 M87122
## 17548 M87129
## 17549 M87131
## 17550 M87132
## 17551 M87133
## 17552 M87134
## 17553 M87135
## 17554 M87136
## 17555 M87137
## 17556 M87138
## 17557 M87139
## 17558 M87141
## 17559 M87142
## 17560 M87143
## 17561 M87144
## 17562 M87145
## 17563 M87146
## 17564 M87150
## 17565 M87151
## 17566 M87152
## 17567 M87159
## 17568 M87161
## 17569 M87162
## 17570 M87163
## 17571 M87164
## 17572 M87165
## 17573 M87166
## 17574 M87171
## 17575 M87172
## 17576 M87173
## 17577 M87174
## 17578 M87175
## 17579 M87176
## 17580 M87177
## 17581 M87178
## 17582 M87179
## 17583 M87180
## 17584 M87188
## 17585 M8719
## 17586 M8720
## 17587 M87211
## 17588 M87212
## 17589 M87219
## 17590 M87221
## 17591 M87222
## 17592 M87229
## 17593 M87231
## 17594 M87232
## 17595 M87233
## 17596 M87234
## 17597 M87235
## 17598 M87236
## 17599 M87237
## 17600 M87238
## 17601 M87239
## 17602 M87241
## 17603 M87242
## 17604 M87243
## 17605 M87244
## 17606 M87245
## 17607 M87246
## 17608 M87250
## 17609 M87251
## 17610 M87252
## 17611 M87256
## 17612 M87261
## 17613 M87262
## 17614 M87263
## 17615 M87264
## 17616 M87265
## 17617 M87266
## 17618 M87271
## 17619 M87272
## 17620 M87273
## 17621 M87274
## 17622 M87275
## 17623 M87276
## 17624 M87277
## 17625 M87278
## 17626 M87279
## 17627 M8728
## 17628 M8729
## 17629 M8730
## 17630 M87311
## 17631 M87312
## 17632 M87319
## 17633 M87321
## 17634 M87322
## 17635 M87329
## 17636 M87331
## 17637 M87332
## 17638 M87333
## 17639 M87334
## 17640 M87335
## 17641 M87336
## 17642 M87337
## 17643 M87338
## 17644 M87339
## 17645 M87341
## 17646 M87342
## 17647 M87343
## 17648 M87344
## 17649 M87345
## 17650 M87346
## 17651 M87350
## 17652 M87351
## 17653 M87352
## 17654 M87353
## 17655 M87361
## 17656 M87362
## 17657 M87363
## 17658 M87364
## 17659 M87365
## 17660 M87366
## 17661 M87371
## 17662 M87372
## 17663 M87373
## 17664 M87374
## 17665 M87375
## 17666 M87376
## 17667 M87377
## 17668 M87378
## 17669 M87379
## 17670 M8738
## 17671 M8739
## 17672 M8780
## 17673 M87811
## 17674 M87812
## 17675 M87819
## 17676 M87821
## 17677 M87822
## 17678 M87829
## 17679 M87831
## 17680 M87832
## 17681 M87833
## 17682 M87834
## 17683 M87835
## 17684 M87836
## 17685 M87837
## 17686 M87838
## 17687 M87839
## 17688 M87841
## 17689 M87842
## 17690 M87843
## 17691 M87844
## 17692 M87845
## 17693 M87849
## 17694 M87850
## 17695 M87851
## 17696 M87852
## 17697 M87859
## 17698 M87861
## 17699 M87862
## 17700 M87863
## 17701 M87864
## 17702 M87865
## 17703 M87869
## 17704 M87871
## 17705 M87872
## 17706 M87873
## 17707 M87874
## 17708 M87875
## 17709 M87876
## 17710 M87877
## 17711 M87878
## 17712 M87879
## 17713 M8788
## 17714 M8789
## 17715 M879
## 17716 M880
## 17717 M881
## 17718 M88811
## 17719 M88812
## 17720 M88819
## 17721 M88821
## 17722 M88822
## 17723 M88829
## 17724 M88831
## 17725 M88832
## 17726 M88839
## 17727 M88841
## 17728 M88842
## 17729 M88849
## 17730 M88851
## 17731 M88852
## 17732 M88859
## 17733 M88861
## 17734 M88862
## 17735 M88869
## 17736 M88871
## 17737 M88872
## 17738 M88879
## 17739 M8888
## 17740 M8889
## 17741 M889
## 17742 M8900
## 17743 M89011
## 17744 M89012
## 17745 M89019
## 17746 M89021
## 17747 M89022
## 17748 M89029
## 17749 M89031
## 17750 M89032
## 17751 M89039
## 17752 M89041
## 17753 M89042
## 17754 M89049
## 17755 M89051
## 17756 M89052
## 17757 M89059
## 17758 M89061
## 17759 M89062
## 17760 M89069
## 17761 M89071
## 17762 M89072
## 17763 M89079
## 17764 M8908
## 17765 M8909
## 17766 M89121
## 17767 M89122
## 17768 M89123
## 17769 M89124
## 17770 M89125
## 17771 M89126
## 17772 M89127
## 17773 M89128
## 17774 M89129
## 17775 M89131
## 17776 M89132
## 17777 M89133
## 17778 M89134
## 17779 M89138
## 17780 M89139
## 17781 M89151
## 17782 M89152
## 17783 M89153
## 17784 M89154
## 17785 M89155
## 17786 M89156
## 17787 M89157
## 17788 M89158
## 17789 M89159
## 17790 M89160
## 17791 M89161
## 17792 M89162
## 17793 M89163
## 17794 M89164
## 17795 M89165
## 17796 M89166
## 17797 M89167
## 17798 M89168
## 17799 M89169
## 17800 M8918
## 17801 M8920
## 17802 M89211
## 17803 M89212
## 17804 M89219
## 17805 M89221
## 17806 M89222
## 17807 M89229
## 17808 M89231
## 17809 M89232
## 17810 M89233
## 17811 M89234
## 17812 M89239
## 17813 M89241
## 17814 M89242
## 17815 M89249
## 17816 M89251
## 17817 M89252
## 17818 M89259
## 17819 M89261
## 17820 M89262
## 17821 M89263
## 17822 M89264
## 17823 M89269
## 17824 M89271
## 17825 M89272
## 17826 M89279
## 17827 M8928
## 17828 M8929
## 17829 M8930
## 17830 M89311
## 17831 M89312
## 17832 M89319
## 17833 M89321
## 17834 M89322
## 17835 M89329
## 17836 M89331
## 17837 M89332
## 17838 M89333
## 17839 M89334
## 17840 M89339
## 17841 M89341
## 17842 M89342
## 17843 M89349
## 17844 M89351
## 17845 M89352
## 17846 M89359
## 17847 M89361
## 17848 M89362
## 17849 M89363
## 17850 M89364
## 17851 M89369
## 17852 M89371
## 17853 M89372
## 17854 M89379
## 17855 M8938
## 17856 M8939
## 17857 M8940
## 17858 M89411
## 17859 M89412
## 17860 M89419
## 17861 M89421
## 17862 M89422
## 17863 M89429
## 17864 M89431
## 17865 M89432
## 17866 M89439
## 17867 M89441
## 17868 M89442
## 17869 M89449
## 17870 M89451
## 17871 M89452
## 17872 M89459
## 17873 M89461
## 17874 M89462
## 17875 M89469
## 17876 M89471
## 17877 M89472
## 17878 M89479
## 17879 M8948
## 17880 M8949
## 17881 M8950
## 17882 M89511
## 17883 M89512
## 17884 M89519
## 17885 M89521
## 17886 M89522
## 17887 M89529
## 17888 M89531
## 17889 M89532
## 17890 M89539
## 17891 M89541
## 17892 M89542
## 17893 M89549
## 17894 M89551
## 17895 M89552
## 17896 M89559
## 17897 M89561
## 17898 M89562
## 17899 M89569
## 17900 M89571
## 17901 M89572
## 17902 M89579
## 17903 M8958
## 17904 M8959
## 17905 M8960
## 17906 M89611
## 17907 M89612
## 17908 M89619
## 17909 M89621
## 17910 M89622
## 17911 M89629
## 17912 M89631
## 17913 M89632
## 17914 M89639
## 17915 M89641
## 17916 M89642
## 17917 M89649
## 17918 M89651
## 17919 M89652
## 17920 M89659
## 17921 M89661
## 17922 M89662
## 17923 M89669
## 17924 M89671
## 17925 M89672
## 17926 M89679
## 17927 M8968
## 17928 M8969
## 17929 M8970
## 17930 M89711
## 17931 M89712
## 17932 M89719
## 17933 M89721
## 17934 M89722
## 17935 M89729
## 17936 M89731
## 17937 M89732
## 17938 M89739
## 17939 M89741
## 17940 M89742
## 17941 M89749
## 17942 M89751
## 17943 M89752
## 17944 M89759
## 17945 M89761
## 17946 M89762
## 17947 M89769
## 17948 M89771
## 17949 M89772
## 17950 M89779
## 17951 M8978
## 17952 M8979
## 17953 M898X0
## 17954 M898X1
## 17955 M898X2
## 17956 M898X3
## 17957 M898X4
## 17958 M898X5
## 17959 M898X6
## 17960 M898X7
## 17961 M898X8
## 17962 M898X9
## 17963 M899
## 17964 M9050
## 17965 M90511
## 17966 M90512
## 17967 M90519
## 17968 M90521
## 17969 M90522
## 17970 M90529
## 17971 M90531
## 17972 M90532
## 17973 M90539
## 17974 M90541
## 17975 M90542
## 17976 M90549
## 17977 M90551
## 17978 M90552
## 17979 M90559
## 17980 M90561
## 17981 M90562
## 17982 M90569
## 17983 M90571
## 17984 M90572
## 17985 M90579
## 17986 M9058
## 17987 M9059
## 17988 M9060
## 17989 M90611
## 17990 M90612
## 17991 M90619
## 17992 M90621
## 17993 M90622
## 17994 M90629
## 17995 M90631
## 17996 M90632
## 17997 M90639
## 17998 M90641
## 17999 M90642
## 18000 M90649
## 18001 M90651
## 18002 M90652
## 18003 M90659
## 18004 M90661
## 18005 M90662
## 18006 M90669
## 18007 M90671
## 18008 M90672
## 18009 M90679
## 18010 M9068
## 18011 M9069
## 18012 M9080
## 18013 M90811
## 18014 M90812
## 18015 M90819
## 18016 M90821
## 18017 M90822
## 18018 M90829
## 18019 M90831
## 18020 M90832
## 18021 M90839
## 18022 M90841
## 18023 M90842
## 18024 M90849
## 18025 M90851
## 18026 M90852
## 18027 M90859
## 18028 M90861
## 18029 M90862
## 18030 M90869
## 18031 M90871
## 18032 M90872
## 18033 M90879
## 18034 M9088
## 18035 M9089
## 18036 M910
## 18037 M9110
## 18038 M9111
## 18039 M9112
## 18040 M9120
## 18041 M9121
## 18042 M9122
## 18043 M9130
## 18044 M9131
## 18045 M9132
## 18046 M9140
## 18047 M9141
## 18048 M9142
## 18049 M9180
## 18050 M9181
## 18051 M9182
## 18052 M9190
## 18053 M9191
## 18054 M9192
## 18055 M9200
## 18056 M9201
## 18057 M9202
## 18058 M9210
## 18059 M9211
## 18060 M9212
## 18061 M92201
## 18062 M92202
## 18063 M92209
## 18064 M92211
## 18065 M92212
## 18066 M92219
## 18067 M92221
## 18068 M92222
## 18069 M92229
## 18070 M92291
## 18071 M92292
## 18072 M92299
## 18073 M9230
## 18074 M9231
## 18075 M9232
## 18076 M9240
## 18077 M9241
## 18078 M9242
## 18079 M9250
## 18080 M9251
## 18081 M9252
## 18082 M9260
## 18083 M9261
## 18084 M9262
## 18085 M9270
## 18086 M9271
## 18087 M9272
## 18088 M928
## 18089 M929
## 18090 M93001
## 18091 M93002
## 18092 M93003
## 18093 M93011
## 18094 M93012
## 18095 M93013
## 18096 M93021
## 18097 M93022
## 18098 M93023
## 18099 M93031
## 18100 M93032
## 18101 M93033
## 18102 M931
## 18103 M9320
## 18104 M93211
## 18105 M93212
## 18106 M93219
## 18107 M93221
## 18108 M93222
## 18109 M93229
## 18110 M93231
## 18111 M93232
## 18112 M93239
## 18113 M93241
## 18114 M93242
## 18115 M93249
## 18116 M93251
## 18117 M93252
## 18118 M93259
## 18119 M93261
## 18120 M93262
## 18121 M93269
## 18122 M93271
## 18123 M93272
## 18124 M93279
## 18125 M9328
## 18126 M9329
## 18127 M9380
## 18128 M93811
## 18129 M93812
## 18130 M93819
## 18131 M93821
## 18132 M93822
## 18133 M93829
## 18134 M93831
## 18135 M93832
## 18136 M93839
## 18137 M93841
## 18138 M93842
## 18139 M93849
## 18140 M93851
## 18141 M93852
## 18142 M93859
## 18143 M93861
## 18144 M93862
## 18145 M93869
## 18146 M93871
## 18147 M93872
## 18148 M93879
## 18149 M9388
## 18150 M9389
## 18151 M9390
## 18152 M93911
## 18153 M93912
## 18154 M93919
## 18155 M93921
## 18156 M93922
## 18157 M93929
## 18158 M93931
## 18159 M93932
## 18160 M93939
## 18161 M93941
## 18162 M93942
## 18163 M93949
## 18164 M93951
## 18165 M93952
## 18166 M93959
## 18167 M93961
## 18168 M93962
## 18169 M93969
## 18170 M93971
## 18171 M93972
## 18172 M93979
## 18173 M9398
## 18174 M9399
## 18175 M940
## 18176 M941
## 18177 M9420
## 18178 M94211
## 18179 M94212
## 18180 M94219
## 18181 M94221
## 18182 M94222
## 18183 M94229
## 18184 M94231
## 18185 M94232
## 18186 M94239
## 18187 M94241
## 18188 M94242
## 18189 M94249
## 18190 M94251
## 18191 M94252
## 18192 M94259
## 18193 M94261
## 18194 M94262
## 18195 M94269
## 18196 M94271
## 18197 M94272
## 18198 M94279
## 18199 M9428
## 18200 M9429
## 18201 M94351
## 18202 M94352
## 18203 M94359
## 18204 M948X0
## 18205 M948X1
## 18206 M948X2
## 18207 M948X3
## 18208 M948X4
## 18209 M948X5
## 18210 M948X6
## 18211 M948X7
## 18212 M948X8
## 18213 M948X9
## 18214 M949
## 18215 M950
## 18216 M9510
## 18217 M9511
## 18218 M9512
## 18219 M952
## 18220 M953
## 18221 M954
## 18222 M955
## 18223 M958
## 18224 M959
## 18225 M960
## 18226 M961
## 18227 M962
## 18228 M963
## 18229 M964
## 18230 M965
## 18231 M96621
## 18232 M96622
## 18233 M96629
## 18234 M96631
## 18235 M96632
## 18236 M96639
## 18237 M9665
## 18238 M96661
## 18239 M96662
## 18240 M96669
## 18241 M96671
## 18242 M96672
## 18243 M96679
## 18244 M9669
## 18245 M96810
## 18246 M96811
## 18247 M96820
## 18248 M96821
## 18249 M96830
## 18250 M96831
## 18251 M96840
## 18252 M96841
## 18253 M96842
## 18254 M96843
## 18255 M9689
## 18256 M9701XA
## 18257 M9701XD
## 18258 M9701XS
## 18259 M9702XA
## 18260 M9702XD
## 18261 M9702XS
## 18262 M9711XA
## 18263 M9711XD
## 18264 M9711XS
## 18265 M9712XA
## 18266 M9712XD
## 18267 M9712XS
## 18268 M9721XA
## 18269 M9721XD
## 18270 M9721XS
## 18271 M9722XA
## 18272 M9722XD
## 18273 M9722XS
## 18274 M9731XA
## 18275 M9731XD
## 18276 M9731XS
## 18277 M9732XA
## 18278 M9732XD
## 18279 M9732XS
## 18280 M9741XA
## 18281 M9741XD
## 18282 M9741XS
## 18283 M9742XA
## 18284 M9742XD
## 18285 M9742XS
## 18286 M978XXA
## 18287 M978XXD
## 18288 M978XXS
## 18289 M979XXA
## 18290 M979XXD
## 18291 M979XXS
## 18292 M9900
## 18293 M9901
## 18294 M9902
## 18295 M9903
## 18296 M9904
## 18297 M9905
## 18298 M9906
## 18299 M9907
## 18300 M9908
## 18301 M9909
## 18302 M9910
## 18303 M9911
## 18304 M9912
## 18305 M9913
## 18306 M9914
## 18307 M9915
## 18308 M9916
## 18309 M9917
## 18310 M9918
## 18311 M9919
## 18312 M9920
## 18313 M9921
## 18314 M9922
## 18315 M9923
## 18316 M9924
## 18317 M9925
## 18318 M9926
## 18319 M9927
## 18320 M9928
## 18321 M9929
## 18322 M9930
## 18323 M9931
## 18324 M9932
## 18325 M9933
## 18326 M9934
## 18327 M9935
## 18328 M9936
## 18329 M9937
## 18330 M9938
## 18331 M9939
## 18332 M9940
## 18333 M9941
## 18334 M9942
## 18335 M9943
## 18336 M9944
## 18337 M9945
## 18338 M9946
## 18339 M9947
## 18340 M9948
## 18341 M9949
## 18342 M9950
## 18343 M9951
## 18344 M9952
## 18345 M9953
## 18346 M9954
## 18347 M9955
## 18348 M9956
## 18349 M9957
## 18350 M9958
## 18351 M9959
## 18352 M9960
## 18353 M9961
## 18354 M9962
## 18355 M9963
## 18356 M9964
## 18357 M9965
## 18358 M9966
## 18359 M9967
## 18360 M9968
## 18361 M9969
## 18362 M9970
## 18363 M9971
## 18364 M9972
## 18365 M9973
## 18366 M9974
## 18367 M9975
## 18368 M9976
## 18369 M9977
## 18370 M9978
## 18371 M9979
## 18372 M9980
## 18373 M9981
## 18374 M9982
## 18375 M9983
## 18376 M9984
## 18377 M9985
## 18378 M9986
## 18379 M9987
## 18380 M9988
## 18381 M9989
## 18382 M999
## 18383 N000
## 18384 N001
## 18385 N002
## 18386 N003
## 18387 N004
## 18388 N005
## 18389 N006
## 18390 N007
## 18391 N008
## 18392 N009
## 18393 N010
## 18394 N011
## 18395 N012
## 18396 N013
## 18397 N014
## 18398 N015
## 18399 N016
## 18400 N017
## 18401 N018
## 18402 N019
## 18403 N020
## 18404 N021
## 18405 N022
## 18406 N023
## 18407 N024
## 18408 N025
## 18409 N026
## 18410 N027
## 18411 N028
## 18412 N029
## 18413 N030
## 18414 N031
## 18415 N032
## 18416 N033
## 18417 N034
## 18418 N035
## 18419 N036
## 18420 N037
## 18421 N038
## 18422 N039
## 18423 N040
## 18424 N041
## 18425 N042
## 18426 N043
## 18427 N044
## 18428 N045
## 18429 N046
## 18430 N047
## 18431 N048
## 18432 N049
## 18433 N050
## 18434 N051
## 18435 N052
## 18436 N053
## 18437 N054
## 18438 N055
## 18439 N056
## 18440 N057
## 18441 N058
## 18442 N059
## 18443 N060
## 18444 N061
## 18445 N062
## 18446 N063
## 18447 N064
## 18448 N065
## 18449 N066
## 18450 N067
## 18451 N068
## 18452 N069
## 18453 N070
## 18454 N071
## 18455 N072
## 18456 N073
## 18457 N074
## 18458 N075
## 18459 N076
## 18460 N077
## 18461 N078
## 18462 N079
## 18463 N08
## 18464 N10
## 18465 N110
## 18466 N111
## 18467 N118
## 18468 N119
## 18469 N12
## 18470 N130
## 18471 N131
## 18472 N132
## 18473 N1330
## 18474 N1339
## 18475 N134
## 18476 N135
## 18477 N136
## 18478 N1370
## 18479 N1371
## 18480 N13721
## 18481 N13722
## 18482 N13729
## 18483 N13731
## 18484 N13732
## 18485 N13739
## 18486 N138
## 18487 N139
## 18488 N140
## 18489 N141
## 18490 N142
## 18491 N143
## 18492 N144
## 18493 N150
## 18494 N151
## 18495 N158
## 18496 N159
## 18497 N16
## 18498 N170
## 18499 N171
## 18500 N172
## 18501 N178
## 18502 N179
## 18503 N181
## 18504 N182
## 18505 N183
## 18506 N184
## 18507 N185
## 18508 N186
## 18509 N189
## 18510 N19
## 18511 N200
## 18512 N201
## 18513 N202
## 18514 N209
## 18515 N210
## 18516 N211
## 18517 N218
## 18518 N219
## 18519 N22
## 18520 N23
## 18521 N250
## 18522 N251
## 18523 N2581
## 18524 N2589
## 18525 N259
## 18526 N261
## 18527 N262
## 18528 N269
## 18529 N270
## 18530 N271
## 18531 N279
## 18532 N280
## 18533 N281
## 18534 N2881
## 18535 N2882
## 18536 N2883
## 18537 N2884
## 18538 N2885
## 18539 N2886
## 18540 N2889
## 18541 N289
## 18542 N29
## 18543 N3000
## 18544 N3001
## 18545 N3010
## 18546 N3011
## 18547 N3020
## 18548 N3021
## 18549 N3030
## 18550 N3031
## 18551 N3040
## 18552 N3041
## 18553 N3080
## 18554 N3081
## 18555 N3090
## 18556 N3091
## 18557 N310
## 18558 N311
## 18559 N312
## 18560 N318
## 18561 N319
## 18562 N320
## 18563 N321
## 18564 N322
## 18565 N323
## 18566 N3281
## 18567 N3289
## 18568 N329
## 18569 N33
## 18570 N340
## 18571 N341
## 18572 N342
## 18573 N343
## 18574 N35010
## 18575 N35011
## 18576 N35012
## 18577 N35013
## 18578 N35014
## 18579 N35016
## 18580 N35021
## 18581 N35028
## 18582 N35111
## 18583 N35112
## 18584 N35113
## 18585 N35114
## 18586 N35116
## 18587 N35119
## 18588 N3512
## 18589 N35811
## 18590 N35812
## 18591 N35813
## 18592 N35814
## 18593 N35816
## 18594 N35819
## 18595 N3582
## 18596 N35911
## 18597 N35912
## 18598 N35913
## 18599 N35914
## 18600 N35916
## 18601 N35919
## 18602 N3592
## 18603 N360
## 18604 N361
## 18605 N362
## 18606 N3641
## 18607 N3642
## 18608 N3643
## 18609 N3644
## 18610 N365
## 18611 N368
## 18612 N369
## 18613 N37
## 18614 N390
## 18615 N393
## 18616 N3941
## 18617 N3942
## 18618 N3943
## 18619 N3944
## 18620 N3945
## 18621 N3946
## 18622 N39490
## 18623 N39491
## 18624 N39492
## 18625 N39498
## 18626 N398
## 18627 N399
## 18628 N400
## 18629 N401
## 18630 N402
## 18631 N403
## 18632 N410
## 18633 N411
## 18634 N412
## 18635 N413
## 18636 N414
## 18637 N418
## 18638 N419
## 18639 N420
## 18640 N421
## 18641 N4230
## 18642 N4231
## 18643 N4232
## 18644 N4239
## 18645 N4281
## 18646 N4282
## 18647 N4283
## 18648 N4289
## 18649 N429
## 18650 N430
## 18651 N431
## 18652 N432
## 18653 N433
## 18654 N4340
## 18655 N4341
## 18656 N4342
## 18657 N4400
## 18658 N4401
## 18659 N4402
## 18660 N4403
## 18661 N4404
## 18662 N441
## 18663 N442
## 18664 N448
## 18665 N451
## 18666 N452
## 18667 N453
## 18668 N454
## 18669 N4601
## 18670 N46021
## 18671 N46022
## 18672 N46023
## 18673 N46024
## 18674 N46025
## 18675 N46029
## 18676 N4611
## 18677 N46121
## 18678 N46122
## 18679 N46123
## 18680 N46124
## 18681 N46125
## 18682 N46129
## 18683 N468
## 18684 N469
## 18685 N470
## 18686 N471
## 18687 N472
## 18688 N473
## 18689 N474
## 18690 N475
## 18691 N476
## 18692 N477
## 18693 N478
## 18694 N480
## 18695 N481
## 18696 N4821
## 18697 N4822
## 18698 N4829
## 18699 N4830
## 18700 N4831
## 18701 N4832
## 18702 N4833
## 18703 N4839
## 18704 N485
## 18705 N486
## 18706 N4881
## 18707 N4882
## 18708 N4883
## 18709 N4889
## 18710 N489
## 18711 N490
## 18712 N491
## 18713 N492
## 18714 N493
## 18715 N498
## 18716 N499
## 18717 N500
## 18718 N501
## 18719 N503
## 18720 N50811
## 18721 N50812
## 18722 N50819
## 18723 N5082
## 18724 N5089
## 18725 N509
## 18726 N51
## 18727 N5201
## 18728 N5202
## 18729 N5203
## 18730 N521
## 18731 N522
## 18732 N5231
## 18733 N5232
## 18734 N5233
## 18735 N5234
## 18736 N5235
## 18737 N5236
## 18738 N5237
## 18739 N5239
## 18740 N528
## 18741 N529
## 18742 N5311
## 18743 N5312
## 18744 N5313
## 18745 N5314
## 18746 N5319
## 18747 N538
## 18748 N539
## 18749 N6001
## 18750 N6002
## 18751 N6009
## 18752 N6011
## 18753 N6012
## 18754 N6019
## 18755 N6021
## 18756 N6022
## 18757 N6029
## 18758 N6031
## 18759 N6032
## 18760 N6039
## 18761 N6041
## 18762 N6042
## 18763 N6049
## 18764 N6081
## 18765 N6082
## 18766 N6089
## 18767 N6091
## 18768 N6092
## 18769 N6099
## 18770 N610
## 18771 N611
## 18772 N62
## 18773 N630
## 18774 N6310
## 18775 N6311
## 18776 N6312
## 18777 N6313
## 18778 N6314
## 18779 N6315
## 18780 N6320
## 18781 N6321
## 18782 N6322
## 18783 N6323
## 18784 N6324
## 18785 N6325
## 18786 N6331
## 18787 N6332
## 18788 N6341
## 18789 N6342
## 18790 N640
## 18791 N641
## 18792 N642
## 18793 N643
## 18794 N644
## 18795 N6451
## 18796 N6452
## 18797 N6453
## 18798 N6459
## 18799 N6481
## 18800 N6482
## 18801 N6489
## 18802 N649
## 18803 N650
## 18804 N651
## 18805 N7001
## 18806 N7002
## 18807 N7003
## 18808 N7011
## 18809 N7012
## 18810 N7013
## 18811 N7091
## 18812 N7092
## 18813 N7093
## 18814 N710
## 18815 N711
## 18816 N719
## 18817 N72
## 18818 N730
## 18819 N731
## 18820 N732
## 18821 N733
## 18822 N734
## 18823 N735
## 18824 N736
## 18825 N738
## 18826 N739
## 18827 N74
## 18828 N750
## 18829 N751
## 18830 N758
## 18831 N759
## 18832 N760
## 18833 N761
## 18834 N762
## 18835 N763
## 18836 N764
## 18837 N765
## 18838 N766
## 18839 N7681
## 18840 N7689
## 18841 N770
## 18842 N771
## 18843 N800
## 18844 N801
## 18845 N802
## 18846 N803
## 18847 N804
## 18848 N805
## 18849 N806
## 18850 N808
## 18851 N809
## 18852 N810
## 18853 N8110
## 18854 N8111
## 18855 N8112
## 18856 N812
## 18857 N813
## 18858 N814
## 18859 N815
## 18860 N816
## 18861 N8181
## 18862 N8182
## 18863 N8183
## 18864 N8184
## 18865 N8185
## 18866 N8189
## 18867 N819
## 18868 N820
## 18869 N821
## 18870 N822
## 18871 N823
## 18872 N824
## 18873 N825
## 18874 N828
## 18875 N829
## 18876 N8300
## 18877 N8301
## 18878 N8302
## 18879 N8310
## 18880 N8311
## 18881 N8312
## 18882 N83201
## 18883 N83202
## 18884 N83209
## 18885 N83291
## 18886 N83292
## 18887 N83299
## 18888 N83311
## 18889 N83312
## 18890 N83319
## 18891 N83321
## 18892 N83322
## 18893 N83329
## 18894 N83331
## 18895 N83332
## 18896 N83339
## 18897 N8340
## 18898 N8341
## 18899 N8342
## 18900 N83511
## 18901 N83512
## 18902 N83519
## 18903 N83521
## 18904 N83522
## 18905 N83529
## 18906 N8353
## 18907 N836
## 18908 N837
## 18909 N838
## 18910 N839
## 18911 N840
## 18912 N841
## 18913 N842
## 18914 N843
## 18915 N848
## 18916 N849
## 18917 N8500
## 18918 N8501
## 18919 N8502
## 18920 N852
## 18921 N853
## 18922 N854
## 18923 N855
## 18924 N856
## 18925 N857
## 18926 N858
## 18927 N859
## 18928 N86
## 18929 N870
## 18930 N871
## 18931 N879
## 18932 N880
## 18933 N881
## 18934 N882
## 18935 N883
## 18936 N884
## 18937 N888
## 18938 N889
## 18939 N890
## 18940 N891
## 18941 N893
## 18942 N894
## 18943 N895
## 18944 N896
## 18945 N897
## 18946 N898
## 18947 N899
## 18948 N900
## 18949 N901
## 18950 N903
## 18951 N904
## 18952 N905
## 18953 N9060
## 18954 N9061
## 18955 N9069
## 18956 N907
## 18957 N90810
## 18958 N90811
## 18959 N90812
## 18960 N90813
## 18961 N90818
## 18962 N9089
## 18963 N909
## 18964 N910
## 18965 N911
## 18966 N912
## 18967 N913
## 18968 N914
## 18969 N915
## 18970 N920
## 18971 N921
## 18972 N922
## 18973 N923
## 18974 N924
## 18975 N925
## 18976 N926
## 18977 N930
## 18978 N931
## 18979 N938
## 18980 N939
## 18981 N940
## 18982 N9410
## 18983 N9411
## 18984 N9412
## 18985 N9419
## 18986 N942
## 18987 N943
## 18988 N944
## 18989 N945
## 18990 N946
## 18991 N94810
## 18992 N94818
## 18993 N94819
## 18994 N9489
## 18995 N949
## 18996 N950
## 18997 N951
## 18998 N952
## 18999 N958
## 19000 N959
## 19001 N96
## 19002 N970
## 19003 N971
## 19004 N972
## 19005 N978
## 19006 N979
## 19007 N980
## 19008 N981
## 19009 N982
## 19010 N983
## 19011 N988
## 19012 N989
## 19013 N990
## 19014 N99110
## 19015 N99111
## 19016 N99112
## 19017 N99113
## 19018 N99114
## 19019 N99115
## 19020 N99116
## 19021 N9912
## 19022 N992
## 19023 N993
## 19024 N994
## 19025 N99510
## 19026 N99511
## 19027 N99512
## 19028 N99518
## 19029 N99520
## 19030 N99521
## 19031 N99522
## 19032 N99523
## 19033 N99524
## 19034 N99528
## 19035 N99530
## 19036 N99531
## 19037 N99532
## 19038 N99533
## 19039 N99534
## 19040 N99538
## 19041 N9961
## 19042 N9962
## 19043 N9971
## 19044 N9972
## 19045 N9981
## 19046 N99820
## 19047 N99821
## 19048 N9983
## 19049 N99840
## 19050 N99841
## 19051 N99842
## 19052 N99843
## 19053 N9985
## 19054 N9989
## 19055 O0000
## 19056 O0001
## 19057 O00101
## 19058 O00102
## 19059 O00109
## 19060 O00111
## 19061 O00112
## 19062 O00119
## 19063 O00201
## 19064 O00202
## 19065 O00209
## 19066 O00211
## 19067 O00212
## 19068 O00219
## 19069 O0080
## 19070 O0081
## 19071 O0090
## 19072 O0091
## 19073 O010
## 19074 O011
## 19075 O019
## 19076 O020
## 19077 O021
## 19078 O0281
## 19079 O0289
## 19080 O029
## 19081 O030
## 19082 O031
## 19083 O032
## 19084 O0330
## 19085 O0331
## 19086 O0332
## 19087 O0333
## 19088 O0334
## 19089 O0335
## 19090 O0336
## 19091 O0337
## 19092 O0338
## 19093 O0339
## 19094 O034
## 19095 O035
## 19096 O036
## 19097 O037
## 19098 O0380
## 19099 O0381
## 19100 O0382
## 19101 O0383
## 19102 O0384
## 19103 O0385
## 19104 O0386
## 19105 O0387
## 19106 O0388
## 19107 O0389
## 19108 O039
## 19109 O045
## 19110 O046
## 19111 O047
## 19112 O0480
## 19113 O0481
## 19114 O0482
## 19115 O0483
## 19116 O0484
## 19117 O0485
## 19118 O0486
## 19119 O0487
## 19120 O0488
## 19121 O0489
## 19122 O070
## 19123 O071
## 19124 O072
## 19125 O0730
## 19126 O0731
## 19127 O0732
## 19128 O0733
## 19129 O0734
## 19130 O0735
## 19131 O0736
## 19132 O0737
## 19133 O0738
## 19134 O0739
## 19135 O074
## 19136 O080
## 19137 O081
## 19138 O082
## 19139 O083
## 19140 O084
## 19141 O085
## 19142 O086
## 19143 O087
## 19144 O0881
## 19145 O0882
## 19146 O0883
## 19147 O0889
## 19148 O089
## 19149 O0900
## 19150 O0901
## 19151 O0902
## 19152 O0903
## 19153 O0910
## 19154 O0911
## 19155 O0912
## 19156 O0913
## 19157 O09A0
## 19158 O09A1
## 19159 O09A2
## 19160 O09A3
## 19161 O09211
## 19162 O09212
## 19163 O09213
## 19164 O09219
## 19165 O09291
## 19166 O09292
## 19167 O09293
## 19168 O09299
## 19169 O0930
## 19170 O0931
## 19171 O0932
## 19172 O0933
## 19173 O0940
## 19174 O0941
## 19175 O0942
## 19176 O0943
## 19177 O09511
## 19178 O09512
## 19179 O09513
## 19180 O09519
## 19181 O09521
## 19182 O09522
## 19183 O09523
## 19184 O09529
## 19185 O09611
## 19186 O09612
## 19187 O09613
## 19188 O09619
## 19189 O09621
## 19190 O09622
## 19191 O09623
## 19192 O09629
## 19193 O0970
## 19194 O0971
## 19195 O0972
## 19196 O0973
## 19197 O09811
## 19198 O09812
## 19199 O09813
## 19200 O09819
## 19201 O09821
## 19202 O09822
## 19203 O09823
## 19204 O09829
## 19205 O09891
## 19206 O09892
## 19207 O09893
## 19208 O09899
## 19209 O0990
## 19210 O0991
## 19211 O0992
## 19212 O0993
## 19213 O10011
## 19214 O10012
## 19215 O10013
## 19216 O10019
## 19217 O1002
## 19218 O1003
## 19219 O10111
## 19220 O10112
## 19221 O10113
## 19222 O10119
## 19223 O1012
## 19224 O1013
## 19225 O10211
## 19226 O10212
## 19227 O10213
## 19228 O10219
## 19229 O1022
## 19230 O1023
## 19231 O10311
## 19232 O10312
## 19233 O10313
## 19234 O10319
## 19235 O1032
## 19236 O1033
## 19237 O10411
## 19238 O10412
## 19239 O10413
## 19240 O10419
## 19241 O1042
## 19242 O1043
## 19243 O10911
## 19244 O10912
## 19245 O10913
## 19246 O10919
## 19247 O1092
## 19248 O1093
## 19249 O111
## 19250 O112
## 19251 O113
## 19252 O114
## 19253 O115
## 19254 O119
## 19255 O1200
## 19256 O1201
## 19257 O1202
## 19258 O1203
## 19259 O1204
## 19260 O1205
## 19261 O1210
## 19262 O1211
## 19263 O1212
## 19264 O1213
## 19265 O1214
## 19266 O1215
## 19267 O1220
## 19268 O1221
## 19269 O1222
## 19270 O1223
## 19271 O1224
## 19272 O1225
## 19273 O131
## 19274 O132
## 19275 O133
## 19276 O134
## 19277 O135
## 19278 O139
## 19279 O1400
## 19280 O1402
## 19281 O1403
## 19282 O1404
## 19283 O1405
## 19284 O1410
## 19285 O1412
## 19286 O1413
## 19287 O1414
## 19288 O1415
## 19289 O1420
## 19290 O1422
## 19291 O1423
## 19292 O1424
## 19293 O1425
## 19294 O1490
## 19295 O1492
## 19296 O1493
## 19297 O1494
## 19298 O1495
## 19299 O1500
## 19300 O1502
## 19301 O1503
## 19302 O151
## 19303 O152
## 19304 O159
## 19305 O161
## 19306 O162
## 19307 O163
## 19308 O164
## 19309 O165
## 19310 O169
## 19311 O200
## 19312 O208
## 19313 O209
## 19314 O210
## 19315 O211
## 19316 O212
## 19317 O218
## 19318 O219
## 19319 O2200
## 19320 O2201
## 19321 O2202
## 19322 O2203
## 19323 O2210
## 19324 O2211
## 19325 O2212
## 19326 O2213
## 19327 O2220
## 19328 O2221
## 19329 O2222
## 19330 O2223
## 19331 O2230
## 19332 O2231
## 19333 O2232
## 19334 O2233
## 19335 O2240
## 19336 O2241
## 19337 O2242
## 19338 O2243
## 19339 O2250
## 19340 O2251
## 19341 O2252
## 19342 O2253
## 19343 O228X1
## 19344 O228X2
## 19345 O228X3
## 19346 O228X9
## 19347 O2290
## 19348 O2291
## 19349 O2292
## 19350 O2293
## 19351 O2300
## 19352 O2301
## 19353 O2302
## 19354 O2303
## 19355 O2310
## 19356 O2311
## 19357 O2312
## 19358 O2313
## 19359 O2320
## 19360 O2321
## 19361 O2322
## 19362 O2323
## 19363 O2330
## 19364 O2331
## 19365 O2332
## 19366 O2333
## 19367 O2340
## 19368 O2341
## 19369 O2342
## 19370 O2343
## 19371 O23511
## 19372 O23512
## 19373 O23513
## 19374 O23519
## 19375 O23521
## 19376 O23522
## 19377 O23523
## 19378 O23529
## 19379 O23591
## 19380 O23592
## 19381 O23593
## 19382 O23599
## 19383 O2390
## 19384 O2391
## 19385 O2392
## 19386 O2393
## 19387 O24011
## 19388 O24012
## 19389 O24013
## 19390 O24019
## 19391 O2402
## 19392 O2403
## 19393 O24111
## 19394 O24112
## 19395 O24113
## 19396 O24119
## 19397 O2412
## 19398 O2413
## 19399 O24311
## 19400 O24312
## 19401 O24313
## 19402 O24319
## 19403 O2432
## 19404 O2433
## 19405 O24410
## 19406 O24414
## 19407 O24415
## 19408 O24419
## 19409 O24420
## 19410 O24424
## 19411 O24425
## 19412 O24429
## 19413 O24430
## 19414 O24434
## 19415 O24435
## 19416 O24439
## 19417 O24811
## 19418 O24812
## 19419 O24813
## 19420 O24819
## 19421 O2482
## 19422 O2483
## 19423 O24911
## 19424 O24912
## 19425 O24913
## 19426 O24919
## 19427 O2492
## 19428 O2493
## 19429 O2510
## 19430 O2511
## 19431 O2512
## 19432 O2513
## 19433 O252
## 19434 O253
## 19435 O2600
## 19436 O2601
## 19437 O2602
## 19438 O2603
## 19439 O2610
## 19440 O2611
## 19441 O2612
## 19442 O2613
## 19443 O2620
## 19444 O2621
## 19445 O2622
## 19446 O2623
## 19447 O2630
## 19448 O2631
## 19449 O2632
## 19450 O2633
## 19451 O2640
## 19452 O2641
## 19453 O2642
## 19454 O2643
## 19455 O2650
## 19456 O2651
## 19457 O2652
## 19458 O2653
## 19459 O26611
## 19460 O26612
## 19461 O26613
## 19462 O26619
## 19463 O2662
## 19464 O2663
## 19465 O26711
## 19466 O26712
## 19467 O26713
## 19468 O26719
## 19469 O2672
## 19470 O2673
## 19471 O26811
## 19472 O26812
## 19473 O26813
## 19474 O26819
## 19475 O26821
## 19476 O26822
## 19477 O26823
## 19478 O26829
## 19479 O26831
## 19480 O26832
## 19481 O26833
## 19482 O26839
## 19483 O26841
## 19484 O26842
## 19485 O26843
## 19486 O26849
## 19487 O26851
## 19488 O26852
## 19489 O26853
## 19490 O26859
## 19491 O2686
## 19492 O26872
## 19493 O26873
## 19494 O26879
## 19495 O26891
## 19496 O26892
## 19497 O26893
## 19498 O26899
## 19499 O2690
## 19500 O2691
## 19501 O2692
## 19502 O2693
## 19503 O280
## 19504 O281
## 19505 O282
## 19506 O283
## 19507 O284
## 19508 O285
## 19509 O288
## 19510 O289
## 19511 O29011
## 19512 O29012
## 19513 O29013
## 19514 O29019
## 19515 O29021
## 19516 O29022
## 19517 O29023
## 19518 O29029
## 19519 O29091
## 19520 O29092
## 19521 O29093
## 19522 O29099
## 19523 O29111
## 19524 O29112
## 19525 O29113
## 19526 O29119
## 19527 O29121
## 19528 O29122
## 19529 O29123
## 19530 O29129
## 19531 O29191
## 19532 O29192
## 19533 O29193
## 19534 O29199
## 19535 O29211
## 19536 O29212
## 19537 O29213
## 19538 O29219
## 19539 O29291
## 19540 O29292
## 19541 O29293
## 19542 O29299
## 19543 O293X1
## 19544 O293X2
## 19545 O293X3
## 19546 O293X9
## 19547 O2940
## 19548 O2941
## 19549 O2942
## 19550 O2943
## 19551 O295X1
## 19552 O295X2
## 19553 O295X3
## 19554 O295X9
## 19555 O2960
## 19556 O2961
## 19557 O2962
## 19558 O2963
## 19559 O298X1
## 19560 O298X2
## 19561 O298X3
## 19562 O298X9
## 19563 O2990
## 19564 O2991
## 19565 O2992
## 19566 O2993
## 19567 O30001
## 19568 O30002
## 19569 O30003
## 19570 O30009
## 19571 O30011
## 19572 O30012
## 19573 O30013
## 19574 O30019
## 19575 O30021
## 19576 O30022
## 19577 O30023
## 19578 O30029
## 19579 O30031
## 19580 O30032
## 19581 O30033
## 19582 O30039
## 19583 O30041
## 19584 O30042
## 19585 O30043
## 19586 O30049
## 19587 O30091
## 19588 O30092
## 19589 O30093
## 19590 O30099
## 19591 O30101
## 19592 O30102
## 19593 O30103
## 19594 O30109
## 19595 O30111
## 19596 O30112
## 19597 O30113
## 19598 O30119
## 19599 O30121
## 19600 O30122
## 19601 O30123
## 19602 O30129
## 19603 O30131
## 19604 O30132
## 19605 O30133
## 19606 O30139
## 19607 O30191
## 19608 O30192
## 19609 O30193
## 19610 O30199
## 19611 O30201
## 19612 O30202
## 19613 O30203
## 19614 O30209
## 19615 O30211
## 19616 O30212
## 19617 O30213
## 19618 O30219
## 19619 O30221
## 19620 O30222
## 19621 O30223
## 19622 O30229
## 19623 O30231
## 19624 O30232
## 19625 O30233
## 19626 O30239
## 19627 O30291
## 19628 O30292
## 19629 O30293
## 19630 O30299
## 19631 O30801
## 19632 O30802
## 19633 O30803
## 19634 O30809
## 19635 O30811
## 19636 O30812
## 19637 O30813
## 19638 O30819
## 19639 O30821
## 19640 O30822
## 19641 O30823
## 19642 O30829
## 19643 O30831
## 19644 O30832
## 19645 O30833
## 19646 O30839
## 19647 O30891
## 19648 O30892
## 19649 O30893
## 19650 O30899
## 19651 O3090
## 19652 O3091
## 19653 O3092
## 19654 O3093
## 19655 O3100X0
## 19656 O3100X1
## 19657 O3100X2
## 19658 O3100X3
## 19659 O3100X4
## 19660 O3100X5
## 19661 O3100X9
## 19662 O3101X0
## 19663 O3101X1
## 19664 O3101X2
## 19665 O3101X3
## 19666 O3101X4
## 19667 O3101X5
## 19668 O3101X9
## 19669 O3102X0
## 19670 O3102X1
## 19671 O3102X2
## 19672 O3102X3
## 19673 O3102X4
## 19674 O3102X5
## 19675 O3102X9
## 19676 O3103X0
## 19677 O3103X1
## 19678 O3103X2
## 19679 O3103X3
## 19680 O3103X4
## 19681 O3103X5
## 19682 O3103X9
## 19683 O3110X0
## 19684 O3110X1
## 19685 O3110X2
## 19686 O3110X3
## 19687 O3110X4
## 19688 O3110X5
## 19689 O3110X9
## 19690 O3111X0
## 19691 O3111X1
## 19692 O3111X2
## 19693 O3111X3
## 19694 O3111X4
## 19695 O3111X5
## 19696 O3111X9
## 19697 O3112X0
## 19698 O3112X1
## 19699 O3112X2
## 19700 O3112X3
## 19701 O3112X4
## 19702 O3112X5
## 19703 O3112X9
## 19704 O3113X0
## 19705 O3113X1
## 19706 O3113X2
## 19707 O3113X3
## 19708 O3113X4
## 19709 O3113X5
## 19710 O3113X9
## 19711 O3120X0
## 19712 O3120X1
## 19713 O3120X2
## 19714 O3120X3
## 19715 O3120X4
## 19716 O3120X5
## 19717 O3120X9
## 19718 O3121X0
## 19719 O3121X1
## 19720 O3121X2
## 19721 O3121X3
## 19722 O3121X4
## 19723 O3121X5
## 19724 O3121X9
## 19725 O3122X0
## 19726 O3122X1
## 19727 O3122X2
## 19728 O3122X3
## 19729 O3122X4
## 19730 O3122X5
## 19731 O3122X9
## 19732 O3123X0
## 19733 O3123X1
## 19734 O3123X2
## 19735 O3123X3
## 19736 O3123X4
## 19737 O3123X5
## 19738 O3123X9
## 19739 O3130X0
## 19740 O3130X1
## 19741 O3130X2
## 19742 O3130X3
## 19743 O3130X4
## 19744 O3130X5
## 19745 O3130X9
## 19746 O3131X0
## 19747 O3131X1
## 19748 O3131X2
## 19749 O3131X3
## 19750 O3131X4
## 19751 O3131X5
## 19752 O3131X9
## 19753 O3132X0
## 19754 O3132X1
## 19755 O3132X2
## 19756 O3132X3
## 19757 O3132X4
## 19758 O3132X5
## 19759 O3132X9
## 19760 O3133X0
## 19761 O3133X1
## 19762 O3133X2
## 19763 O3133X3
## 19764 O3133X4
## 19765 O3133X5
## 19766 O3133X9
## 19767 O318X10
## 19768 O318X11
## 19769 O318X12
## 19770 O318X13
## 19771 O318X14
## 19772 O318X15
## 19773 O318X19
## 19774 O318X20
## 19775 O318X21
## 19776 O318X22
## 19777 O318X23
## 19778 O318X24
## 19779 O318X25
## 19780 O318X29
## 19781 O318X30
## 19782 O318X31
## 19783 O318X32
## 19784 O318X33
## 19785 O318X34
## 19786 O318X35
## 19787 O318X39
## 19788 O318X90
## 19789 O318X91
## 19790 O318X92
## 19791 O318X93
## 19792 O318X94
## 19793 O318X95
## 19794 O318X99
## 19795 O320XX0
## 19796 O320XX1
## 19797 O320XX2
## 19798 O320XX3
## 19799 O320XX4
## 19800 O320XX5
## 19801 O320XX9
## 19802 O321XX0
## 19803 O321XX1
## 19804 O321XX2
## 19805 O321XX3
## 19806 O321XX4
## 19807 O321XX5
## 19808 O321XX9
## 19809 O322XX0
## 19810 O322XX1
## 19811 O322XX2
## 19812 O322XX3
## 19813 O322XX4
## 19814 O322XX5
## 19815 O322XX9
## 19816 O323XX0
## 19817 O323XX1
## 19818 O323XX2
## 19819 O323XX3
## 19820 O323XX4
## 19821 O323XX5
## 19822 O323XX9
## 19823 O324XX0
## 19824 O324XX1
## 19825 O324XX2
## 19826 O324XX3
## 19827 O324XX4
## 19828 O324XX5
## 19829 O324XX9
## 19830 O326XX0
## 19831 O326XX1
## 19832 O326XX2
## 19833 O326XX3
## 19834 O326XX4
## 19835 O326XX5
## 19836 O326XX9
## 19837 O328XX0
## 19838 O328XX1
## 19839 O328XX2
## 19840 O328XX3
## 19841 O328XX4
## 19842 O328XX5
## 19843 O328XX9
## 19844 O329XX0
## 19845 O329XX1
## 19846 O329XX2
## 19847 O329XX3
## 19848 O329XX4
## 19849 O329XX5
## 19850 O329XX9
## 19851 O330
## 19852 O331
## 19853 O332
## 19854 O333XX0
## 19855 O333XX1
## 19856 O333XX2
## 19857 O333XX3
## 19858 O333XX4
## 19859 O333XX5
## 19860 O333XX9
## 19861 O334XX0
## 19862 O334XX1
## 19863 O334XX2
## 19864 O334XX3
## 19865 O334XX4
## 19866 O334XX5
## 19867 O334XX9
## 19868 O335XX0
## 19869 O335XX1
## 19870 O335XX2
## 19871 O335XX3
## 19872 O335XX4
## 19873 O335XX5
## 19874 O335XX9
## 19875 O336XX0
## 19876 O336XX1
## 19877 O336XX2
## 19878 O336XX3
## 19879 O336XX4
## 19880 O336XX5
## 19881 O336XX9
## 19882 O337XX0
## 19883 O337XX1
## 19884 O337XX2
## 19885 O337XX3
## 19886 O337XX4
## 19887 O337XX5
## 19888 O337XX9
## 19889 O338
## 19890 O339
## 19891 O3400
## 19892 O3401
## 19893 O3402
## 19894 O3403
## 19895 O3410
## 19896 O3411
## 19897 O3412
## 19898 O3413
## 19899 O34211
## 19900 O34212
## 19901 O34219
## 19902 O3429
## 19903 O3430
## 19904 O3431
## 19905 O3432
## 19906 O3433
## 19907 O3440
## 19908 O3441
## 19909 O3442
## 19910 O3443
## 19911 O34511
## 19912 O34512
## 19913 O34513
## 19914 O34519
## 19915 O34521
## 19916 O34522
## 19917 O34523
## 19918 O34529
## 19919 O34531
## 19920 O34532
## 19921 O34533
## 19922 O34539
## 19923 O34591
## 19924 O34592
## 19925 O34593
## 19926 O34599
## 19927 O3460
## 19928 O3461
## 19929 O3462
## 19930 O3463
## 19931 O3470
## 19932 O3471
## 19933 O3472
## 19934 O3473
## 19935 O3480
## 19936 O3481
## 19937 O3482
## 19938 O3483
## 19939 O3490
## 19940 O3491
## 19941 O3492
## 19942 O3493
## 19943 O350XX0
## 19944 O350XX1
## 19945 O350XX2
## 19946 O350XX3
## 19947 O350XX4
## 19948 O350XX5
## 19949 O350XX9
## 19950 O351XX0
## 19951 O351XX1
## 19952 O351XX2
## 19953 O351XX3
## 19954 O351XX4
## 19955 O351XX5
## 19956 O351XX9
## 19957 O352XX0
## 19958 O352XX1
## 19959 O352XX2
## 19960 O352XX3
## 19961 O352XX4
## 19962 O352XX5
## 19963 O352XX9
## 19964 O353XX0
## 19965 O353XX1
## 19966 O353XX2
## 19967 O353XX3
## 19968 O353XX4
## 19969 O353XX5
## 19970 O353XX9
## 19971 O354XX0
## 19972 O354XX1
## 19973 O354XX2
## 19974 O354XX3
## 19975 O354XX4
## 19976 O354XX5
## 19977 O354XX9
## 19978 O355XX0
## 19979 O355XX1
## 19980 O355XX2
## 19981 O355XX3
## 19982 O355XX4
## 19983 O355XX5
## 19984 O355XX9
## 19985 O356XX0
## 19986 O356XX1
## 19987 O356XX2
## 19988 O356XX3
## 19989 O356XX4
## 19990 O356XX5
## 19991 O356XX9
## 19992 O357XX0
## 19993 O357XX1
## 19994 O357XX2
## 19995 O357XX3
## 19996 O357XX4
## 19997 O357XX5
## 19998 O357XX9
## 19999 O358XX0
## 20000 O358XX1
## 20001 O358XX2
## 20002 O358XX3
## 20003 O358XX4
## 20004 O358XX5
## 20005 O358XX9
## 20006 O359XX0
## 20007 O359XX1
## 20008 O359XX2
## 20009 O359XX3
## 20010 O359XX4
## 20011 O359XX5
## 20012 O359XX9
## 20013 O360110
## 20014 O360111
## 20015 O360112
## 20016 O360113
## 20017 O360114
## 20018 O360115
## 20019 O360119
## 20020 O360120
## 20021 O360121
## 20022 O360122
## 20023 O360123
## 20024 O360124
## 20025 O360125
## 20026 O360129
## 20027 O360130
## 20028 O360131
## 20029 O360132
## 20030 O360133
## 20031 O360134
## 20032 O360135
## 20033 O360139
## 20034 O360190
## 20035 O360191
## 20036 O360192
## 20037 O360193
## 20038 O360194
## 20039 O360195
## 20040 O360199
## 20041 O360910
## 20042 O360911
## 20043 O360912
## 20044 O360913
## 20045 O360914
## 20046 O360915
## 20047 O360919
## 20048 O360920
## 20049 O360921
## 20050 O360922
## 20051 O360923
## 20052 O360924
## 20053 O360925
## 20054 O360929
## 20055 O360930
## 20056 O360931
## 20057 O360932
## 20058 O360933
## 20059 O360934
## 20060 O360935
## 20061 O360939
## 20062 O360990
## 20063 O360991
## 20064 O360992
## 20065 O360993
## 20066 O360994
## 20067 O360995
## 20068 O360999
## 20069 O361110
## 20070 O361111
## 20071 O361112
## 20072 O361113
## 20073 O361114
## 20074 O361115
## 20075 O361119
## 20076 O361120
## 20077 O361121
## 20078 O361122
## 20079 O361123
## 20080 O361124
## 20081 O361125
## 20082 O361129
## 20083 O361130
## 20084 O361131
## 20085 O361132
## 20086 O361133
## 20087 O361134
## 20088 O361135
## 20089 O361139
## 20090 O361190
## 20091 O361191
## 20092 O361192
## 20093 O361193
## 20094 O361194
## 20095 O361195
## 20096 O361199
## 20097 O361910
## 20098 O361911
## 20099 O361912
## 20100 O361913
## 20101 O361914
## 20102 O361915
## 20103 O361919
## 20104 O361920
## 20105 O361921
## 20106 O361922
## 20107 O361923
## 20108 O361924
## 20109 O361925
## 20110 O361929
## 20111 O361930
## 20112 O361931
## 20113 O361932
## 20114 O361933
## 20115 O361934
## 20116 O361935
## 20117 O361939
## 20118 O361990
## 20119 O361991
## 20120 O361992
## 20121 O361993
## 20122 O361994
## 20123 O361995
## 20124 O361999
## 20125 O3620X0
## 20126 O3620X1
## 20127 O3620X2
## 20128 O3620X3
## 20129 O3620X4
## 20130 O3620X5
## 20131 O3620X9
## 20132 O3621X0
## 20133 O3621X1
## 20134 O3621X2
## 20135 O3621X3
## 20136 O3621X4
## 20137 O3621X5
## 20138 O3621X9
## 20139 O3622X0
## 20140 O3622X1
## 20141 O3622X2
## 20142 O3622X3
## 20143 O3622X4
## 20144 O3622X5
## 20145 O3622X9
## 20146 O3623X0
## 20147 O3623X1
## 20148 O3623X2
## 20149 O3623X3
## 20150 O3623X4
## 20151 O3623X5
## 20152 O3623X9
## 20153 O364XX0
## 20154 O364XX1
## 20155 O364XX2
## 20156 O364XX3
## 20157 O364XX4
## 20158 O364XX5
## 20159 O364XX9
## 20160 O365110
## 20161 O365111
## 20162 O365112
## 20163 O365113
## 20164 O365114
## 20165 O365115
## 20166 O365119
## 20167 O365120
## 20168 O365121
## 20169 O365122
## 20170 O365123
## 20171 O365124
## 20172 O365125
## 20173 O365129
## 20174 O365130
## 20175 O365131
## 20176 O365132
## 20177 O365133
## 20178 O365134
## 20179 O365135
## 20180 O365139
## 20181 O365190
## 20182 O365191
## 20183 O365192
## 20184 O365193
## 20185 O365194
## 20186 O365195
## 20187 O365199
## 20188 O365910
## 20189 O365911
## 20190 O365912
## 20191 O365913
## 20192 O365914
## 20193 O365915
## 20194 O365919
## 20195 O365920
## 20196 O365921
## 20197 O365922
## 20198 O365923
## 20199 O365924
## 20200 O365925
## 20201 O365929
## 20202 O365930
## 20203 O365931
## 20204 O365932
## 20205 O365933
## 20206 O365934
## 20207 O365935
## 20208 O365939
## 20209 O365990
## 20210 O365991
## 20211 O365992
## 20212 O365993
## 20213 O365994
## 20214 O365995
## 20215 O365999
## 20216 O3660X0
## 20217 O3660X1
## 20218 O3660X2
## 20219 O3660X3
## 20220 O3660X4
## 20221 O3660X5
## 20222 O3660X9
## 20223 O3661X0
## 20224 O3661X1
## 20225 O3661X2
## 20226 O3661X3
## 20227 O3661X4
## 20228 O3661X5
## 20229 O3661X9
## 20230 O3662X0
## 20231 O3662X1
## 20232 O3662X2
## 20233 O3662X3
## 20234 O3662X4
## 20235 O3662X5
## 20236 O3662X9
## 20237 O3663X0
## 20238 O3663X1
## 20239 O3663X2
## 20240 O3663X3
## 20241 O3663X4
## 20242 O3663X5
## 20243 O3663X9
## 20244 O3670X0
## 20245 O3670X1
## 20246 O3670X2
## 20247 O3670X3
## 20248 O3670X4
## 20249 O3670X5
## 20250 O3670X9
## 20251 O3671X0
## 20252 O3671X1
## 20253 O3671X2
## 20254 O3671X3
## 20255 O3671X4
## 20256 O3671X5
## 20257 O3671X9
## 20258 O3672X0
## 20259 O3672X1
## 20260 O3672X2
## 20261 O3672X3
## 20262 O3672X4
## 20263 O3672X5
## 20264 O3672X9
## 20265 O3673X0
## 20266 O3673X1
## 20267 O3673X2
## 20268 O3673X3
## 20269 O3673X4
## 20270 O3673X5
## 20271 O3673X9
## 20272 O3680X0
## 20273 O3680X1
## 20274 O3680X2
## 20275 O3680X3
## 20276 O3680X4
## 20277 O3680X5
## 20278 O3680X9
## 20279 O368120
## 20280 O368121
## 20281 O368122
## 20282 O368123
## 20283 O368124
## 20284 O368125
## 20285 O368129
## 20286 O368130
## 20287 O368131
## 20288 O368132
## 20289 O368133
## 20290 O368134
## 20291 O368135
## 20292 O368139
## 20293 O368190
## 20294 O368191
## 20295 O368192
## 20296 O368193
## 20297 O368194
## 20298 O368195
## 20299 O368199
## 20300 O368210
## 20301 O368211
## 20302 O368212
## 20303 O368213
## 20304 O368214
## 20305 O368215
## 20306 O368219
## 20307 O368220
## 20308 O368221
## 20309 O368222
## 20310 O368223
## 20311 O368224
## 20312 O368225
## 20313 O368229
## 20314 O368230
## 20315 O368231
## 20316 O368232
## 20317 O368233
## 20318 O368234
## 20319 O368235
## 20320 O368239
## 20321 O368290
## 20322 O368291
## 20323 O368292
## 20324 O368293
## 20325 O368294
## 20326 O368295
## 20327 O368299
## 20328 O368310
## 20329 O368311
## 20330 O368312
## 20331 O368313
## 20332 O368314
## 20333 O368315
## 20334 O368319
## 20335 O368320
## 20336 O368321
## 20337 O368322
## 20338 O368323
## 20339 O368324
## 20340 O368325
## 20341 O368329
## 20342 O368330
## 20343 O368331
## 20344 O368332
## 20345 O368333
## 20346 O368334
## 20347 O368335
## 20348 O368339
## 20349 O368390
## 20350 O368391
## 20351 O368392
## 20352 O368393
## 20353 O368394
## 20354 O368395
## 20355 O368399
## 20356 O368910
## 20357 O368911
## 20358 O368912
## 20359 O368913
## 20360 O368914
## 20361 O368915
## 20362 O368919
## 20363 O368920
## 20364 O368921
## 20365 O368922
## 20366 O368923
## 20367 O368924
## 20368 O368925
## 20369 O368929
## 20370 O368930
## 20371 O368931
## 20372 O368932
## 20373 O368933
## 20374 O368934
## 20375 O368935
## 20376 O368939
## 20377 O368990
## 20378 O368991
## 20379 O368992
## 20380 O368993
## 20381 O368994
## 20382 O368995
## 20383 O368999
## 20384 O3690X0
## 20385 O3690X1
## 20386 O3690X2
## 20387 O3690X3
## 20388 O3690X4
## 20389 O3690X5
## 20390 O3690X9
## 20391 O3691X0
## 20392 O3691X1
## 20393 O3691X2
## 20394 O3691X3
## 20395 O3691X4
## 20396 O3691X5
## 20397 O3691X9
## 20398 O3692X0
## 20399 O3692X1
## 20400 O3692X2
## 20401 O3692X3
## 20402 O3692X4
## 20403 O3692X5
## 20404 O3692X9
## 20405 O3693X0
## 20406 O3693X1
## 20407 O3693X2
## 20408 O3693X3
## 20409 O3693X4
## 20410 O3693X5
## 20411 O3693X9
## 20412 O401XX0
## 20413 O401XX1
## 20414 O401XX2
## 20415 O401XX3
## 20416 O401XX4
## 20417 O401XX5
## 20418 O401XX9
## 20419 O402XX0
## 20420 O402XX1
## 20421 O402XX2
## 20422 O402XX3
## 20423 O402XX4
## 20424 O402XX5
## 20425 O402XX9
## 20426 O403XX0
## 20427 O403XX1
## 20428 O403XX2
## 20429 O403XX3
## 20430 O403XX4
## 20431 O403XX5
## 20432 O403XX9
## 20433 O409XX0
## 20434 O409XX1
## 20435 O409XX2
## 20436 O409XX3
## 20437 O409XX4
## 20438 O409XX5
## 20439 O409XX9
## 20440 O4100X0
## 20441 O4100X1
## 20442 O4100X2
## 20443 O4100X3
## 20444 O4100X4
## 20445 O4100X5
## 20446 O4100X9
## 20447 O4101X0
## 20448 O4101X1
## 20449 O4101X2
## 20450 O4101X3
## 20451 O4101X4
## 20452 O4101X5
## 20453 O4101X9
## 20454 O4102X0
## 20455 O4102X1
## 20456 O4102X2
## 20457 O4102X3
## 20458 O4102X4
## 20459 O4102X5
## 20460 O4102X9
## 20461 O4103X0
## 20462 O4103X1
## 20463 O4103X2
## 20464 O4103X3
## 20465 O4103X4
## 20466 O4103X5
## 20467 O4103X9
## 20468 O411010
## 20469 O411011
## 20470 O411012
## 20471 O411013
## 20472 O411014
## 20473 O411015
## 20474 O411019
## 20475 O411020
## 20476 O411021
## 20477 O411022
## 20478 O411023
## 20479 O411024
## 20480 O411025
## 20481 O411029
## 20482 O411030
## 20483 O411031
## 20484 O411032
## 20485 O411033
## 20486 O411034
## 20487 O411035
## 20488 O411039
## 20489 O411090
## 20490 O411091
## 20491 O411092
## 20492 O411093
## 20493 O411094
## 20494 O411095
## 20495 O411099
## 20496 O411210
## 20497 O411211
## 20498 O411212
## 20499 O411213
## 20500 O411214
## 20501 O411215
## 20502 O411219
## 20503 O411220
## 20504 O411221
## 20505 O411222
## 20506 O411223
## 20507 O411224
## 20508 O411225
## 20509 O411229
## 20510 O411230
## 20511 O411231
## 20512 O411232
## 20513 O411233
## 20514 O411234
## 20515 O411235
## 20516 O411239
## 20517 O411290
## 20518 O411291
## 20519 O411292
## 20520 O411293
## 20521 O411294
## 20522 O411295
## 20523 O411299
## 20524 O411410
## 20525 O411411
## 20526 O411412
## 20527 O411413
## 20528 O411414
## 20529 O411415
## 20530 O411419
## 20531 O411420
## 20532 O411421
## 20533 O411422
## 20534 O411423
## 20535 O411424
## 20536 O411425
## 20537 O411429
## 20538 O411430
## 20539 O411431
## 20540 O411432
## 20541 O411433
## 20542 O411434
## 20543 O411435
## 20544 O411439
## 20545 O411490
## 20546 O411491
## 20547 O411492
## 20548 O411493
## 20549 O411494
## 20550 O411495
## 20551 O411499
## 20552 O418X10
## 20553 O418X11
## 20554 O418X12
## 20555 O418X13
## 20556 O418X14
## 20557 O418X15
## 20558 O418X19
## 20559 O418X20
## 20560 O418X21
## 20561 O418X22
## 20562 O418X23
## 20563 O418X24
## 20564 O418X25
## 20565 O418X29
## 20566 O418X30
## 20567 O418X31
## 20568 O418X32
## 20569 O418X33
## 20570 O418X34
## 20571 O418X35
## 20572 O418X39
## 20573 O418X90
## 20574 O418X91
## 20575 O418X92
## 20576 O418X93
## 20577 O418X94
## 20578 O418X95
## 20579 O418X99
## 20580 O4190X0
## 20581 O4190X1
## 20582 O4190X2
## 20583 O4190X3
## 20584 O4190X4
## 20585 O4190X5
## 20586 O4190X9
## 20587 O4191X0
## 20588 O4191X1
## 20589 O4191X2
## 20590 O4191X3
## 20591 O4191X4
## 20592 O4191X5
## 20593 O4191X9
## 20594 O4192X0
## 20595 O4192X1
## 20596 O4192X2
## 20597 O4192X3
## 20598 O4192X4
## 20599 O4192X5
## 20600 O4192X9
## 20601 O4193X0
## 20602 O4193X1
## 20603 O4193X2
## 20604 O4193X3
## 20605 O4193X4
## 20606 O4193X5
## 20607 O4193X9
## 20608 O4200
## 20609 O42011
## 20610 O42012
## 20611 O42013
## 20612 O42019
## 20613 O4202
## 20614 O4210
## 20615 O42111
## 20616 O42112
## 20617 O42113
## 20618 O42119
## 20619 O4212
## 20620 O4290
## 20621 O42911
## 20622 O42912
## 20623 O42913
## 20624 O42919
## 20625 O4292
## 20626 O43011
## 20627 O43012
## 20628 O43013
## 20629 O43019
## 20630 O43021
## 20631 O43022
## 20632 O43023
## 20633 O43029
## 20634 O43101
## 20635 O43102
## 20636 O43103
## 20637 O43109
## 20638 O43111
## 20639 O43112
## 20640 O43113
## 20641 O43119
## 20642 O43121
## 20643 O43122
## 20644 O43123
## 20645 O43129
## 20646 O43191
## 20647 O43192
## 20648 O43193
## 20649 O43199
## 20650 O43211
## 20651 O43212
## 20652 O43213
## 20653 O43219
## 20654 O43221
## 20655 O43222
## 20656 O43223
## 20657 O43229
## 20658 O43231
## 20659 O43232
## 20660 O43233
## 20661 O43239
## 20662 O43811
## 20663 O43812
## 20664 O43813
## 20665 O43819
## 20666 O43891
## 20667 O43892
## 20668 O43893
## 20669 O43899
## 20670 O4390
## 20671 O4391
## 20672 O4392
## 20673 O4393
## 20674 O4400
## 20675 O4401
## 20676 O4402
## 20677 O4403
## 20678 O4410
## 20679 O4411
## 20680 O4412
## 20681 O4413
## 20682 O4420
## 20683 O4421
## 20684 O4422
## 20685 O4423
## 20686 O4430
## 20687 O4431
## 20688 O4432
## 20689 O4433
## 20690 O4440
## 20691 O4441
## 20692 O4442
## 20693 O4443
## 20694 O4450
## 20695 O4451
## 20696 O4452
## 20697 O4453
## 20698 O45001
## 20699 O45002
## 20700 O45003
## 20701 O45009
## 20702 O45011
## 20703 O45012
## 20704 O45013
## 20705 O45019
## 20706 O45021
## 20707 O45022
## 20708 O45023
## 20709 O45029
## 20710 O45091
## 20711 O45092
## 20712 O45093
## 20713 O45099
## 20714 O458X1
## 20715 O458X2
## 20716 O458X3
## 20717 O458X9
## 20718 O4590
## 20719 O4591
## 20720 O4592
## 20721 O4593
## 20722 O46001
## 20723 O46002
## 20724 O46003
## 20725 O46009
## 20726 O46011
## 20727 O46012
## 20728 O46013
## 20729 O46019
## 20730 O46021
## 20731 O46022
## 20732 O46023
## 20733 O46029
## 20734 O46091
## 20735 O46092
## 20736 O46093
## 20737 O46099
## 20738 O468X1
## 20739 O468X2
## 20740 O468X3
## 20741 O468X9
## 20742 O4690
## 20743 O4691
## 20744 O4692
## 20745 O4693
## 20746 O4700
## 20747 O4702
## 20748 O4703
## 20749 O471
## 20750 O479
## 20751 O480
## 20752 O481
## 20753 O6000
## 20754 O6002
## 20755 O6003
## 20756 O6010X0
## 20757 O6010X1
## 20758 O6010X2
## 20759 O6010X3
## 20760 O6010X4
## 20761 O6010X5
## 20762 O6010X9
## 20763 O6012X0
## 20764 O6012X1
## 20765 O6012X2
## 20766 O6012X3
## 20767 O6012X4
## 20768 O6012X5
## 20769 O6012X9
## 20770 O6013X0
## 20771 O6013X1
## 20772 O6013X2
## 20773 O6013X3
## 20774 O6013X4
## 20775 O6013X5
## 20776 O6013X9
## 20777 O6014X0
## 20778 O6014X1
## 20779 O6014X2
## 20780 O6014X3
## 20781 O6014X4
## 20782 O6014X5
## 20783 O6014X9
## 20784 O6020X0
## 20785 O6020X1
## 20786 O6020X2
## 20787 O6020X3
## 20788 O6020X4
## 20789 O6020X5
## 20790 O6020X9
## 20791 O6022X0
## 20792 O6022X1
## 20793 O6022X2
## 20794 O6022X3
## 20795 O6022X4
## 20796 O6022X5
## 20797 O6022X9
## 20798 O6023X0
## 20799 O6023X1
## 20800 O6023X2
## 20801 O6023X3
## 20802 O6023X4
## 20803 O6023X5
## 20804 O6023X9
## 20805 O610
## 20806 O611
## 20807 O618
## 20808 O619
## 20809 O620
## 20810 O621
## 20811 O622
## 20812 O623
## 20813 O624
## 20814 O628
## 20815 O629
## 20816 O630
## 20817 O631
## 20818 O632
## 20819 O639
## 20820 O640XX0
## 20821 O640XX1
## 20822 O640XX2
## 20823 O640XX3
## 20824 O640XX4
## 20825 O640XX5
## 20826 O640XX9
## 20827 O641XX0
## 20828 O641XX1
## 20829 O641XX2
## 20830 O641XX3
## 20831 O641XX4
## 20832 O641XX5
## 20833 O641XX9
## 20834 O642XX0
## 20835 O642XX1
## 20836 O642XX2
## 20837 O642XX3
## 20838 O642XX4
## 20839 O642XX5
## 20840 O642XX9
## 20841 O643XX0
## 20842 O643XX1
## 20843 O643XX2
## 20844 O643XX3
## 20845 O643XX4
## 20846 O643XX5
## 20847 O643XX9
## 20848 O644XX0
## 20849 O644XX1
## 20850 O644XX2
## 20851 O644XX3
## 20852 O644XX4
## 20853 O644XX5
## 20854 O644XX9
## 20855 O645XX0
## 20856 O645XX1
## 20857 O645XX2
## 20858 O645XX3
## 20859 O645XX4
## 20860 O645XX5
## 20861 O645XX9
## 20862 O648XX0
## 20863 O648XX1
## 20864 O648XX2
## 20865 O648XX3
## 20866 O648XX4
## 20867 O648XX5
## 20868 O648XX9
## 20869 O649XX0
## 20870 O649XX1
## 20871 O649XX2
## 20872 O649XX3
## 20873 O649XX4
## 20874 O649XX5
## 20875 O649XX9
## 20876 O650
## 20877 O651
## 20878 O652
## 20879 O653
## 20880 O654
## 20881 O655
## 20882 O658
## 20883 O659
## 20884 O660
## 20885 O661
## 20886 O662
## 20887 O663
## 20888 O6640
## 20889 O6641
## 20890 O665
## 20891 O666
## 20892 O668
## 20893 O669
## 20894 O670
## 20895 O678
## 20896 O679
## 20897 O68
## 20898 O690XX0
## 20899 O690XX1
## 20900 O690XX2
## 20901 O690XX3
## 20902 O690XX4
## 20903 O690XX5
## 20904 O690XX9
## 20905 O691XX0
## 20906 O691XX1
## 20907 O691XX2
## 20908 O691XX3
## 20909 O691XX4
## 20910 O691XX5
## 20911 O691XX9
## 20912 O692XX0
## 20913 O692XX1
## 20914 O692XX2
## 20915 O692XX3
## 20916 O692XX4
## 20917 O692XX5
## 20918 O692XX9
## 20919 O693XX0
## 20920 O693XX1
## 20921 O693XX2
## 20922 O693XX3
## 20923 O693XX4
## 20924 O693XX5
## 20925 O693XX9
## 20926 O694XX0
## 20927 O694XX1
## 20928 O694XX2
## 20929 O694XX3
## 20930 O694XX4
## 20931 O694XX5
## 20932 O694XX9
## 20933 O695XX0
## 20934 O695XX1
## 20935 O695XX2
## 20936 O695XX3
## 20937 O695XX4
## 20938 O695XX5
## 20939 O695XX9
## 20940 O6981X0
## 20941 O6981X1
## 20942 O6981X2
## 20943 O6981X3
## 20944 O6981X4
## 20945 O6981X5
## 20946 O6981X9
## 20947 O6982X0
## 20948 O6982X1
## 20949 O6982X2
## 20950 O6982X3
## 20951 O6982X4
## 20952 O6982X5
## 20953 O6982X9
## 20954 O6989X0
## 20955 O6989X1
## 20956 O6989X2
## 20957 O6989X3
## 20958 O6989X4
## 20959 O6989X5
## 20960 O6989X9
## 20961 O699XX0
## 20962 O699XX1
## 20963 O699XX2
## 20964 O699XX3
## 20965 O699XX4
## 20966 O699XX5
## 20967 O699XX9
## 20968 O700
## 20969 O701
## 20970 O7020
## 20971 O7021
## 20972 O7022
## 20973 O7023
## 20974 O703
## 20975 O704
## 20976 O709
## 20977 O7100
## 20978 O7102
## 20979 O7103
## 20980 O711
## 20981 O712
## 20982 O713
## 20983 O714
## 20984 O715
## 20985 O716
## 20986 O717
## 20987 O7181
## 20988 O7182
## 20989 O7189
## 20990 O719
## 20991 O720
## 20992 O721
## 20993 O722
## 20994 O723
## 20995 O730
## 20996 O731
## 20997 O740
## 20998 O741
## 20999 O742
## 21000 O743
## 21001 O744
## 21002 O745
## 21003 O746
## 21004 O747
## 21005 O748
## 21006 O749
## 21007 O750
## 21008 O751
## 21009 O752
## 21010 O753
## 21011 O754
## 21012 O755
## 21013 O7581
## 21014 O7582
## 21015 O7589
## 21016 O759
## 21017 O76
## 21018 O770
## 21019 O771
## 21020 O778
## 21021 O779
## 21022 O80
## 21023 O82
## 21024 O85
## 21025 O8600
## 21026 O8601
## 21027 O8602
## 21028 O8603
## 21029 O8604
## 21030 O8609
## 21031 O8611
## 21032 O8612
## 21033 O8613
## 21034 O8619
## 21035 O8620
## 21036 O8621
## 21037 O8622
## 21038 O8629
## 21039 O864
## 21040 O8681
## 21041 O8689
## 21042 O870
## 21043 O871
## 21044 O872
## 21045 O873
## 21046 O874
## 21047 O878
## 21048 O879
## 21049 O88011
## 21050 O88012
## 21051 O88013
## 21052 O88019
## 21053 O8802
## 21054 O8803
## 21055 O88111
## 21056 O88112
## 21057 O88113
## 21058 O88119
## 21059 O8812
## 21060 O8813
## 21061 O88211
## 21062 O88212
## 21063 O88213
## 21064 O88219
## 21065 O8822
## 21066 O8823
## 21067 O88311
## 21068 O88312
## 21069 O88313
## 21070 O88319
## 21071 O8832
## 21072 O8833
## 21073 O88811
## 21074 O88812
## 21075 O88813
## 21076 O88819
## 21077 O8882
## 21078 O8883
## 21079 O8901
## 21080 O8909
## 21081 O891
## 21082 O892
## 21083 O893
## 21084 O894
## 21085 O895
## 21086 O896
## 21087 O898
## 21088 O899
## 21089 O900
## 21090 O901
## 21091 O902
## 21092 O903
## 21093 O904
## 21094 O905
## 21095 O906
## 21096 O9081
## 21097 O9089
## 21098 O909
## 21099 O91011
## 21100 O91012
## 21101 O91013
## 21102 O91019
## 21103 O9102
## 21104 O9103
## 21105 O91111
## 21106 O91112
## 21107 O91113
## 21108 O91119
## 21109 O9112
## 21110 O9113
## 21111 O91211
## 21112 O91212
## 21113 O91213
## 21114 O91219
## 21115 O9122
## 21116 O9123
## 21117 O92011
## 21118 O92012
## 21119 O92013
## 21120 O92019
## 21121 O9202
## 21122 O9203
## 21123 O92111
## 21124 O92112
## 21125 O92113
## 21126 O92119
## 21127 O9212
## 21128 O9213
## 21129 O9220
## 21130 O9229
## 21131 O923
## 21132 O924
## 21133 O925
## 21134 O926
## 21135 O9270
## 21136 O9279
## 21137 O94
## 21138 O98011
## 21139 O98012
## 21140 O98013
## 21141 O98019
## 21142 O9802
## 21143 O9803
## 21144 O98111
## 21145 O98112
## 21146 O98113
## 21147 O98119
## 21148 O9812
## 21149 O9813
## 21150 O98211
## 21151 O98212
## 21152 O98213
## 21153 O98219
## 21154 O9822
## 21155 O9823
## 21156 O98311
## 21157 O98312
## 21158 O98313
## 21159 O98319
## 21160 O9832
## 21161 O9833
## 21162 O98411
## 21163 O98412
## 21164 O98413
## 21165 O98419
## 21166 O9842
## 21167 O9843
## 21168 O98511
## 21169 O98512
## 21170 O98513
## 21171 O98519
## 21172 O9852
## 21173 O9853
## 21174 O98611
## 21175 O98612
## 21176 O98613
## 21177 O98619
## 21178 O9862
## 21179 O9863
## 21180 O98711
## 21181 O98712
## 21182 O98713
## 21183 O98719
## 21184 O9872
## 21185 O9873
## 21186 O98811
## 21187 O98812
## 21188 O98813
## 21189 O98819
## 21190 O9882
## 21191 O9883
## 21192 O98911
## 21193 O98912
## 21194 O98913
## 21195 O98919
## 21196 O9892
## 21197 O9893
## 21198 O99011
## 21199 O99012
## 21200 O99013
## 21201 O99019
## 21202 O9902
## 21203 O9903
## 21204 O99111
## 21205 O99112
## 21206 O99113
## 21207 O99119
## 21208 O9912
## 21209 O9913
## 21210 O99210
## 21211 O99211
## 21212 O99212
## 21213 O99213
## 21214 O99214
## 21215 O99215
## 21216 O99280
## 21217 O99281
## 21218 O99282
## 21219 O99283
## 21220 O99284
## 21221 O99285
## 21222 O99310
## 21223 O99311
## 21224 O99312
## 21225 O99313
## 21226 O99314
## 21227 O99315
## 21228 O99320
## 21229 O99321
## 21230 O99322
## 21231 O99323
## 21232 O99324
## 21233 O99325
## 21234 O99330
## 21235 O99331
## 21236 O99332
## 21237 O99333
## 21238 O99334
## 21239 O99335
## 21240 O99340
## 21241 O99341
## 21242 O99342
## 21243 O99343
## 21244 O99344
## 21245 O99345
## 21246 O99350
## 21247 O99351
## 21248 O99352
## 21249 O99353
## 21250 O99354
## 21251 O99355
## 21252 O99411
## 21253 O99412
## 21254 O99413
## 21255 O99419
## 21256 O9942
## 21257 O9943
## 21258 O99511
## 21259 O99512
## 21260 O99513
## 21261 O99519
## 21262 O9952
## 21263 O9953
## 21264 O99611
## 21265 O99612
## 21266 O99613
## 21267 O99619
## 21268 O9962
## 21269 O9963
## 21270 O99711
## 21271 O99712
## 21272 O99713
## 21273 O99719
## 21274 O9972
## 21275 O9973
## 21276 O99810
## 21277 O99814
## 21278 O99815
## 21279 O99820
## 21280 O99824
## 21281 O99825
## 21282 O99830
## 21283 O99834
## 21284 O99835
## 21285 O99840
## 21286 O99841
## 21287 O99842
## 21288 O99843
## 21289 O99844
## 21290 O99845
## 21291 O9989
## 21292 O9A111
## 21293 O9A112
## 21294 O9A113
## 21295 O9A119
## 21296 O9A12
## 21297 O9A13
## 21298 O9A211
## 21299 O9A212
## 21300 O9A213
## 21301 O9A219
## 21302 O9A22
## 21303 O9A23
## 21304 O9A311
## 21305 O9A312
## 21306 O9A313
## 21307 O9A319
## 21308 O9A32
## 21309 O9A33
## 21310 O9A411
## 21311 O9A412
## 21312 O9A413
## 21313 O9A419
## 21314 O9A42
## 21315 O9A43
## 21316 O9A511
## 21317 O9A512
## 21318 O9A513
## 21319 O9A519
## 21320 O9A52
## 21321 O9A53
## 21322 P000
## 21323 P001
## 21324 P002
## 21325 P003
## 21326 P004
## 21327 P005
## 21328 P006
## 21329 P007
## 21330 P0081
## 21331 P0089
## 21332 P009
## 21333 P010
## 21334 P011
## 21335 P012
## 21336 P013
## 21337 P014
## 21338 P015
## 21339 P016
## 21340 P017
## 21341 P018
## 21342 P019
## 21343 P020
## 21344 P021
## 21345 P0220
## 21346 P0229
## 21347 P023
## 21348 P024
## 21349 P025
## 21350 P0260
## 21351 P0269
## 21352 P0270
## 21353 P0278
## 21354 P028
## 21355 P029
## 21356 P030
## 21357 P031
## 21358 P032
## 21359 P033
## 21360 P034
## 21361 P035
## 21362 P036
## 21363 P03810
## 21364 P03811
## 21365 P03819
## 21366 P0382
## 21367 P0389
## 21368 P039
## 21369 P040
## 21370 P0411
## 21371 P0412
## 21372 P0413
## 21373 P0414
## 21374 P0415
## 21375 P0416
## 21376 P0417
## 21377 P041A
## 21378 P0418
## 21379 P0419
## 21380 P042
## 21381 P043
## 21382 P0440
## 21383 P0441
## 21384 P0442
## 21385 P0449
## 21386 P045
## 21387 P046
## 21388 P0481
## 21389 P0489
## 21390 P049
## 21391 P0500
## 21392 P0501
## 21393 P0502
## 21394 P0503
## 21395 P0504
## 21396 P0505
## 21397 P0506
## 21398 P0507
## 21399 P0508
## 21400 P0509
## 21401 P0510
## 21402 P0511
## 21403 P0512
## 21404 P0513
## 21405 P0514
## 21406 P0515
## 21407 P0516
## 21408 P0517
## 21409 P0518
## 21410 P0519
## 21411 P052
## 21412 P059
## 21413 P0700
## 21414 P0701
## 21415 P0702
## 21416 P0703
## 21417 P0710
## 21418 P0714
## 21419 P0715
## 21420 P0716
## 21421 P0717
## 21422 P0718
## 21423 P0720
## 21424 P0721
## 21425 P0722
## 21426 P0723
## 21427 P0724
## 21428 P0725
## 21429 P0726
## 21430 P0730
## 21431 P0731
## 21432 P0732
## 21433 P0733
## 21434 P0734
## 21435 P0735
## 21436 P0736
## 21437 P0737
## 21438 P0738
## 21439 P0739
## 21440 P080
## 21441 P081
## 21442 P0821
## 21443 P0822
## 21444 P09
## 21445 P100
## 21446 P101
## 21447 P102
## 21448 P103
## 21449 P104
## 21450 P108
## 21451 P109
## 21452 P110
## 21453 P111
## 21454 P112
## 21455 P113
## 21456 P114
## 21457 P115
## 21458 P119
## 21459 P120
## 21460 P121
## 21461 P122
## 21462 P123
## 21463 P124
## 21464 P1281
## 21465 P1289
## 21466 P129
## 21467 P130
## 21468 P131
## 21469 P132
## 21470 P133
## 21471 P134
## 21472 P138
## 21473 P139
## 21474 P140
## 21475 P141
## 21476 P142
## 21477 P143
## 21478 P148
## 21479 P149
## 21480 P150
## 21481 P151
## 21482 P152
## 21483 P153
## 21484 P154
## 21485 P155
## 21486 P156
## 21487 P158
## 21488 P159
## 21489 P190
## 21490 P191
## 21491 P192
## 21492 P199
## 21493 P220
## 21494 P221
## 21495 P228
## 21496 P229
## 21497 P230
## 21498 P231
## 21499 P232
## 21500 P233
## 21501 P234
## 21502 P235
## 21503 P236
## 21504 P238
## 21505 P239
## 21506 P2400
## 21507 P2401
## 21508 P2410
## 21509 P2411
## 21510 P2420
## 21511 P2421
## 21512 P2430
## 21513 P2431
## 21514 P2480
## 21515 P2481
## 21516 P249
## 21517 P250
## 21518 P251
## 21519 P252
## 21520 P253
## 21521 P258
## 21522 P260
## 21523 P261
## 21524 P268
## 21525 P269
## 21526 P270
## 21527 P271
## 21528 P278
## 21529 P279
## 21530 P280
## 21531 P2810
## 21532 P2811
## 21533 P2819
## 21534 P282
## 21535 P283
## 21536 P284
## 21537 P285
## 21538 P2881
## 21539 P2889
## 21540 P289
## 21541 P290
## 21542 P2911
## 21543 P2912
## 21544 P292
## 21545 P2930
## 21546 P2938
## 21547 P294
## 21548 P2981
## 21549 P2989
## 21550 P299
## 21551 P350
## 21552 P351
## 21553 P352
## 21554 P353
## 21555 P354
## 21556 P358
## 21557 P359
## 21558 P360
## 21559 P3610
## 21560 P3619
## 21561 P362
## 21562 P3630
## 21563 P3639
## 21564 P364
## 21565 P365
## 21566 P368
## 21567 P369
## 21568 P370
## 21569 P371
## 21570 P372
## 21571 P373
## 21572 P374
## 21573 P375
## 21574 P378
## 21575 P379
## 21576 P381
## 21577 P389
## 21578 P390
## 21579 P391
## 21580 P392
## 21581 P393
## 21582 P394
## 21583 P398
## 21584 P399
## 21585 P500
## 21586 P501
## 21587 P502
## 21588 P503
## 21589 P504
## 21590 P505
## 21591 P508
## 21592 P509
## 21593 P510
## 21594 P518
## 21595 P519
## 21596 P520
## 21597 P521
## 21598 P5221
## 21599 P5222
## 21600 P523
## 21601 P524
## 21602 P525
## 21603 P526
## 21604 P528
## 21605 P529
## 21606 P53
## 21607 P540
## 21608 P541
## 21609 P542
## 21610 P543
## 21611 P544
## 21612 P545
## 21613 P546
## 21614 P548
## 21615 P549
## 21616 P550
## 21617 P551
## 21618 P558
## 21619 P559
## 21620 P560
## 21621 P5690
## 21622 P5699
## 21623 P570
## 21624 P578
## 21625 P579
## 21626 P580
## 21627 P581
## 21628 P582
## 21629 P583
## 21630 P5841
## 21631 P5842
## 21632 P585
## 21633 P588
## 21634 P589
## 21635 P590
## 21636 P591
## 21637 P5920
## 21638 P5929
## 21639 P593
## 21640 P598
## 21641 P599
## 21642 P60
## 21643 P610
## 21644 P611
## 21645 P612
## 21646 P613
## 21647 P614
## 21648 P615
## 21649 P616
## 21650 P618
## 21651 P619
## 21652 P700
## 21653 P701
## 21654 P702
## 21655 P703
## 21656 P704
## 21657 P708
## 21658 P709
## 21659 P710
## 21660 P711
## 21661 P712
## 21662 P713
## 21663 P714
## 21664 P718
## 21665 P719
## 21666 P720
## 21667 P721
## 21668 P722
## 21669 P728
## 21670 P729
## 21671 P740
## 21672 P741
## 21673 P7421
## 21674 P7422
## 21675 P7431
## 21676 P7432
## 21677 P7441
## 21678 P74421
## 21679 P74422
## 21680 P7449
## 21681 P745
## 21682 P746
## 21683 P748
## 21684 P749
## 21685 P760
## 21686 P761
## 21687 P762
## 21688 P768
## 21689 P769
## 21690 P771
## 21691 P772
## 21692 P773
## 21693 P779
## 21694 P780
## 21695 P781
## 21696 P782
## 21697 P783
## 21698 P7881
## 21699 P7882
## 21700 P7883
## 21701 P7884
## 21702 P7889
## 21703 P789
## 21704 P800
## 21705 P808
## 21706 P809
## 21707 P810
## 21708 P818
## 21709 P819
## 21710 P830
## 21711 P831
## 21712 P832
## 21713 P8330
## 21714 P8339
## 21715 P834
## 21716 P835
## 21717 P836
## 21718 P8381
## 21719 P8388
## 21720 P839
## 21721 P84
## 21722 P90
## 21723 P910
## 21724 P911
## 21725 P912
## 21726 P913
## 21727 P914
## 21728 P915
## 21729 P9160
## 21730 P9161
## 21731 P9162
## 21732 P9163
## 21733 P91811
## 21734 P91819
## 21735 P9188
## 21736 P919
## 21737 P9201
## 21738 P9209
## 21739 P921
## 21740 P922
## 21741 P923
## 21742 P924
## 21743 P925
## 21744 P926
## 21745 P928
## 21746 P929
## 21747 P930
## 21748 P938
## 21749 P940
## 21750 P941
## 21751 P942
## 21752 P948
## 21753 P949
## 21754 P95
## 21755 P960
## 21756 P961
## 21757 P962
## 21758 P963
## 21759 P965
## 21760 P9681
## 21761 P9682
## 21762 P9683
## 21763 P9689
## 21764 P969
## 21765 Q000
## 21766 Q001
## 21767 Q002
## 21768 Q010
## 21769 Q011
## 21770 Q012
## 21771 Q018
## 21772 Q019
## 21773 Q02
## 21774 Q030
## 21775 Q031
## 21776 Q038
## 21777 Q039
## 21778 Q040
## 21779 Q041
## 21780 Q042
## 21781 Q043
## 21782 Q044
## 21783 Q045
## 21784 Q046
## 21785 Q048
## 21786 Q049
## 21787 Q050
## 21788 Q051
## 21789 Q052
## 21790 Q053
## 21791 Q054
## 21792 Q055
## 21793 Q056
## 21794 Q057
## 21795 Q058
## 21796 Q059
## 21797 Q060
## 21798 Q061
## 21799 Q062
## 21800 Q063
## 21801 Q064
## 21802 Q068
## 21803 Q069
## 21804 Q0700
## 21805 Q0701
## 21806 Q0702
## 21807 Q0703
## 21808 Q078
## 21809 Q079
## 21810 Q100
## 21811 Q101
## 21812 Q102
## 21813 Q103
## 21814 Q104
## 21815 Q105
## 21816 Q106
## 21817 Q107
## 21818 Q110
## 21819 Q111
## 21820 Q112
## 21821 Q113
## 21822 Q120
## 21823 Q121
## 21824 Q122
## 21825 Q123
## 21826 Q124
## 21827 Q128
## 21828 Q129
## 21829 Q130
## 21830 Q131
## 21831 Q132
## 21832 Q133
## 21833 Q134
## 21834 Q135
## 21835 Q1381
## 21836 Q1389
## 21837 Q139
## 21838 Q140
## 21839 Q141
## 21840 Q142
## 21841 Q143
## 21842 Q148
## 21843 Q149
## 21844 Q150
## 21845 Q158
## 21846 Q159
## 21847 Q160
## 21848 Q161
## 21849 Q162
## 21850 Q163
## 21851 Q164
## 21852 Q165
## 21853 Q169
## 21854 Q170
## 21855 Q171
## 21856 Q172
## 21857 Q173
## 21858 Q174
## 21859 Q175
## 21860 Q178
## 21861 Q179
## 21862 Q180
## 21863 Q181
## 21864 Q182
## 21865 Q183
## 21866 Q184
## 21867 Q185
## 21868 Q186
## 21869 Q187
## 21870 Q188
## 21871 Q189
## 21872 Q200
## 21873 Q201
## 21874 Q202
## 21875 Q203
## 21876 Q204
## 21877 Q205
## 21878 Q206
## 21879 Q208
## 21880 Q209
## 21881 Q210
## 21882 Q211
## 21883 Q212
## 21884 Q213
## 21885 Q214
## 21886 Q218
## 21887 Q219
## 21888 Q220
## 21889 Q221
## 21890 Q222
## 21891 Q223
## 21892 Q224
## 21893 Q225
## 21894 Q226
## 21895 Q228
## 21896 Q229
## 21897 Q230
## 21898 Q231
## 21899 Q232
## 21900 Q233
## 21901 Q234
## 21902 Q238
## 21903 Q239
## 21904 Q240
## 21905 Q241
## 21906 Q242
## 21907 Q243
## 21908 Q244
## 21909 Q245
## 21910 Q246
## 21911 Q248
## 21912 Q249
## 21913 Q250
## 21914 Q251
## 21915 Q2521
## 21916 Q2529
## 21917 Q253
## 21918 Q2540
## 21919 Q2541
## 21920 Q2542
## 21921 Q2543
## 21922 Q2544
## 21923 Q2545
## 21924 Q2546
## 21925 Q2547
## 21926 Q2548
## 21927 Q2549
## 21928 Q255
## 21929 Q256
## 21930 Q2571
## 21931 Q2572
## 21932 Q2579
## 21933 Q258
## 21934 Q259
## 21935 Q260
## 21936 Q261
## 21937 Q262
## 21938 Q263
## 21939 Q264
## 21940 Q265
## 21941 Q266
## 21942 Q268
## 21943 Q269
## 21944 Q270
## 21945 Q271
## 21946 Q272
## 21947 Q2730
## 21948 Q2731
## 21949 Q2732
## 21950 Q2733
## 21951 Q2734
## 21952 Q2739
## 21953 Q274
## 21954 Q278
## 21955 Q279
## 21956 Q280
## 21957 Q281
## 21958 Q282
## 21959 Q283
## 21960 Q288
## 21961 Q289
## 21962 Q300
## 21963 Q301
## 21964 Q302
## 21965 Q303
## 21966 Q308
## 21967 Q309
## 21968 Q310
## 21969 Q311
## 21970 Q312
## 21971 Q313
## 21972 Q315
## 21973 Q318
## 21974 Q319
## 21975 Q320
## 21976 Q321
## 21977 Q322
## 21978 Q323
## 21979 Q324
## 21980 Q330
## 21981 Q331
## 21982 Q332
## 21983 Q333
## 21984 Q334
## 21985 Q335
## 21986 Q336
## 21987 Q338
## 21988 Q339
## 21989 Q340
## 21990 Q341
## 21991 Q348
## 21992 Q349
## 21993 Q351
## 21994 Q353
## 21995 Q355
## 21996 Q357
## 21997 Q359
## 21998 Q360
## 21999 Q361
## 22000 Q369
## 22001 Q370
## 22002 Q371
## 22003 Q372
## 22004 Q373
## 22005 Q374
## 22006 Q375
## 22007 Q378
## 22008 Q379
## 22009 Q380
## 22010 Q381
## 22011 Q382
## 22012 Q383
## 22013 Q384
## 22014 Q385
## 22015 Q386
## 22016 Q387
## 22017 Q388
## 22018 Q390
## 22019 Q391
## 22020 Q392
## 22021 Q393
## 22022 Q394
## 22023 Q395
## 22024 Q396
## 22025 Q398
## 22026 Q399
## 22027 Q400
## 22028 Q401
## 22029 Q402
## 22030 Q403
## 22031 Q408
## 22032 Q409
## 22033 Q410
## 22034 Q411
## 22035 Q412
## 22036 Q418
## 22037 Q419
## 22038 Q420
## 22039 Q421
## 22040 Q422
## 22041 Q423
## 22042 Q428
## 22043 Q429
## 22044 Q430
## 22045 Q431
## 22046 Q432
## 22047 Q433
## 22048 Q434
## 22049 Q435
## 22050 Q436
## 22051 Q437
## 22052 Q438
## 22053 Q439
## 22054 Q440
## 22055 Q441
## 22056 Q442
## 22057 Q443
## 22058 Q444
## 22059 Q445
## 22060 Q446
## 22061 Q447
## 22062 Q450
## 22063 Q451
## 22064 Q452
## 22065 Q453
## 22066 Q458
## 22067 Q459
## 22068 Q5001
## 22069 Q5002
## 22070 Q501
## 22071 Q502
## 22072 Q5031
## 22073 Q5032
## 22074 Q5039
## 22075 Q504
## 22076 Q505
## 22077 Q506
## 22078 Q510
## 22079 Q5110
## 22080 Q5111
## 22081 Q5120
## 22082 Q5121
## 22083 Q5122
## 22084 Q5128
## 22085 Q513
## 22086 Q514
## 22087 Q515
## 22088 Q516
## 22089 Q517
## 22090 Q51810
## 22091 Q51811
## 22092 Q51818
## 22093 Q51820
## 22094 Q51821
## 22095 Q51828
## 22096 Q519
## 22097 Q520
## 22098 Q5210
## 22099 Q5211
## 22100 Q52120
## 22101 Q52121
## 22102 Q52122
## 22103 Q52123
## 22104 Q52124
## 22105 Q52129
## 22106 Q522
## 22107 Q523
## 22108 Q524
## 22109 Q525
## 22110 Q526
## 22111 Q5270
## 22112 Q5271
## 22113 Q5279
## 22114 Q528
## 22115 Q529
## 22116 Q5300
## 22117 Q5301
## 22118 Q5302
## 22119 Q5310
## 22120 Q53111
## 22121 Q53112
## 22122 Q5312
## 22123 Q5313
## 22124 Q5320
## 22125 Q53211
## 22126 Q53212
## 22127 Q5322
## 22128 Q5323
## 22129 Q539
## 22130 Q540
## 22131 Q541
## 22132 Q542
## 22133 Q543
## 22134 Q544
## 22135 Q548
## 22136 Q549
## 22137 Q550
## 22138 Q551
## 22139 Q5520
## 22140 Q5521
## 22141 Q5522
## 22142 Q5523
## 22143 Q5529
## 22144 Q553
## 22145 Q554
## 22146 Q555
## 22147 Q5561
## 22148 Q5562
## 22149 Q5563
## 22150 Q5564
## 22151 Q5569
## 22152 Q557
## 22153 Q558
## 22154 Q559
## 22155 Q560
## 22156 Q561
## 22157 Q562
## 22158 Q563
## 22159 Q564
## 22160 Q600
## 22161 Q601
## 22162 Q602
## 22163 Q603
## 22164 Q604
## 22165 Q605
## 22166 Q606
## 22167 Q6100
## 22168 Q6101
## 22169 Q6102
## 22170 Q6111
## 22171 Q6119
## 22172 Q612
## 22173 Q613
## 22174 Q614
## 22175 Q615
## 22176 Q618
## 22177 Q619
## 22178 Q620
## 22179 Q6210
## 22180 Q6211
## 22181 Q6212
## 22182 Q622
## 22183 Q6231
## 22184 Q6232
## 22185 Q6239
## 22186 Q624
## 22187 Q625
## 22188 Q6260
## 22189 Q6261
## 22190 Q6262
## 22191 Q6263
## 22192 Q6269
## 22193 Q627
## 22194 Q628
## 22195 Q630
## 22196 Q631
## 22197 Q632
## 22198 Q633
## 22199 Q638
## 22200 Q639
## 22201 Q640
## 22202 Q6410
## 22203 Q6411
## 22204 Q6412
## 22205 Q6419
## 22206 Q642
## 22207 Q6431
## 22208 Q6432
## 22209 Q6433
## 22210 Q6439
## 22211 Q644
## 22212 Q645
## 22213 Q646
## 22214 Q6470
## 22215 Q6471
## 22216 Q6472
## 22217 Q6473
## 22218 Q6474
## 22219 Q6475
## 22220 Q6479
## 22221 Q648
## 22222 Q649
## 22223 Q6500
## 22224 Q6501
## 22225 Q6502
## 22226 Q651
## 22227 Q652
## 22228 Q6530
## 22229 Q6531
## 22230 Q6532
## 22231 Q654
## 22232 Q655
## 22233 Q656
## 22234 Q6581
## 22235 Q6582
## 22236 Q6589
## 22237 Q659
## 22238 Q6600
## 22239 Q6601
## 22240 Q6602
## 22241 Q6610
## 22242 Q6611
## 22243 Q6612
## 22244 Q66211
## 22245 Q66212
## 22246 Q66219
## 22247 Q66221
## 22248 Q66222
## 22249 Q66229
## 22250 Q6630
## 22251 Q6631
## 22252 Q6632
## 22253 Q6640
## 22254 Q6641
## 22255 Q6642
## 22256 Q6650
## 22257 Q6651
## 22258 Q6652
## 22259 Q666
## 22260 Q6670
## 22261 Q6671
## 22262 Q6672
## 22263 Q6680
## 22264 Q6681
## 22265 Q6682
## 22266 Q6689
## 22267 Q6690
## 22268 Q6691
## 22269 Q6692
## 22270 Q670
## 22271 Q671
## 22272 Q672
## 22273 Q673
## 22274 Q674
## 22275 Q675
## 22276 Q676
## 22277 Q677
## 22278 Q678
## 22279 Q680
## 22280 Q681
## 22281 Q682
## 22282 Q683
## 22283 Q684
## 22284 Q685
## 22285 Q686
## 22286 Q688
## 22287 Q690
## 22288 Q691
## 22289 Q692
## 22290 Q699
## 22291 Q7000
## 22292 Q7001
## 22293 Q7002
## 22294 Q7003
## 22295 Q7010
## 22296 Q7011
## 22297 Q7012
## 22298 Q7013
## 22299 Q7020
## 22300 Q7021
## 22301 Q7022
## 22302 Q7023
## 22303 Q7030
## 22304 Q7031
## 22305 Q7032
## 22306 Q7033
## 22307 Q704
## 22308 Q709
## 22309 Q7100
## 22310 Q7101
## 22311 Q7102
## 22312 Q7103
## 22313 Q7110
## 22314 Q7111
## 22315 Q7112
## 22316 Q7113
## 22317 Q7120
## 22318 Q7121
## 22319 Q7122
## 22320 Q7123
## 22321 Q7130
## 22322 Q7131
## 22323 Q7132
## 22324 Q7133
## 22325 Q7140
## 22326 Q7141
## 22327 Q7142
## 22328 Q7143
## 22329 Q7150
## 22330 Q7151
## 22331 Q7152
## 22332 Q7153
## 22333 Q7160
## 22334 Q7161
## 22335 Q7162
## 22336 Q7163
## 22337 Q71811
## 22338 Q71812
## 22339 Q71813
## 22340 Q71819
## 22341 Q71891
## 22342 Q71892
## 22343 Q71893
## 22344 Q71899
## 22345 Q7190
## 22346 Q7191
## 22347 Q7192
## 22348 Q7193
## 22349 Q7200
## 22350 Q7201
## 22351 Q7202
## 22352 Q7203
## 22353 Q7210
## 22354 Q7211
## 22355 Q7212
## 22356 Q7213
## 22357 Q7220
## 22358 Q7221
## 22359 Q7222
## 22360 Q7223
## 22361 Q7230
## 22362 Q7231
## 22363 Q7232
## 22364 Q7233
## 22365 Q7240
## 22366 Q7241
## 22367 Q7242
## 22368 Q7243
## 22369 Q7250
## 22370 Q7251
## 22371 Q7252
## 22372 Q7253
## 22373 Q7260
## 22374 Q7261
## 22375 Q7262
## 22376 Q7263
## 22377 Q7270
## 22378 Q7271
## 22379 Q7272
## 22380 Q7273
## 22381 Q72811
## 22382 Q72812
## 22383 Q72813
## 22384 Q72819
## 22385 Q72891
## 22386 Q72892
## 22387 Q72893
## 22388 Q72899
## 22389 Q7290
## 22390 Q7291
## 22391 Q7292
## 22392 Q7293
## 22393 Q730
## 22394 Q731
## 22395 Q738
## 22396 Q740
## 22397 Q741
## 22398 Q742
## 22399 Q743
## 22400 Q748
## 22401 Q749
## 22402 Q750
## 22403 Q751
## 22404 Q752
## 22405 Q753
## 22406 Q754
## 22407 Q755
## 22408 Q758
## 22409 Q759
## 22410 Q760
## 22411 Q761
## 22412 Q762
## 22413 Q763
## 22414 Q76411
## 22415 Q76412
## 22416 Q76413
## 22417 Q76414
## 22418 Q76415
## 22419 Q76419
## 22420 Q76425
## 22421 Q76426
## 22422 Q76427
## 22423 Q76428
## 22424 Q76429
## 22425 Q7649
## 22426 Q765
## 22427 Q766
## 22428 Q767
## 22429 Q768
## 22430 Q769
## 22431 Q770
## 22432 Q771
## 22433 Q772
## 22434 Q773
## 22435 Q774
## 22436 Q775
## 22437 Q776
## 22438 Q777
## 22439 Q778
## 22440 Q779
## 22441 Q780
## 22442 Q781
## 22443 Q782
## 22444 Q783
## 22445 Q784
## 22446 Q785
## 22447 Q786
## 22448 Q788
## 22449 Q789
## 22450 Q790
## 22451 Q791
## 22452 Q792
## 22453 Q793
## 22454 Q794
## 22455 Q7951
## 22456 Q7959
## 22457 Q7960
## 22458 Q7961
## 22459 Q7962
## 22460 Q7963
## 22461 Q7969
## 22462 Q798
## 22463 Q799
## 22464 Q800
## 22465 Q801
## 22466 Q802
## 22467 Q803
## 22468 Q804
## 22469 Q808
## 22470 Q809
## 22471 Q810
## 22472 Q811
## 22473 Q812
## 22474 Q818
## 22475 Q819
## 22476 Q820
## 22477 Q821
## 22478 Q822
## 22479 Q823
## 22480 Q824
## 22481 Q825
## 22482 Q826
## 22483 Q828
## 22484 Q829
## 22485 Q830
## 22486 Q831
## 22487 Q832
## 22488 Q833
## 22489 Q838
## 22490 Q839
## 22491 Q840
## 22492 Q841
## 22493 Q842
## 22494 Q843
## 22495 Q844
## 22496 Q845
## 22497 Q846
## 22498 Q848
## 22499 Q849
## 22500 Q8500
## 22501 Q8501
## 22502 Q8502
## 22503 Q8503
## 22504 Q8509
## 22505 Q851
## 22506 Q858
## 22507 Q859
## 22508 Q860
## 22509 Q861
## 22510 Q862
## 22511 Q868
## 22512 Q870
## 22513 Q8711
## 22514 Q8719
## 22515 Q872
## 22516 Q873
## 22517 Q8740
## 22518 Q87410
## 22519 Q87418
## 22520 Q8742
## 22521 Q8743
## 22522 Q875
## 22523 Q8781
## 22524 Q8782
## 22525 Q8789
## 22526 Q8901
## 22527 Q8909
## 22528 Q891
## 22529 Q892
## 22530 Q893
## 22531 Q894
## 22532 Q897
## 22533 Q898
## 22534 Q899
## 22535 Q900
## 22536 Q901
## 22537 Q902
## 22538 Q909
## 22539 Q910
## 22540 Q911
## 22541 Q912
## 22542 Q913
## 22543 Q914
## 22544 Q915
## 22545 Q916
## 22546 Q917
## 22547 Q920
## 22548 Q921
## 22549 Q922
## 22550 Q925
## 22551 Q9261
## 22552 Q9262
## 22553 Q927
## 22554 Q928
## 22555 Q929
## 22556 Q930
## 22557 Q931
## 22558 Q932
## 22559 Q933
## 22560 Q934
## 22561 Q9351
## 22562 Q9359
## 22563 Q937
## 22564 Q9381
## 22565 Q9382
## 22566 Q9388
## 22567 Q9389
## 22568 Q939
## 22569 Q950
## 22570 Q951
## 22571 Q952
## 22572 Q953
## 22573 Q955
## 22574 Q958
## 22575 Q959
## 22576 Q960
## 22577 Q961
## 22578 Q962
## 22579 Q963
## 22580 Q964
## 22581 Q968
## 22582 Q969
## 22583 Q970
## 22584 Q971
## 22585 Q972
## 22586 Q973
## 22587 Q978
## 22588 Q979
## 22589 Q980
## 22590 Q981
## 22591 Q983
## 22592 Q984
## 22593 Q985
## 22594 Q986
## 22595 Q987
## 22596 Q988
## 22597 Q989
## 22598 Q990
## 22599 Q991
## 22600 Q992
## 22601 Q998
## 22602 Q999
## 22603 R000
## 22604 R001
## 22605 R002
## 22606 R008
## 22607 R009
## 22608 R010
## 22609 R011
## 22610 R012
## 22611 R030
## 22612 R031
## 22613 R040
## 22614 R041
## 22615 R042
## 22616 R0481
## 22617 R0489
## 22618 R049
## 22619 R05
## 22620 R0600
## 22621 R0601
## 22622 R0602
## 22623 R0603
## 22624 R0609
## 22625 R061
## 22626 R062
## 22627 R063
## 22628 R064
## 22629 R065
## 22630 R066
## 22631 R067
## 22632 R0681
## 22633 R0682
## 22634 R0683
## 22635 R0689
## 22636 R069
## 22637 R070
## 22638 R071
## 22639 R072
## 22640 R0781
## 22641 R0782
## 22642 R0789
## 22643 R079
## 22644 R0901
## 22645 R0902
## 22646 R091
## 22647 R092
## 22648 R093
## 22649 R0981
## 22650 R0982
## 22651 R0989
## 22652 R100
## 22653 R1010
## 22654 R1011
## 22655 R1012
## 22656 R1013
## 22657 R102
## 22658 R1030
## 22659 R1031
## 22660 R1032
## 22661 R1033
## 22662 R10811
## 22663 R10812
## 22664 R10813
## 22665 R10814
## 22666 R10815
## 22667 R10816
## 22668 R10817
## 22669 R10819
## 22670 R10821
## 22671 R10822
## 22672 R10823
## 22673 R10824
## 22674 R10825
## 22675 R10826
## 22676 R10827
## 22677 R10829
## 22678 R1083
## 22679 R1084
## 22680 R109
## 22681 R110
## 22682 R1110
## 22683 R1111
## 22684 R1112
## 22685 R1113
## 22686 R1114
## 22687 R1115
## 22688 R112
## 22689 R12
## 22690 R130
## 22691 R1310
## 22692 R1311
## 22693 R1312
## 22694 R1313
## 22695 R1314
## 22696 R1319
## 22697 R140
## 22698 R141
## 22699 R142
## 22700 R143
## 22701 R150
## 22702 R151
## 22703 R152
## 22704 R159
## 22705 R160
## 22706 R161
## 22707 R162
## 22708 R17
## 22709 R180
## 22710 R188
## 22711 R1900
## 22712 R1901
## 22713 R1902
## 22714 R1903
## 22715 R1904
## 22716 R1905
## 22717 R1906
## 22718 R1907
## 22719 R1909
## 22720 R1911
## 22721 R1912
## 22722 R1915
## 22723 R192
## 22724 R1930
## 22725 R1931
## 22726 R1932
## 22727 R1933
## 22728 R1934
## 22729 R1935
## 22730 R1936
## 22731 R1937
## 22732 R194
## 22733 R195
## 22734 R196
## 22735 R197
## 22736 R198
## 22737 R200
## 22738 R201
## 22739 R202
## 22740 R203
## 22741 R208
## 22742 R209
## 22743 R21
## 22744 R220
## 22745 R221
## 22746 R222
## 22747 R2230
## 22748 R2231
## 22749 R2232
## 22750 R2233
## 22751 R2240
## 22752 R2241
## 22753 R2242
## 22754 R2243
## 22755 R229
## 22756 R230
## 22757 R231
## 22758 R232
## 22759 R233
## 22760 R234
## 22761 R238
## 22762 R239
## 22763 R250
## 22764 R251
## 22765 R252
## 22766 R253
## 22767 R258
## 22768 R259
## 22769 R260
## 22770 R261
## 22771 R262
## 22772 R2681
## 22773 R2689
## 22774 R269
## 22775 R270
## 22776 R278
## 22777 R279
## 22778 R290
## 22779 R291
## 22780 R292
## 22781 R293
## 22782 R294
## 22783 R295
## 22784 R296
## 22785 R29700
## 22786 R29701
## 22787 R29702
## 22788 R29703
## 22789 R29704
## 22790 R29705
## 22791 R29706
## 22792 R29707
## 22793 R29708
## 22794 R29709
## 22795 R29710
## 22796 R29711
## 22797 R29712
## 22798 R29713
## 22799 R29714
## 22800 R29715
## 22801 R29716
## 22802 R29717
## 22803 R29718
## 22804 R29719
## 22805 R29720
## 22806 R29721
## 22807 R29722
## 22808 R29723
## 22809 R29724
## 22810 R29725
## 22811 R29726
## 22812 R29727
## 22813 R29728
## 22814 R29729
## 22815 R29730
## 22816 R29731
## 22817 R29732
## 22818 R29733
## 22819 R29734
## 22820 R29735
## 22821 R29736
## 22822 R29737
## 22823 R29738
## 22824 R29739
## 22825 R29740
## 22826 R29741
## 22827 R29742
## 22828 R29810
## 22829 R29818
## 22830 R29890
## 22831 R29891
## 22832 R29898
## 22833 R2990
## 22834 R2991
## 22835 R300
## 22836 R301
## 22837 R309
## 22838 R310
## 22839 R311
## 22840 R3121
## 22841 R3129
## 22842 R319
## 22843 R32
## 22844 R330
## 22845 R338
## 22846 R339
## 22847 R34
## 22848 R350
## 22849 R351
## 22850 R358
## 22851 R360
## 22852 R361
## 22853 R369
## 22854 R37
## 22855 R390
## 22856 R3911
## 22857 R3912
## 22858 R3913
## 22859 R3914
## 22860 R3915
## 22861 R3916
## 22862 R39191
## 22863 R39192
## 22864 R39198
## 22865 R392
## 22866 R3981
## 22867 R3982
## 22868 R3983
## 22869 R3984
## 22870 R3989
## 22871 R399
## 22872 R400
## 22873 R401
## 22874 R4020
## 22875 R402110
## 22876 R402111
## 22877 R402112
## 22878 R402113
## 22879 R402114
## 22880 R402120
## 22881 R402121
## 22882 R402122
## 22883 R402123
## 22884 R402124
## 22885 R402130
## 22886 R402131
## 22887 R402132
## 22888 R402133
## 22889 R402134
## 22890 R402140
## 22891 R402141
## 22892 R402142
## 22893 R402143
## 22894 R402144
## 22895 R402210
## 22896 R402211
## 22897 R402212
## 22898 R402213
## 22899 R402214
## 22900 R402220
## 22901 R402221
## 22902 R402222
## 22903 R402223
## 22904 R402224
## 22905 R402230
## 22906 R402231
## 22907 R402232
## 22908 R402233
## 22909 R402234
## 22910 R402240
## 22911 R402241
## 22912 R402242
## 22913 R402243
## 22914 R402244
## 22915 R402250
## 22916 R402251
## 22917 R402252
## 22918 R402253
## 22919 R402254
## 22920 R402310
## 22921 R402311
## 22922 R402312
## 22923 R402313
## 22924 R402314
## 22925 R402320
## 22926 R402321
## 22927 R402322
## 22928 R402323
## 22929 R402324
## 22930 R402330
## 22931 R402331
## 22932 R402332
## 22933 R402333
## 22934 R402334
## 22935 R402340
## 22936 R402341
## 22937 R402342
## 22938 R402343
## 22939 R402344
## 22940 R402350
## 22941 R402351
## 22942 R402352
## 22943 R402353
## 22944 R402354
## 22945 R402360
## 22946 R402361
## 22947 R402362
## 22948 R402363
## 22949 R402364
## 22950 R402410
## 22951 R402411
## 22952 R402412
## 22953 R402413
## 22954 R402414
## 22955 R402420
## 22956 R402421
## 22957 R402422
## 22958 R402423
## 22959 R402424
## 22960 R402430
## 22961 R402431
## 22962 R402432
## 22963 R402433
## 22964 R402434
## 22965 R402440
## 22966 R402441
## 22967 R402442
## 22968 R402443
## 22969 R402444
## 22970 R403
## 22971 R404
## 22972 R410
## 22973 R411
## 22974 R412
## 22975 R413
## 22976 R414
## 22977 R4181
## 22978 R4182
## 22979 R4183
## 22980 R41840
## 22981 R41841
## 22982 R41842
## 22983 R41843
## 22984 R41844
## 22985 R4189
## 22986 R419
## 22987 R42
## 22988 R430
## 22989 R431
## 22990 R432
## 22991 R438
## 22992 R439
## 22993 R440
## 22994 R441
## 22995 R442
## 22996 R443
## 22997 R448
## 22998 R449
## 22999 R450
## 23000 R451
## 23001 R452
## 23002 R453
## 23003 R454
## 23004 R455
## 23005 R456
## 23006 R457
## 23007 R4581
## 23008 R4582
## 23009 R4583
## 23010 R4584
## 23011 R45850
## 23012 R45851
## 23013 R4586
## 23014 R4587
## 23015 R4589
## 23016 R460
## 23017 R461
## 23018 R462
## 23019 R463
## 23020 R464
## 23021 R465
## 23022 R466
## 23023 R467
## 23024 R4681
## 23025 R4689
## 23026 R4701
## 23027 R4702
## 23028 R471
## 23029 R4781
## 23030 R4782
## 23031 R4789
## 23032 R479
## 23033 R480
## 23034 R481
## 23035 R482
## 23036 R483
## 23037 R488
## 23038 R489
## 23039 R490
## 23040 R491
## 23041 R4921
## 23042 R4922
## 23043 R498
## 23044 R499
## 23045 R502
## 23046 R5081
## 23047 R5082
## 23048 R5083
## 23049 R5084
## 23050 R509
## 23051 R51
## 23052 R52
## 23053 R530
## 23054 R531
## 23055 R532
## 23056 R5381
## 23057 R5382
## 23058 R5383
## 23059 R54
## 23060 R55
## 23061 R5600
## 23062 R5601
## 23063 R561
## 23064 R569
## 23065 R570
## 23066 R571
## 23067 R578
## 23068 R579
## 23069 R58
## 23070 R590
## 23071 R591
## 23072 R599
## 23073 R600
## 23074 R601
## 23075 R609
## 23076 R61
## 23077 R620
## 23078 R6250
## 23079 R6251
## 23080 R6252
## 23081 R6259
## 23082 R627
## 23083 R630
## 23084 R631
## 23085 R632
## 23086 R633
## 23087 R634
## 23088 R635
## 23089 R636
## 23090 R638
## 23091 R64
## 23092 R6510
## 23093 R6511
## 23094 R6520
## 23095 R6521
## 23096 R680
## 23097 R6811
## 23098 R6812
## 23099 R6813
## 23100 R6819
## 23101 R682
## 23102 R683
## 23103 R6881
## 23104 R6882
## 23105 R6883
## 23106 R6884
## 23107 R6889
## 23108 R69
## 23109 R700
## 23110 R701
## 23111 R710
## 23112 R718
## 23113 R7301
## 23114 R7302
## 23115 R7303
## 23116 R7309
## 23117 R739
## 23118 R740
## 23119 R748
## 23120 R749
## 23121 R75
## 23122 R760
## 23123 R7611
## 23124 R7612
## 23125 R768
## 23126 R769
## 23127 R770
## 23128 R771
## 23129 R772
## 23130 R778
## 23131 R779
## 23132 R780
## 23133 R781
## 23134 R782
## 23135 R783
## 23136 R784
## 23137 R785
## 23138 R786
## 23139 R7871
## 23140 R7879
## 23141 R7881
## 23142 R7889
## 23143 R789
## 23144 R790
## 23145 R791
## 23146 R7981
## 23147 R7982
## 23148 R7989
## 23149 R799
## 23150 R800
## 23151 R801
## 23152 R802
## 23153 R803
## 23154 R808
## 23155 R809
## 23156 R81
## 23157 R820
## 23158 R821
## 23159 R822
## 23160 R823
## 23161 R824
## 23162 R825
## 23163 R826
## 23164 R8271
## 23165 R8279
## 23166 R8281
## 23167 R8289
## 23168 R8290
## 23169 R8291
## 23170 R82991
## 23171 R82992
## 23172 R82993
## 23173 R82994
## 23174 R82998
## 23175 R830
## 23176 R831
## 23177 R832
## 23178 R833
## 23179 R834
## 23180 R835
## 23181 R836
## 23182 R838
## 23183 R839
## 23184 R840
## 23185 R841
## 23186 R842
## 23187 R843
## 23188 R844
## 23189 R845
## 23190 R846
## 23191 R847
## 23192 R848
## 23193 R849
## 23194 R850
## 23195 R851
## 23196 R852
## 23197 R853
## 23198 R854
## 23199 R855
## 23200 R85610
## 23201 R85611
## 23202 R85612
## 23203 R85613
## 23204 R85614
## 23205 R85615
## 23206 R85616
## 23207 R85618
## 23208 R85619
## 23209 R8569
## 23210 R857
## 23211 R8581
## 23212 R8582
## 23213 R8589
## 23214 R859
## 23215 R860
## 23216 R861
## 23217 R862
## 23218 R863
## 23219 R864
## 23220 R865
## 23221 R866
## 23222 R867
## 23223 R868
## 23224 R869
## 23225 R870
## 23226 R871
## 23227 R872
## 23228 R873
## 23229 R874
## 23230 R875
## 23231 R87610
## 23232 R87611
## 23233 R87612
## 23234 R87613
## 23235 R87614
## 23236 R87615
## 23237 R87616
## 23238 R87618
## 23239 R87619
## 23240 R87620
## 23241 R87621
## 23242 R87622
## 23243 R87623
## 23244 R87624
## 23245 R87625
## 23246 R87628
## 23247 R87629
## 23248 R8769
## 23249 R877
## 23250 R87810
## 23251 R87811
## 23252 R87820
## 23253 R87821
## 23254 R8789
## 23255 R879
## 23256 R880
## 23257 R888
## 23258 R890
## 23259 R891
## 23260 R892
## 23261 R893
## 23262 R894
## 23263 R895
## 23264 R896
## 23265 R897
## 23266 R898
## 23267 R899
## 23268 R900
## 23269 R9081
## 23270 R9082
## 23271 R9089
## 23272 R911
## 23273 R918
## 23274 R920
## 23275 R921
## 23276 R922
## 23277 R928
## 23278 R930
## 23279 R931
## 23280 R932
## 23281 R933
## 23282 R9341
## 23283 R93421
## 23284 R93422
## 23285 R93429
## 23286 R9349
## 23287 R935
## 23288 R936
## 23289 R937
## 23290 R93811
## 23291 R93812
## 23292 R93813
## 23293 R93819
## 23294 R9389
## 23295 R939
## 23296 R9401
## 23297 R9402
## 23298 R9409
## 23299 R94110
## 23300 R94111
## 23301 R94112
## 23302 R94113
## 23303 R94118
## 23304 R94120
## 23305 R94121
## 23306 R94128
## 23307 R94130
## 23308 R94131
## 23309 R94138
## 23310 R942
## 23311 R9430
## 23312 R9431
## 23313 R9439
## 23314 R944
## 23315 R945
## 23316 R946
## 23317 R947
## 23318 R948
## 23319 R970
## 23320 R971
## 23321 R9720
## 23322 R9721
## 23323 R978
## 23324 R99
## 23325 S0000XA
## 23326 S0000XD
## 23327 S0000XS
## 23328 S0001XA
## 23329 S0001XD
## 23330 S0001XS
## 23331 S0002XA
## 23332 S0002XD
## 23333 S0002XS
## 23334 S0003XA
## 23335 S0003XD
## 23336 S0003XS
## 23337 S0004XA
## 23338 S0004XD
## 23339 S0004XS
## 23340 S0005XA
## 23341 S0005XD
## 23342 S0005XS
## 23343 S0006XA
## 23344 S0006XD
## 23345 S0006XS
## 23346 S0007XA
## 23347 S0007XD
## 23348 S0007XS
## 23349 S0010XA
## 23350 S0010XD
## 23351 S0010XS
## 23352 S0011XA
## 23353 S0011XD
## 23354 S0011XS
## 23355 S0012XA
## 23356 S0012XD
## 23357 S0012XS
## 23358 S00201A
## 23359 S00201D
## 23360 S00201S
## 23361 S00202A
## 23362 S00202D
## 23363 S00202S
## 23364 S00209A
## 23365 S00209D
## 23366 S00209S
## 23367 S00211A
## 23368 S00211D
## 23369 S00211S
## 23370 S00212A
## 23371 S00212D
## 23372 S00212S
## 23373 S00219A
## 23374 S00219D
## 23375 S00219S
## 23376 S00221A
## 23377 S00221D
## 23378 S00221S
## 23379 S00222A
## 23380 S00222D
## 23381 S00222S
## 23382 S00229A
## 23383 S00229D
## 23384 S00229S
## 23385 S00241A
## 23386 S00241D
## 23387 S00241S
## 23388 S00242A
## 23389 S00242D
## 23390 S00242S
## 23391 S00249A
## 23392 S00249D
## 23393 S00249S
## 23394 S00251A
## 23395 S00251D
## 23396 S00251S
## 23397 S00252A
## 23398 S00252D
## 23399 S00252S
## 23400 S00259A
## 23401 S00259D
## 23402 S00259S
## 23403 S00261A
## 23404 S00261D
## 23405 S00261S
## 23406 S00262A
## 23407 S00262D
## 23408 S00262S
## 23409 S00269A
## 23410 S00269D
## 23411 S00269S
## 23412 S00271A
## 23413 S00271D
## 23414 S00271S
## 23415 S00272A
## 23416 S00272D
## 23417 S00272S
## 23418 S00279A
## 23419 S00279D
## 23420 S00279S
## 23421 S0030XA
## 23422 S0030XD
## 23423 S0030XS
## 23424 S0031XA
## 23425 S0031XD
## 23426 S0031XS
## 23427 S0032XA
## 23428 S0032XD
## 23429 S0032XS
## 23430 S0033XA
## 23431 S0033XD
## 23432 S0033XS
## 23433 S0034XA
## 23434 S0034XD
## 23435 S0034XS
## 23436 S0035XA
## 23437 S0035XD
## 23438 S0035XS
## 23439 S0036XA
## 23440 S0036XD
## 23441 S0036XS
## 23442 S0037XA
## 23443 S0037XD
## 23444 S0037XS
## 23445 S00401A
## 23446 S00401D
## 23447 S00401S
## 23448 S00402A
## 23449 S00402D
## 23450 S00402S
## 23451 S00409A
## 23452 S00409D
## 23453 S00409S
## 23454 S00411A
## 23455 S00411D
## 23456 S00411S
## 23457 S00412A
## 23458 S00412D
## 23459 S00412S
## 23460 S00419A
## 23461 S00419D
## 23462 S00419S
## 23463 S00421A
## 23464 S00421D
## 23465 S00421S
## 23466 S00422A
## 23467 S00422D
## 23468 S00422S
## 23469 S00429A
## 23470 S00429D
## 23471 S00429S
## 23472 S00431A
## 23473 S00431D
## 23474 S00431S
## 23475 S00432A
## 23476 S00432D
## 23477 S00432S
## 23478 S00439A
## 23479 S00439D
## 23480 S00439S
## 23481 S00441A
## 23482 S00441D
## 23483 S00441S
## 23484 S00442A
## 23485 S00442D
## 23486 S00442S
## 23487 S00449A
## 23488 S00449D
## 23489 S00449S
## 23490 S00451A
## 23491 S00451D
## 23492 S00451S
## 23493 S00452A
## 23494 S00452D
## 23495 S00452S
## 23496 S00459A
## 23497 S00459D
## 23498 S00459S
## 23499 S00461A
## 23500 S00461D
## 23501 S00461S
## 23502 S00462A
## 23503 S00462D
## 23504 S00462S
## 23505 S00469A
## 23506 S00469D
## 23507 S00469S
## 23508 S00471A
## 23509 S00471D
## 23510 S00471S
## 23511 S00472A
## 23512 S00472D
## 23513 S00472S
## 23514 S00479A
## 23515 S00479D
## 23516 S00479S
## 23517 S00501A
## 23518 S00501D
## 23519 S00501S
## 23520 S00502A
## 23521 S00502D
## 23522 S00502S
## 23523 S00511A
## 23524 S00511D
## 23525 S00511S
## 23526 S00512A
## 23527 S00512D
## 23528 S00512S
## 23529 S00521A
## 23530 S00521D
## 23531 S00521S
## 23532 S00522A
## 23533 S00522D
## 23534 S00522S
## 23535 S00531A
## 23536 S00531D
## 23537 S00531S
## 23538 S00532A
## 23539 S00532D
## 23540 S00532S
## 23541 S00541A
## 23542 S00541D
## 23543 S00541S
## 23544 S00542A
## 23545 S00542D
## 23546 S00542S
## 23547 S00551A
## 23548 S00551D
## 23549 S00551S
## 23550 S00552A
## 23551 S00552D
## 23552 S00552S
## 23553 S00561A
## 23554 S00561D
## 23555 S00561S
## 23556 S00562A
## 23557 S00562D
## 23558 S00562S
## 23559 S00571A
## 23560 S00571D
## 23561 S00571S
## 23562 S00572A
## 23563 S00572D
## 23564 S00572S
## 23565 S0080XA
## 23566 S0080XD
## 23567 S0080XS
## 23568 S0081XA
## 23569 S0081XD
## 23570 S0081XS
## 23571 S0082XA
## 23572 S0082XD
## 23573 S0082XS
## 23574 S0083XA
## 23575 S0083XD
## 23576 S0083XS
## 23577 S0084XA
## 23578 S0084XD
## 23579 S0084XS
## 23580 S0085XA
## 23581 S0085XD
## 23582 S0085XS
## 23583 S0086XA
## 23584 S0086XD
## 23585 S0086XS
## 23586 S0087XA
## 23587 S0087XD
## 23588 S0087XS
## 23589 S0090XA
## 23590 S0090XD
## 23591 S0090XS
## 23592 S0091XA
## 23593 S0091XD
## 23594 S0091XS
## 23595 S0092XA
## 23596 S0092XD
## 23597 S0092XS
## 23598 S0093XA
## 23599 S0093XD
## 23600 S0093XS
## 23601 S0094XA
## 23602 S0094XD
## 23603 S0094XS
## 23604 S0095XA
## 23605 S0095XD
## 23606 S0095XS
## 23607 S0096XA
## 23608 S0096XD
## 23609 S0096XS
## 23610 S0097XA
## 23611 S0097XD
## 23612 S0097XS
## 23613 S0100XA
## 23614 S0100XD
## 23615 S0100XS
## 23616 S0101XA
## 23617 S0101XD
## 23618 S0101XS
## 23619 S0102XA
## 23620 S0102XD
## 23621 S0102XS
## 23622 S0103XA
## 23623 S0103XD
## 23624 S0103XS
## 23625 S0104XA
## 23626 S0104XD
## 23627 S0104XS
## 23628 S0105XA
## 23629 S0105XD
## 23630 S0105XS
## 23631 S01101A
## 23632 S01101D
## 23633 S01101S
## 23634 S01102A
## 23635 S01102D
## 23636 S01102S
## 23637 S01109A
## 23638 S01109D
## 23639 S01109S
## 23640 S01111A
## 23641 S01111D
## 23642 S01111S
## 23643 S01112A
## 23644 S01112D
## 23645 S01112S
## 23646 S01119A
## 23647 S01119D
## 23648 S01119S
## 23649 S01121A
## 23650 S01121D
## 23651 S01121S
## 23652 S01122A
## 23653 S01122D
## 23654 S01122S
## 23655 S01129A
## 23656 S01129D
## 23657 S01129S
## 23658 S01131A
## 23659 S01131D
## 23660 S01131S
## 23661 S01132A
## 23662 S01132D
## 23663 S01132S
## 23664 S01139A
## 23665 S01139D
## 23666 S01139S
## 23667 S01141A
## 23668 S01141D
## 23669 S01141S
## 23670 S01142A
## 23671 S01142D
## 23672 S01142S
## 23673 S01149A
## 23674 S01149D
## 23675 S01149S
## 23676 S01151A
## 23677 S01151D
## 23678 S01151S
## 23679 S01152A
## 23680 S01152D
## 23681 S01152S
## 23682 S01159A
## 23683 S01159D
## 23684 S01159S
## 23685 S0120XA
## 23686 S0120XD
## 23687 S0120XS
## 23688 S0121XA
## 23689 S0121XD
## 23690 S0121XS
## 23691 S0122XA
## 23692 S0122XD
## 23693 S0122XS
## 23694 S0123XA
## 23695 S0123XD
## 23696 S0123XS
## 23697 S0124XA
## 23698 S0124XD
## 23699 S0124XS
## 23700 S0125XA
## 23701 S0125XD
## 23702 S0125XS
## 23703 S01301A
## 23704 S01301D
## 23705 S01301S
## 23706 S01302A
## 23707 S01302D
## 23708 S01302S
## 23709 S01309A
## 23710 S01309D
## 23711 S01309S
## 23712 S01311A
## 23713 S01311D
## 23714 S01311S
## 23715 S01312A
## 23716 S01312D
## 23717 S01312S
## 23718 S01319A
## 23719 S01319D
## 23720 S01319S
## 23721 S01321A
## 23722 S01321D
## 23723 S01321S
## 23724 S01322A
## 23725 S01322D
## 23726 S01322S
## 23727 S01329A
## 23728 S01329D
## 23729 S01329S
## 23730 S01331A
## 23731 S01331D
## 23732 S01331S
## 23733 S01332A
## 23734 S01332D
## 23735 S01332S
## 23736 S01339A
## 23737 S01339D
## 23738 S01339S
## 23739 S01341A
## 23740 S01341D
## 23741 S01341S
## 23742 S01342A
## 23743 S01342D
## 23744 S01342S
## 23745 S01349A
## 23746 S01349D
## 23747 S01349S
## 23748 S01351A
## 23749 S01351D
## 23750 S01351S
## 23751 S01352A
## 23752 S01352D
## 23753 S01352S
## 23754 S01359A
## 23755 S01359D
## 23756 S01359S
## 23757 S01401A
## 23758 S01401D
## 23759 S01401S
## 23760 S01402A
## 23761 S01402D
## 23762 S01402S
## 23763 S01409A
## 23764 S01409D
## 23765 S01409S
## 23766 S01411A
## 23767 S01411D
## 23768 S01411S
## 23769 S01412A
## 23770 S01412D
## 23771 S01412S
## 23772 S01419A
## 23773 S01419D
## 23774 S01419S
## 23775 S01421A
## 23776 S01421D
## 23777 S01421S
## 23778 S01422A
## 23779 S01422D
## 23780 S01422S
## 23781 S01429A
## 23782 S01429D
## 23783 S01429S
## 23784 S01431A
## 23785 S01431D
## 23786 S01431S
## 23787 S01432A
## 23788 S01432D
## 23789 S01432S
## 23790 S01439A
## 23791 S01439D
## 23792 S01439S
## 23793 S01441A
## 23794 S01441D
## 23795 S01441S
## 23796 S01442A
## 23797 S01442D
## 23798 S01442S
## 23799 S01449A
## 23800 S01449D
## 23801 S01449S
## 23802 S01451A
## 23803 S01451D
## 23804 S01451S
## 23805 S01452A
## 23806 S01452D
## 23807 S01452S
## 23808 S01459A
## 23809 S01459D
## 23810 S01459S
## 23811 S01501A
## 23812 S01501D
## 23813 S01501S
## 23814 S01502A
## 23815 S01502D
## 23816 S01502S
## 23817 S01511A
## 23818 S01511D
## 23819 S01511S
## 23820 S01512A
## 23821 S01512D
## 23822 S01512S
## 23823 S01521A
## 23824 S01521D
## 23825 S01521S
## 23826 S01522A
## 23827 S01522D
## 23828 S01522S
## 23829 S01531A
## 23830 S01531D
## 23831 S01531S
## 23832 S01532A
## 23833 S01532D
## 23834 S01532S
## 23835 S01541A
## 23836 S01541D
## 23837 S01541S
## 23838 S01542A
## 23839 S01542D
## 23840 S01542S
## 23841 S01551A
## 23842 S01551D
## 23843 S01551S
## 23844 S01552A
## 23845 S01552D
## 23846 S01552S
## 23847 S0180XA
## 23848 S0180XD
## 23849 S0180XS
## 23850 S0181XA
## 23851 S0181XD
## 23852 S0181XS
## 23853 S0182XA
## 23854 S0182XD
## 23855 S0182XS
## 23856 S0183XA
## 23857 S0183XD
## 23858 S0183XS
## 23859 S0184XA
## 23860 S0184XD
## 23861 S0184XS
## 23862 S0185XA
## 23863 S0185XD
## 23864 S0185XS
## 23865 S0190XA
## 23866 S0190XD
## 23867 S0190XS
## 23868 S0191XA
## 23869 S0191XD
## 23870 S0191XS
## 23871 S0192XA
## 23872 S0192XD
## 23873 S0192XS
## 23874 S0193XA
## 23875 S0193XD
## 23876 S0193XS
## 23877 S0194XA
## 23878 S0194XD
## 23879 S0194XS
## 23880 S0195XA
## 23881 S0195XD
## 23882 S0195XS
## 23883 S020XXA
## 23884 S020XXB
## 23885 S020XXD
## 23886 S020XXG
## 23887 S020XXK
## 23888 S020XXS
## 23889 S02101A
## 23890 S02101B
## 23891 S02101D
## 23892 S02101G
## 23893 S02101K
## 23894 S02101S
## 23895 S02102A
## 23896 S02102B
## 23897 S02102D
## 23898 S02102G
## 23899 S02102K
## 23900 S02102S
## 23901 S02109A
## 23902 S02109B
## 23903 S02109D
## 23904 S02109G
## 23905 S02109K
## 23906 S02109S
## 23907 S02110A
## 23908 S02110B
## 23909 S02110D
## 23910 S02110G
## 23911 S02110K
## 23912 S02110S
## 23913 S02111A
## 23914 S02111B
## 23915 S02111D
## 23916 S02111G
## 23917 S02111K
## 23918 S02111S
## 23919 S02112A
## 23920 S02112B
## 23921 S02112D
## 23922 S02112G
## 23923 S02112K
## 23924 S02112S
## 23925 S02113A
## 23926 S02113B
## 23927 S02113D
## 23928 S02113G
## 23929 S02113K
## 23930 S02113S
## 23931 S02118A
## 23932 S02118B
## 23933 S02118D
## 23934 S02118G
## 23935 S02118K
## 23936 S02118S
## 23937 S02119A
## 23938 S02119B
## 23939 S02119D
## 23940 S02119G
## 23941 S02119K
## 23942 S02119S
## 23943 S0211AA
## 23944 S0211AB
## 23945 S0211AD
## 23946 S0211AG
## 23947 S0211AK
## 23948 S0211AS
## 23949 S0211BA
## 23950 S0211BB
## 23951 S0211BD
## 23952 S0211BG
## 23953 S0211BK
## 23954 S0211BS
## 23955 S0211CA
## 23956 S0211CB
## 23957 S0211CD
## 23958 S0211CG
## 23959 S0211CK
## 23960 S0211CS
## 23961 S0211DA
## 23962 S0211DB
## 23963 S0211DD
## 23964 S0211DG
## 23965 S0211DK
## 23966 S0211DS
## 23967 S0211EA
## 23968 S0211EB
## 23969 S0211ED
## 23970 S0211EG
## 23971 S0211EK
## 23972 S0211ES
## 23973 S0211FA
## 23974 S0211FB
## 23975 S0211FD
## 23976 S0211FG
## 23977 S0211FK
## 23978 S0211FS
## 23979 S0211GA
## 23980 S0211GB
## 23981 S0211GD
## 23982 S0211GG
## 23983 S0211GK
## 23984 S0211GS
## 23985 S0211HA
## 23986 S0211HB
## 23987 S0211HD
## 23988 S0211HG
## 23989 S0211HK
## 23990 S0211HS
## 23991 S02121A
## 23992 S02121B
## 23993 S02121D
## 23994 S02121G
## 23995 S02121K
## 23996 S02121S
## 23997 S02122A
## 23998 S02122B
## 23999 S02122D
## 24000 S02122G
## 24001 S02122K
## 24002 S02122S
## 24003 S02129A
## 24004 S02129B
## 24005 S02129D
## 24006 S02129G
## 24007 S02129K
## 24008 S02129S
## 24009 S0219XA
## 24010 S0219XB
## 24011 S0219XD
## 24012 S0219XG
## 24013 S0219XK
## 24014 S0219XS
## 24015 S022XXA
## 24016 S022XXB
## 24017 S022XXD
## 24018 S022XXG
## 24019 S022XXK
## 24020 S022XXS
## 24021 S0230XA
## 24022 S0230XB
## 24023 S0230XD
## 24024 S0230XG
## 24025 S0230XK
## 24026 S0230XS
## 24027 S0231XA
## 24028 S0231XB
## 24029 S0231XD
## 24030 S0231XG
## 24031 S0231XK
## 24032 S0231XS
## 24033 S0232XA
## 24034 S0232XB
## 24035 S0232XD
## 24036 S0232XG
## 24037 S0232XK
## 24038 S0232XS
## 24039 S02400A
## 24040 S02400B
## 24041 S02400D
## 24042 S02400G
## 24043 S02400K
## 24044 S02400S
## 24045 S02401A
## 24046 S02401B
## 24047 S02401D
## 24048 S02401G
## 24049 S02401K
## 24050 S02401S
## 24051 S02402A
## 24052 S02402B
## 24053 S02402D
## 24054 S02402G
## 24055 S02402K
## 24056 S02402S
## 24057 S0240AA
## 24058 S0240AB
## 24059 S0240AD
## 24060 S0240AG
## 24061 S0240AK
## 24062 S0240AS
## 24063 S0240BA
## 24064 S0240BB
## 24065 S0240BD
## 24066 S0240BG
## 24067 S0240BK
## 24068 S0240BS
## 24069 S0240CA
## 24070 S0240CB
## 24071 S0240CD
## 24072 S0240CG
## 24073 S0240CK
## 24074 S0240CS
## 24075 S0240DA
## 24076 S0240DB
## 24077 S0240DD
## 24078 S0240DG
## 24079 S0240DK
## 24080 S0240DS
## 24081 S0240EA
## 24082 S0240EB
## 24083 S0240ED
## 24084 S0240EG
## 24085 S0240EK
## 24086 S0240ES
## 24087 S0240FA
## 24088 S0240FB
## 24089 S0240FD
## 24090 S0240FG
## 24091 S0240FK
## 24092 S0240FS
## 24093 S02411A
## 24094 S02411B
## 24095 S02411D
## 24096 S02411G
## 24097 S02411K
## 24098 S02411S
## 24099 S02412A
## 24100 S02412B
## 24101 S02412D
## 24102 S02412G
## 24103 S02412K
## 24104 S02412S
## 24105 S02413A
## 24106 S02413B
## 24107 S02413D
## 24108 S02413G
## 24109 S02413K
## 24110 S02413S
## 24111 S0242XA
## 24112 S0242XB
## 24113 S0242XD
## 24114 S0242XG
## 24115 S0242XK
## 24116 S0242XS
## 24117 S025XXA
## 24118 S025XXB
## 24119 S025XXD
## 24120 S025XXG
## 24121 S025XXK
## 24122 S025XXS
## 24123 S02600A
## 24124 S02600B
## 24125 S02600D
## 24126 S02600G
## 24127 S02600K
## 24128 S02600S
## 24129 S02601A
## 24130 S02601B
## 24131 S02601D
## 24132 S02601G
## 24133 S02601K
## 24134 S02601S
## 24135 S02602A
## 24136 S02602B
## 24137 S02602D
## 24138 S02602G
## 24139 S02602K
## 24140 S02602S
## 24141 S02609A
## 24142 S02609B
## 24143 S02609D
## 24144 S02609G
## 24145 S02609K
## 24146 S02609S
## 24147 S02610A
## 24148 S02610B
## 24149 S02610D
## 24150 S02610G
## 24151 S02610K
## 24152 S02610S
## 24153 S02611A
## 24154 S02611B
## 24155 S02611D
## 24156 S02611G
## 24157 S02611K
## 24158 S02611S
## 24159 S02612A
## 24160 S02612B
## 24161 S02612D
## 24162 S02612G
## 24163 S02612K
## 24164 S02612S
## 24165 S02620A
## 24166 S02620B
## 24167 S02620D
## 24168 S02620G
## 24169 S02620K
## 24170 S02620S
## 24171 S02621A
## 24172 S02621B
## 24173 S02621D
## 24174 S02621G
## 24175 S02621K
## 24176 S02621S
## 24177 S02622A
## 24178 S02622B
## 24179 S02622D
## 24180 S02622G
## 24181 S02622K
## 24182 S02622S
## 24183 S02630A
## 24184 S02630B
## 24185 S02630D
## 24186 S02630G
## 24187 S02630K
## 24188 S02630S
## 24189 S02631A
## 24190 S02631B
## 24191 S02631D
## 24192 S02631G
## 24193 S02631K
## 24194 S02631S
## 24195 S02632A
## 24196 S02632B
## 24197 S02632D
## 24198 S02632G
## 24199 S02632K
## 24200 S02632S
## 24201 S02640A
## 24202 S02640B
## 24203 S02640D
## 24204 S02640G
## 24205 S02640K
## 24206 S02640S
## 24207 S02641A
## 24208 S02641B
## 24209 S02641D
## 24210 S02641G
## 24211 S02641K
## 24212 S02641S
## 24213 S02642A
## 24214 S02642B
## 24215 S02642D
## 24216 S02642G
## 24217 S02642K
## 24218 S02642S
## 24219 S02650A
## 24220 S02650B
## 24221 S02650D
## 24222 S02650G
## 24223 S02650K
## 24224 S02650S
## 24225 S02651A
## 24226 S02651B
## 24227 S02651D
## 24228 S02651G
## 24229 S02651K
## 24230 S02651S
## 24231 S02652A
## 24232 S02652B
## 24233 S02652D
## 24234 S02652G
## 24235 S02652K
## 24236 S02652S
## 24237 S0266XA
## 24238 S0266XB
## 24239 S0266XD
## 24240 S0266XG
## 24241 S0266XK
## 24242 S0266XS
## 24243 S02670A
## 24244 S02670B
## 24245 S02670D
## 24246 S02670G
## 24247 S02670K
## 24248 S02670S
## 24249 S02671A
## 24250 S02671B
## 24251 S02671D
## 24252 S02671G
## 24253 S02671K
## 24254 S02671S
## 24255 S02672A
## 24256 S02672B
## 24257 S02672D
## 24258 S02672G
## 24259 S02672K
## 24260 S02672S
## 24261 S0269XA
## 24262 S0269XB
## 24263 S0269XD
## 24264 S0269XG
## 24265 S0269XK
## 24266 S0269XS
## 24267 S0280XA
## 24268 S0280XB
## 24269 S0280XD
## 24270 S0280XG
## 24271 S0280XK
## 24272 S0280XS
## 24273 S0281XA
## 24274 S0281XB
## 24275 S0281XD
## 24276 S0281XG
## 24277 S0281XK
## 24278 S0281XS
## 24279 S0282XA
## 24280 S0282XB
## 24281 S0282XD
## 24282 S0282XG
## 24283 S0282XK
## 24284 S0282XS
## 24285 S02831A
## 24286 S02831B
## 24287 S02831D
## 24288 S02831G
## 24289 S02831K
## 24290 S02831S
## 24291 S02832A
## 24292 S02832B
## 24293 S02832D
## 24294 S02832G
## 24295 S02832K
## 24296 S02832S
## 24297 S02839A
## 24298 S02839B
## 24299 S02839D
## 24300 S02839G
## 24301 S02839K
## 24302 S02839S
## 24303 S02841A
## 24304 S02841B
## 24305 S02841D
## 24306 S02841G
## 24307 S02841K
## 24308 S02841S
## 24309 S02842A
## 24310 S02842B
## 24311 S02842D
## 24312 S02842G
## 24313 S02842K
## 24314 S02842S
## 24315 S02849A
## 24316 S02849B
## 24317 S02849D
## 24318 S02849G
## 24319 S02849K
## 24320 S02849S
## 24321 S0285XA
## 24322 S0285XB
## 24323 S0285XD
## 24324 S0285XG
## 24325 S0285XK
## 24326 S0285XS
## 24327 S0291XA
## 24328 S0291XB
## 24329 S0291XD
## 24330 S0291XG
## 24331 S0291XK
## 24332 S0291XS
## 24333 S0292XA
## 24334 S0292XB
## 24335 S0292XD
## 24336 S0292XG
## 24337 S0292XK
## 24338 S0292XS
## 24339 S0300XA
## 24340 S0300XD
## 24341 S0300XS
## 24342 S0301XA
## 24343 S0301XD
## 24344 S0301XS
## 24345 S0302XA
## 24346 S0302XD
## 24347 S0302XS
## 24348 S0303XA
## 24349 S0303XD
## 24350 S0303XS
## 24351 S031XXA
## 24352 S031XXD
## 24353 S031XXS
## 24354 S032XXA
## 24355 S032XXD
## 24356 S032XXS
## 24357 S0340XA
## 24358 S0340XD
## 24359 S0340XS
## 24360 S0341XA
## 24361 S0341XD
## 24362 S0341XS
## 24363 S0342XA
## 24364 S0342XD
## 24365 S0342XS
## 24366 S0343XA
## 24367 S0343XD
## 24368 S0343XS
## 24369 S038XXA
## 24370 S038XXD
## 24371 S038XXS
## 24372 S039XXA
## 24373 S039XXD
## 24374 S039XXS
## 24375 S04011A
## 24376 S04011D
## 24377 S04011S
## 24378 S04012A
## 24379 S04012D
## 24380 S04012S
## 24381 S04019A
## 24382 S04019D
## 24383 S04019S
## 24384 S0402XA
## 24385 S0402XD
## 24386 S0402XS
## 24387 S04031A
## 24388 S04031D
## 24389 S04031S
## 24390 S04032A
## 24391 S04032D
## 24392 S04032S
## 24393 S04039A
## 24394 S04039D
## 24395 S04039S
## 24396 S04041A
## 24397 S04041D
## 24398 S04041S
## 24399 S04042A
## 24400 S04042D
## 24401 S04042S
## 24402 S04049A
## 24403 S04049D
## 24404 S04049S
## 24405 S0410XA
## 24406 S0410XD
## 24407 S0410XS
## 24408 S0411XA
## 24409 S0411XD
## 24410 S0411XS
## 24411 S0412XA
## 24412 S0412XD
## 24413 S0412XS
## 24414 S0420XA
## 24415 S0420XD
## 24416 S0420XS
## 24417 S0421XA
## 24418 S0421XD
## 24419 S0421XS
## 24420 S0422XA
## 24421 S0422XD
## 24422 S0422XS
## 24423 S0430XA
## 24424 S0430XD
## 24425 S0430XS
## 24426 S0431XA
## 24427 S0431XD
## 24428 S0431XS
## 24429 S0432XA
## 24430 S0432XD
## 24431 S0432XS
## 24432 S0440XA
## 24433 S0440XD
## 24434 S0440XS
## 24435 S0441XA
## 24436 S0441XD
## 24437 S0441XS
## 24438 S0442XA
## 24439 S0442XD
## 24440 S0442XS
## 24441 S0450XA
## 24442 S0450XD
## 24443 S0450XS
## 24444 S0451XA
## 24445 S0451XD
## 24446 S0451XS
## 24447 S0452XA
## 24448 S0452XD
## 24449 S0452XS
## 24450 S0460XA
## 24451 S0460XD
## 24452 S0460XS
## 24453 S0461XA
## 24454 S0461XD
## 24455 S0461XS
## 24456 S0462XA
## 24457 S0462XD
## 24458 S0462XS
## 24459 S0470XA
## 24460 S0470XD
## 24461 S0470XS
## 24462 S0471XA
## 24463 S0471XD
## 24464 S0471XS
## 24465 S0472XA
## 24466 S0472XD
## 24467 S0472XS
## 24468 S04811A
## 24469 S04811D
## 24470 S04811S
## 24471 S04812A
## 24472 S04812D
## 24473 S04812S
## 24474 S04819A
## 24475 S04819D
## 24476 S04819S
## 24477 S04891A
## 24478 S04891D
## 24479 S04891S
## 24480 S04892A
## 24481 S04892D
## 24482 S04892S
## 24483 S04899A
## 24484 S04899D
## 24485 S04899S
## 24486 S049XXA
## 24487 S049XXD
## 24488 S049XXS
## 24489 S0500XA
## 24490 S0500XD
## 24491 S0500XS
## 24492 S0501XA
## 24493 S0501XD
## 24494 S0501XS
## 24495 S0502XA
## 24496 S0502XD
## 24497 S0502XS
## 24498 S0510XA
## 24499 S0510XD
## 24500 S0510XS
## 24501 S0511XA
## 24502 S0511XD
## 24503 S0511XS
## 24504 S0512XA
## 24505 S0512XD
## 24506 S0512XS
## 24507 S0520XA
## 24508 S0520XD
## 24509 S0520XS
## 24510 S0521XA
## 24511 S0521XD
## 24512 S0521XS
## 24513 S0522XA
## 24514 S0522XD
## 24515 S0522XS
## 24516 S0530XA
## 24517 S0530XD
## 24518 S0530XS
## 24519 S0531XA
## 24520 S0531XD
## 24521 S0531XS
## 24522 S0532XA
## 24523 S0532XD
## 24524 S0532XS
## 24525 S0540XA
## 24526 S0540XD
## 24527 S0540XS
## 24528 S0541XA
## 24529 S0541XD
## 24530 S0541XS
## 24531 S0542XA
## 24532 S0542XD
## 24533 S0542XS
## 24534 S0550XA
## 24535 S0550XD
## 24536 S0550XS
## 24537 S0551XA
## 24538 S0551XD
## 24539 S0551XS
## 24540 S0552XA
## 24541 S0552XD
## 24542 S0552XS
## 24543 S0560XA
## 24544 S0560XD
## 24545 S0560XS
## 24546 S0561XA
## 24547 S0561XD
## 24548 S0561XS
## 24549 S0562XA
## 24550 S0562XD
## 24551 S0562XS
## 24552 S0570XA
## 24553 S0570XD
## 24554 S0570XS
## 24555 S0571XA
## 24556 S0571XD
## 24557 S0571XS
## 24558 S0572XA
## 24559 S0572XD
## 24560 S0572XS
## 24561 S058X1A
## 24562 S058X1D
## 24563 S058X1S
## 24564 S058X2A
## 24565 S058X2D
## 24566 S058X2S
## 24567 S058X9A
## 24568 S058X9D
## 24569 S058X9S
## 24570 S0590XA
## 24571 S0590XD
## 24572 S0590XS
## 24573 S0591XA
## 24574 S0591XD
## 24575 S0591XS
## 24576 S0592XA
## 24577 S0592XD
## 24578 S0592XS
## 24579 S060X0A
## 24580 S060X0D
## 24581 S060X0S
## 24582 S060X1A
## 24583 S060X1D
## 24584 S060X1S
## 24585 S060X9A
## 24586 S060X9D
## 24587 S060X9S
## 24588 S061X0A
## 24589 S061X0D
## 24590 S061X0S
## 24591 S061X1A
## 24592 S061X1D
## 24593 S061X1S
## 24594 S061X2A
## 24595 S061X2D
## 24596 S061X2S
## 24597 S061X3A
## 24598 S061X3D
## 24599 S061X3S
## 24600 S061X4A
## 24601 S061X4D
## 24602 S061X4S
## 24603 S061X5A
## 24604 S061X5D
## 24605 S061X5S
## 24606 S061X6A
## 24607 S061X6D
## 24608 S061X6S
## 24609 S061X7A
## 24610 S061X8A
## 24611 S061X9A
## 24612 S061X9D
## 24613 S061X9S
## 24614 S062X0A
## 24615 S062X0D
## 24616 S062X0S
## 24617 S062X1A
## 24618 S062X1D
## 24619 S062X1S
## 24620 S062X2A
## 24621 S062X2D
## 24622 S062X2S
## 24623 S062X3A
## 24624 S062X3D
## 24625 S062X3S
## 24626 S062X4A
## 24627 S062X4D
## 24628 S062X4S
## 24629 S062X5A
## 24630 S062X5D
## 24631 S062X5S
## 24632 S062X6A
## 24633 S062X6D
## 24634 S062X6S
## 24635 S062X7A
## 24636 S062X8A
## 24637 S062X9A
## 24638 S062X9D
## 24639 S062X9S
## 24640 S06300A
## 24641 S06300D
## 24642 S06300S
## 24643 S06301A
## 24644 S06301D
## 24645 S06301S
## 24646 S06302A
## 24647 S06302D
## 24648 S06302S
## 24649 S06303A
## 24650 S06303D
## 24651 S06303S
## 24652 S06304A
## 24653 S06304D
## 24654 S06304S
## 24655 S06305A
## 24656 S06305D
## 24657 S06305S
## 24658 S06306A
## 24659 S06306D
## 24660 S06306S
## 24661 S06307A
## 24662 S06308A
## 24663 S06309A
## 24664 S06309D
## 24665 S06309S
## 24666 S06310A
## 24667 S06310D
## 24668 S06310S
## 24669 S06311A
## 24670 S06311D
## 24671 S06311S
## 24672 S06312A
## 24673 S06312D
## 24674 S06312S
## 24675 S06313A
## 24676 S06313D
## 24677 S06313S
## 24678 S06314A
## 24679 S06314D
## 24680 S06314S
## 24681 S06315A
## 24682 S06315D
## 24683 S06315S
## 24684 S06316A
## 24685 S06316D
## 24686 S06316S
## 24687 S06317A
## 24688 S06318A
## 24689 S06319A
## 24690 S06319D
## 24691 S06319S
## 24692 S06320A
## 24693 S06320D
## 24694 S06320S
## 24695 S06321A
## 24696 S06321D
## 24697 S06321S
## 24698 S06322A
## 24699 S06322D
## 24700 S06322S
## 24701 S06323A
## 24702 S06323D
## 24703 S06323S
## 24704 S06324A
## 24705 S06324D
## 24706 S06324S
## 24707 S06325A
## 24708 S06325D
## 24709 S06325S
## 24710 S06326A
## 24711 S06326D
## 24712 S06326S
## 24713 S06327A
## 24714 S06328A
## 24715 S06329A
## 24716 S06329D
## 24717 S06329S
## 24718 S06330A
## 24719 S06330D
## 24720 S06330S
## 24721 S06331A
## 24722 S06331D
## 24723 S06331S
## 24724 S06332A
## 24725 S06332D
## 24726 S06332S
## 24727 S06333A
## 24728 S06333D
## 24729 S06333S
## 24730 S06334A
## 24731 S06334D
## 24732 S06334S
## 24733 S06335A
## 24734 S06335D
## 24735 S06335S
## 24736 S06336A
## 24737 S06336D
## 24738 S06336S
## 24739 S06337A
## 24740 S06338A
## 24741 S06339A
## 24742 S06339D
## 24743 S06339S
## 24744 S06340A
## 24745 S06340D
## 24746 S06340S
## 24747 S06341A
## 24748 S06341D
## 24749 S06341S
## 24750 S06342A
## 24751 S06342D
## 24752 S06342S
## 24753 S06343A
## 24754 S06343D
## 24755 S06343S
## 24756 S06344A
## 24757 S06344D
## 24758 S06344S
## 24759 S06345A
## 24760 S06345D
## 24761 S06345S
## 24762 S06346A
## 24763 S06346D
## 24764 S06346S
## 24765 S06347A
## 24766 S06348A
## 24767 S06349A
## 24768 S06349D
## 24769 S06349S
## 24770 S06350A
## 24771 S06350D
## 24772 S06350S
## 24773 S06351A
## 24774 S06351D
## 24775 S06351S
## 24776 S06352A
## 24777 S06352D
## 24778 S06352S
## 24779 S06353A
## 24780 S06353D
## 24781 S06353S
## 24782 S06354A
## 24783 S06354D
## 24784 S06354S
## 24785 S06355A
## 24786 S06355D
## 24787 S06355S
## 24788 S06356A
## 24789 S06356D
## 24790 S06356S
## 24791 S06357A
## 24792 S06358A
## 24793 S06359A
## 24794 S06359D
## 24795 S06359S
## 24796 S06360A
## 24797 S06360D
## 24798 S06360S
## 24799 S06361A
## 24800 S06361D
## 24801 S06361S
## 24802 S06362A
## 24803 S06362D
## 24804 S06362S
## 24805 S06363A
## 24806 S06363D
## 24807 S06363S
## 24808 S06364A
## 24809 S06364D
## 24810 S06364S
## 24811 S06365A
## 24812 S06365D
## 24813 S06365S
## 24814 S06366A
## 24815 S06366D
## 24816 S06366S
## 24817 S06367A
## 24818 S06368A
## 24819 S06369A
## 24820 S06369D
## 24821 S06369S
## 24822 S06370A
## 24823 S06370D
## 24824 S06370S
## 24825 S06371A
## 24826 S06371D
## 24827 S06371S
## 24828 S06372A
## 24829 S06372D
## 24830 S06372S
## 24831 S06373A
## 24832 S06373D
## 24833 S06373S
## 24834 S06374A
## 24835 S06374D
## 24836 S06374S
## 24837 S06375A
## 24838 S06375D
## 24839 S06375S
## 24840 S06376A
## 24841 S06376D
## 24842 S06376S
## 24843 S06377A
## 24844 S06378A
## 24845 S06379A
## 24846 S06379D
## 24847 S06379S
## 24848 S06380A
## 24849 S06380D
## 24850 S06380S
## 24851 S06381A
## 24852 S06381D
## 24853 S06381S
## 24854 S06382A
## 24855 S06382D
## 24856 S06382S
## 24857 S06383A
## 24858 S06383D
## 24859 S06383S
## 24860 S06384A
## 24861 S06384D
## 24862 S06384S
## 24863 S06385A
## 24864 S06385D
## 24865 S06385S
## 24866 S06386A
## 24867 S06386D
## 24868 S06386S
## 24869 S06387A
## 24870 S06388A
## 24871 S06389A
## 24872 S06389D
## 24873 S06389S
## 24874 S064X0A
## 24875 S064X0D
## 24876 S064X0S
## 24877 S064X1A
## 24878 S064X1D
## 24879 S064X1S
## 24880 S064X2A
## 24881 S064X2D
## 24882 S064X2S
## 24883 S064X3A
## 24884 S064X3D
## 24885 S064X3S
## 24886 S064X4A
## 24887 S064X4D
## 24888 S064X4S
## 24889 S064X5A
## 24890 S064X5D
## 24891 S064X5S
## 24892 S064X6A
## 24893 S064X6D
## 24894 S064X6S
## 24895 S064X7A
## 24896 S064X8A
## 24897 S064X9A
## 24898 S064X9D
## 24899 S064X9S
## 24900 S065X0A
## 24901 S065X0D
## 24902 S065X0S
## 24903 S065X1A
## 24904 S065X1D
## 24905 S065X1S
## 24906 S065X2A
## 24907 S065X2D
## 24908 S065X2S
## 24909 S065X3A
## 24910 S065X3D
## 24911 S065X3S
## 24912 S065X4A
## 24913 S065X4D
## 24914 S065X4S
## 24915 S065X5A
## 24916 S065X5D
## 24917 S065X5S
## 24918 S065X6A
## 24919 S065X6D
## 24920 S065X6S
## 24921 S065X7A
## 24922 S065X8A
## 24923 S065X9A
## 24924 S065X9D
## 24925 S065X9S
## 24926 S066X0A
## 24927 S066X0D
## 24928 S066X0S
## 24929 S066X1A
## 24930 S066X1D
## 24931 S066X1S
## 24932 S066X2A
## 24933 S066X2D
## 24934 S066X2S
## 24935 S066X3A
## 24936 S066X3D
## 24937 S066X3S
## 24938 S066X4A
## 24939 S066X4D
## 24940 S066X4S
## 24941 S066X5A
## 24942 S066X5D
## 24943 S066X5S
## 24944 S066X6A
## 24945 S066X6D
## 24946 S066X6S
## 24947 S066X7A
## 24948 S066X8A
## 24949 S066X9A
## 24950 S066X9D
## 24951 S066X9S
## 24952 S06810A
## 24953 S06810D
## 24954 S06810S
## 24955 S06811A
## 24956 S06811D
## 24957 S06811S
## 24958 S06812A
## 24959 S06812D
## 24960 S06812S
## 24961 S06813A
## 24962 S06813D
## 24963 S06813S
## 24964 S06814A
## 24965 S06814D
## 24966 S06814S
## 24967 S06815A
## 24968 S06815D
## 24969 S06815S
## 24970 S06816A
## 24971 S06816D
## 24972 S06816S
## 24973 S06817A
## 24974 S06818A
## 24975 S06819A
## 24976 S06819D
## 24977 S06819S
## 24978 S06820A
## 24979 S06820D
## 24980 S06820S
## 24981 S06821A
## 24982 S06821D
## 24983 S06821S
## 24984 S06822A
## 24985 S06822D
## 24986 S06822S
## 24987 S06823A
## 24988 S06823D
## 24989 S06823S
## 24990 S06824A
## 24991 S06824D
## 24992 S06824S
## 24993 S06825A
## 24994 S06825D
## 24995 S06825S
## 24996 S06826A
## 24997 S06826D
## 24998 S06826S
## 24999 S06827A
## 25000 S06828A
## 25001 S06829A
## 25002 S06829D
## 25003 S06829S
## 25004 S06890A
## 25005 S06890D
## 25006 S06890S
## 25007 S06891A
## 25008 S06891D
## 25009 S06891S
## 25010 S06892A
## 25011 S06892D
## 25012 S06892S
## 25013 S06893A
## 25014 S06893D
## 25015 S06893S
## 25016 S06894A
## 25017 S06894D
## 25018 S06894S
## 25019 S06895A
## 25020 S06895D
## 25021 S06895S
## 25022 S06896A
## 25023 S06896D
## 25024 S06896S
## 25025 S06897A
## 25026 S06898A
## 25027 S06899A
## 25028 S06899D
## 25029 S06899S
## 25030 S069X0A
## 25031 S069X0D
## 25032 S069X0S
## 25033 S069X1A
## 25034 S069X1D
## 25035 S069X1S
## 25036 S069X2A
## 25037 S069X2D
## 25038 S069X2S
## 25039 S069X3A
## 25040 S069X3D
## 25041 S069X3S
## 25042 S069X4A
## 25043 S069X4D
## 25044 S069X4S
## 25045 S069X5A
## 25046 S069X5D
## 25047 S069X5S
## 25048 S069X6A
## 25049 S069X6D
## 25050 S069X6S
## 25051 S069X7A
## 25052 S069X8A
## 25053 S069X9A
## 25054 S069X9D
## 25055 S069X9S
## 25056 S070XXA
## 25057 S070XXD
## 25058 S070XXS
## 25059 S071XXA
## 25060 S071XXD
## 25061 S071XXS
## 25062 S078XXA
## 25063 S078XXD
## 25064 S078XXS
## 25065 S079XXA
## 25066 S079XXD
## 25067 S079XXS
## 25068 S080XXA
## 25069 S080XXD
## 25070 S080XXS
## 25071 S08111A
## 25072 S08111D
## 25073 S08111S
## 25074 S08112A
## 25075 S08112D
## 25076 S08112S
## 25077 S08119A
## 25078 S08119D
## 25079 S08119S
## 25080 S08121A
## 25081 S08121D
## 25082 S08121S
## 25083 S08122A
## 25084 S08122D
## 25085 S08122S
## 25086 S08129A
## 25087 S08129D
## 25088 S08129S
## 25089 S08811A
## 25090 S08811D
## 25091 S08811S
## 25092 S08812A
## 25093 S08812D
## 25094 S08812S
## 25095 S0889XA
## 25096 S0889XD
## 25097 S0889XS
## 25098 S090XXA
## 25099 S090XXD
## 25100 S090XXS
## 25101 S0910XA
## 25102 S0910XD
## 25103 S0910XS
## 25104 S0911XA
## 25105 S0911XD
## 25106 S0911XS
## 25107 S0912XA
## 25108 S0912XD
## 25109 S0912XS
## 25110 S0919XA
## 25111 S0919XD
## 25112 S0919XS
## 25113 S0920XA
## 25114 S0920XD
## 25115 S0920XS
## 25116 S0921XA
## 25117 S0921XD
## 25118 S0921XS
## 25119 S0922XA
## 25120 S0922XD
## 25121 S0922XS
## 25122 S09301A
## 25123 S09301D
## 25124 S09301S
## 25125 S09302A
## 25126 S09302D
## 25127 S09302S
## 25128 S09309A
## 25129 S09309D
## 25130 S09309S
## 25131 S09311A
## 25132 S09311D
## 25133 S09311S
## 25134 S09312A
## 25135 S09312D
## 25136 S09312S
## 25137 S09313A
## 25138 S09313D
## 25139 S09313S
## 25140 S09319A
## 25141 S09319D
## 25142 S09319S
## 25143 S09391A
## 25144 S09391D
## 25145 S09391S
## 25146 S09392A
## 25147 S09392D
## 25148 S09392S
## 25149 S09399A
## 25150 S09399D
## 25151 S09399S
## 25152 S098XXA
## 25153 S098XXD
## 25154 S098XXS
## 25155 S0990XA
## 25156 S0990XD
## 25157 S0990XS
## 25158 S0991XA
## 25159 S0991XD
## 25160 S0991XS
## 25161 S0992XA
## 25162 S0992XD
## 25163 S0992XS
## 25164 S0993XA
## 25165 S0993XD
## 25166 S0993XS
## 25167 S100XXA
## 25168 S100XXD
## 25169 S100XXS
## 25170 S1010XA
## 25171 S1010XD
## 25172 S1010XS
## 25173 S1011XA
## 25174 S1011XD
## 25175 S1011XS
## 25176 S1012XA
## 25177 S1012XD
## 25178 S1012XS
## 25179 S1014XA
## 25180 S1014XD
## 25181 S1014XS
## 25182 S1015XA
## 25183 S1015XD
## 25184 S1015XS
## 25185 S1016XA
## 25186 S1016XD
## 25187 S1016XS
## 25188 S1017XA
## 25189 S1017XD
## 25190 S1017XS
## 25191 S1080XA
## 25192 S1080XD
## 25193 S1080XS
## 25194 S1081XA
## 25195 S1081XD
## 25196 S1081XS
## 25197 S1082XA
## 25198 S1082XD
## 25199 S1082XS
## 25200 S1083XA
## 25201 S1083XD
## 25202 S1083XS
## 25203 S1084XA
## 25204 S1084XD
## 25205 S1084XS
## 25206 S1085XA
## 25207 S1085XD
## 25208 S1085XS
## 25209 S1086XA
## 25210 S1086XD
## 25211 S1086XS
## 25212 S1087XA
## 25213 S1087XD
## 25214 S1087XS
## 25215 S1090XA
## 25216 S1090XD
## 25217 S1090XS
## 25218 S1091XA
## 25219 S1091XD
## 25220 S1091XS
## 25221 S1092XA
## 25222 S1092XD
## 25223 S1092XS
## 25224 S1093XA
## 25225 S1093XD
## 25226 S1093XS
## 25227 S1094XA
## 25228 S1094XD
## 25229 S1094XS
## 25230 S1095XA
## 25231 S1095XD
## 25232 S1095XS
## 25233 S1096XA
## 25234 S1096XD
## 25235 S1096XS
## 25236 S1097XA
## 25237 S1097XD
## 25238 S1097XS
## 25239 S11011A
## 25240 S11011D
## 25241 S11011S
## 25242 S11012A
## 25243 S11012D
## 25244 S11012S
## 25245 S11013A
## 25246 S11013D
## 25247 S11013S
## 25248 S11014A
## 25249 S11014D
## 25250 S11014S
## 25251 S11015A
## 25252 S11015D
## 25253 S11015S
## 25254 S11019A
## 25255 S11019D
## 25256 S11019S
## 25257 S11021A
## 25258 S11021D
## 25259 S11021S
## 25260 S11022A
## 25261 S11022D
## 25262 S11022S
## 25263 S11023A
## 25264 S11023D
## 25265 S11023S
## 25266 S11024A
## 25267 S11024D
## 25268 S11024S
## 25269 S11025A
## 25270 S11025D
## 25271 S11025S
## 25272 S11029A
## 25273 S11029D
## 25274 S11029S
## 25275 S11031A
## 25276 S11031D
## 25277 S11031S
## 25278 S11032A
## 25279 S11032D
## 25280 S11032S
## 25281 S11033A
## 25282 S11033D
## 25283 S11033S
## 25284 S11034A
## 25285 S11034D
## 25286 S11034S
## 25287 S11035A
## 25288 S11035D
## 25289 S11035S
## 25290 S11039A
## 25291 S11039D
## 25292 S11039S
## 25293 S1110XA
## 25294 S1110XD
## 25295 S1110XS
## 25296 S1111XA
## 25297 S1111XD
## 25298 S1111XS
## 25299 S1112XA
## 25300 S1112XD
## 25301 S1112XS
## 25302 S1113XA
## 25303 S1113XD
## 25304 S1113XS
## 25305 S1114XA
## 25306 S1114XD
## 25307 S1114XS
## 25308 S1115XA
## 25309 S1115XD
## 25310 S1115XS
## 25311 S1120XA
## 25312 S1120XD
## 25313 S1120XS
## 25314 S1121XA
## 25315 S1121XD
## 25316 S1121XS
## 25317 S1122XA
## 25318 S1122XD
## 25319 S1122XS
## 25320 S1123XA
## 25321 S1123XD
## 25322 S1123XS
## 25323 S1124XA
## 25324 S1124XD
## 25325 S1124XS
## 25326 S1125XA
## 25327 S1125XD
## 25328 S1125XS
## 25329 S1180XA
## 25330 S1180XD
## 25331 S1180XS
## 25332 S1181XA
## 25333 S1181XD
## 25334 S1181XS
## 25335 S1182XA
## 25336 S1182XD
## 25337 S1182XS
## 25338 S1183XA
## 25339 S1183XD
## 25340 S1183XS
## 25341 S1184XA
## 25342 S1184XD
## 25343 S1184XS
## 25344 S1185XA
## 25345 S1185XD
## 25346 S1185XS
## 25347 S1189XA
## 25348 S1189XD
## 25349 S1189XS
## 25350 S1190XA
## 25351 S1190XD
## 25352 S1190XS
## 25353 S1191XA
## 25354 S1191XD
## 25355 S1191XS
## 25356 S1192XA
## 25357 S1192XD
## 25358 S1192XS
## 25359 S1193XA
## 25360 S1193XD
## 25361 S1193XS
## 25362 S1194XA
## 25363 S1194XD
## 25364 S1194XS
## 25365 S1195XA
## 25366 S1195XD
## 25367 S1195XS
## 25368 S12000A
## 25369 S12000B
## 25370 S12000D
## 25371 S12000G
## 25372 S12000K
## 25373 S12000S
## 25374 S12001A
## 25375 S12001B
## 25376 S12001D
## 25377 S12001G
## 25378 S12001K
## 25379 S12001S
## 25380 S1201XA
## 25381 S1201XB
## 25382 S1201XD
## 25383 S1201XG
## 25384 S1201XK
## 25385 S1201XS
## 25386 S1202XA
## 25387 S1202XB
## 25388 S1202XD
## 25389 S1202XG
## 25390 S1202XK
## 25391 S1202XS
## 25392 S12030A
## 25393 S12030B
## 25394 S12030D
## 25395 S12030G
## 25396 S12030K
## 25397 S12030S
## 25398 S12031A
## 25399 S12031B
## 25400 S12031D
## 25401 S12031G
## 25402 S12031K
## 25403 S12031S
## 25404 S12040A
## 25405 S12040B
## 25406 S12040D
## 25407 S12040G
## 25408 S12040K
## 25409 S12040S
## 25410 S12041A
## 25411 S12041B
## 25412 S12041D
## 25413 S12041G
## 25414 S12041K
## 25415 S12041S
## 25416 S12090A
## 25417 S12090B
## 25418 S12090D
## 25419 S12090G
## 25420 S12090K
## 25421 S12090S
## 25422 S12091A
## 25423 S12091B
## 25424 S12091D
## 25425 S12091G
## 25426 S12091K
## 25427 S12091S
## 25428 S12100A
## 25429 S12100B
## 25430 S12100D
## 25431 S12100G
## 25432 S12100K
## 25433 S12100S
## 25434 S12101A
## 25435 S12101B
## 25436 S12101D
## 25437 S12101G
## 25438 S12101K
## 25439 S12101S
## 25440 S12110A
## 25441 S12110B
## 25442 S12110D
## 25443 S12110G
## 25444 S12110K
## 25445 S12110S
## 25446 S12111A
## 25447 S12111B
## 25448 S12111D
## 25449 S12111G
## 25450 S12111K
## 25451 S12111S
## 25452 S12112A
## 25453 S12112B
## 25454 S12112D
## 25455 S12112G
## 25456 S12112K
## 25457 S12112S
## 25458 S12120A
## 25459 S12120B
## 25460 S12120D
## 25461 S12120G
## 25462 S12120K
## 25463 S12120S
## 25464 S12121A
## 25465 S12121B
## 25466 S12121D
## 25467 S12121G
## 25468 S12121K
## 25469 S12121S
## 25470 S12130A
## 25471 S12130B
## 25472 S12130D
## 25473 S12130G
## 25474 S12130K
## 25475 S12130S
## 25476 S12131A
## 25477 S12131B
## 25478 S12131D
## 25479 S12131G
## 25480 S12131K
## 25481 S12131S
## 25482 S1214XA
## 25483 S1214XB
## 25484 S1214XD
## 25485 S1214XG
## 25486 S1214XK
## 25487 S1214XS
## 25488 S12150A
## 25489 S12150B
## 25490 S12150D
## 25491 S12150G
## 25492 S12150K
## 25493 S12150S
## 25494 S12151A
## 25495 S12151B
## 25496 S12151D
## 25497 S12151G
## 25498 S12151K
## 25499 S12151S
## 25500 S12190A
## 25501 S12190B
## 25502 S12190D
## 25503 S12190G
## 25504 S12190K
## 25505 S12190S
## 25506 S12191A
## 25507 S12191B
## 25508 S12191D
## 25509 S12191G
## 25510 S12191K
## 25511 S12191S
## 25512 S12200A
## 25513 S12200B
## 25514 S12200D
## 25515 S12200G
## 25516 S12200K
## 25517 S12200S
## 25518 S12201A
## 25519 S12201B
## 25520 S12201D
## 25521 S12201G
## 25522 S12201K
## 25523 S12201S
## 25524 S12230A
## 25525 S12230B
## 25526 S12230D
## 25527 S12230G
## 25528 S12230K
## 25529 S12230S
## 25530 S12231A
## 25531 S12231B
## 25532 S12231D
## 25533 S12231G
## 25534 S12231K
## 25535 S12231S
## 25536 S1224XA
## 25537 S1224XB
## 25538 S1224XD
## 25539 S1224XG
## 25540 S1224XK
## 25541 S1224XS
## 25542 S12250A
## 25543 S12250B
## 25544 S12250D
## 25545 S12250G
## 25546 S12250K
## 25547 S12250S
## 25548 S12251A
## 25549 S12251B
## 25550 S12251D
## 25551 S12251G
## 25552 S12251K
## 25553 S12251S
## 25554 S12290A
## 25555 S12290B
## 25556 S12290D
## 25557 S12290G
## 25558 S12290K
## 25559 S12290S
## 25560 S12291A
## 25561 S12291B
## 25562 S12291D
## 25563 S12291G
## 25564 S12291K
## 25565 S12291S
## 25566 S12300A
## 25567 S12300B
## 25568 S12300D
## 25569 S12300G
## 25570 S12300K
## 25571 S12300S
## 25572 S12301A
## 25573 S12301B
## 25574 S12301D
## 25575 S12301G
## 25576 S12301K
## 25577 S12301S
## 25578 S12330A
## 25579 S12330B
## 25580 S12330D
## 25581 S12330G
## 25582 S12330K
## 25583 S12330S
## 25584 S12331A
## 25585 S12331B
## 25586 S12331D
## 25587 S12331G
## 25588 S12331K
## 25589 S12331S
## 25590 S1234XA
## 25591 S1234XB
## 25592 S1234XD
## 25593 S1234XG
## 25594 S1234XK
## 25595 S1234XS
## 25596 S12350A
## 25597 S12350B
## 25598 S12350D
## 25599 S12350G
## 25600 S12350K
## 25601 S12350S
## 25602 S12351A
## 25603 S12351B
## 25604 S12351D
## 25605 S12351G
## 25606 S12351K
## 25607 S12351S
## 25608 S12390A
## 25609 S12390B
## 25610 S12390D
## 25611 S12390G
## 25612 S12390K
## 25613 S12390S
## 25614 S12391A
## 25615 S12391B
## 25616 S12391D
## 25617 S12391G
## 25618 S12391K
## 25619 S12391S
## 25620 S12400A
## 25621 S12400B
## 25622 S12400D
## 25623 S12400G
## 25624 S12400K
## 25625 S12400S
## 25626 S12401A
## 25627 S12401B
## 25628 S12401D
## 25629 S12401G
## 25630 S12401K
## 25631 S12401S
## 25632 S12430A
## 25633 S12430B
## 25634 S12430D
## 25635 S12430G
## 25636 S12430K
## 25637 S12430S
## 25638 S12431A
## 25639 S12431B
## 25640 S12431D
## 25641 S12431G
## 25642 S12431K
## 25643 S12431S
## 25644 S1244XA
## 25645 S1244XB
## 25646 S1244XD
## 25647 S1244XG
## 25648 S1244XK
## 25649 S1244XS
## 25650 S12450A
## 25651 S12450B
## 25652 S12450D
## 25653 S12450G
## 25654 S12450K
## 25655 S12450S
## 25656 S12451A
## 25657 S12451B
## 25658 S12451D
## 25659 S12451G
## 25660 S12451K
## 25661 S12451S
## 25662 S12490A
## 25663 S12490B
## 25664 S12490D
## 25665 S12490G
## 25666 S12490K
## 25667 S12490S
## 25668 S12491A
## 25669 S12491B
## 25670 S12491D
## 25671 S12491G
## 25672 S12491K
## 25673 S12491S
## 25674 S12500A
## 25675 S12500B
## 25676 S12500D
## 25677 S12500G
## 25678 S12500K
## 25679 S12500S
## 25680 S12501A
## 25681 S12501B
## 25682 S12501D
## 25683 S12501G
## 25684 S12501K
## 25685 S12501S
## 25686 S12530A
## 25687 S12530B
## 25688 S12530D
## 25689 S12530G
## 25690 S12530K
## 25691 S12530S
## 25692 S12531A
## 25693 S12531B
## 25694 S12531D
## 25695 S12531G
## 25696 S12531K
## 25697 S12531S
## 25698 S1254XA
## 25699 S1254XB
## 25700 S1254XD
## 25701 S1254XG
## 25702 S1254XK
## 25703 S1254XS
## 25704 S12550A
## 25705 S12550B
## 25706 S12550D
## 25707 S12550G
## 25708 S12550K
## 25709 S12550S
## 25710 S12551A
## 25711 S12551B
## 25712 S12551D
## 25713 S12551G
## 25714 S12551K
## 25715 S12551S
## 25716 S12590A
## 25717 S12590B
## 25718 S12590D
## 25719 S12590G
## 25720 S12590K
## 25721 S12590S
## 25722 S12591A
## 25723 S12591B
## 25724 S12591D
## 25725 S12591G
## 25726 S12591K
## 25727 S12591S
## 25728 S12600A
## 25729 S12600B
## 25730 S12600D
## 25731 S12600G
## 25732 S12600K
## 25733 S12600S
## 25734 S12601A
## 25735 S12601B
## 25736 S12601D
## 25737 S12601G
## 25738 S12601K
## 25739 S12601S
## 25740 S12630A
## 25741 S12630B
## 25742 S12630D
## 25743 S12630G
## 25744 S12630K
## 25745 S12630S
## 25746 S12631A
## 25747 S12631B
## 25748 S12631D
## 25749 S12631G
## 25750 S12631K
## 25751 S12631S
## 25752 S1264XA
## 25753 S1264XB
## 25754 S1264XD
## 25755 S1264XG
## 25756 S1264XK
## 25757 S1264XS
## 25758 S12650A
## 25759 S12650B
## 25760 S12650D
## 25761 S12650G
## 25762 S12650K
## 25763 S12650S
## 25764 S12651A
## 25765 S12651B
## 25766 S12651D
## 25767 S12651G
## 25768 S12651K
## 25769 S12651S
## 25770 S12690A
## 25771 S12690B
## 25772 S12690D
## 25773 S12690G
## 25774 S12690K
## 25775 S12690S
## 25776 S12691A
## 25777 S12691B
## 25778 S12691D
## 25779 S12691G
## 25780 S12691K
## 25781 S12691S
## 25782 S128XXA
## 25783 S128XXD
## 25784 S128XXS
## 25785 S129XXA
## 25786 S129XXD
## 25787 S129XXS
## 25788 S130XXA
## 25789 S130XXD
## 25790 S130XXS
## 25791 S13100A
## 25792 S13100D
## 25793 S13100S
## 25794 S13101A
## 25795 S13101D
## 25796 S13101S
## 25797 S13110A
## 25798 S13110D
## 25799 S13110S
## 25800 S13111A
## 25801 S13111D
## 25802 S13111S
## 25803 S13120A
## 25804 S13120D
## 25805 S13120S
## 25806 S13121A
## 25807 S13121D
## 25808 S13121S
## 25809 S13130A
## 25810 S13130D
## 25811 S13130S
## 25812 S13131A
## 25813 S13131D
## 25814 S13131S
## 25815 S13140A
## 25816 S13140D
## 25817 S13140S
## 25818 S13141A
## 25819 S13141D
## 25820 S13141S
## 25821 S13150A
## 25822 S13150D
## 25823 S13150S
## 25824 S13151A
## 25825 S13151D
## 25826 S13151S
## 25827 S13160A
## 25828 S13160D
## 25829 S13160S
## 25830 S13161A
## 25831 S13161D
## 25832 S13161S
## 25833 S13170A
## 25834 S13170D
## 25835 S13170S
## 25836 S13171A
## 25837 S13171D
## 25838 S13171S
## 25839 S13180A
## 25840 S13180D
## 25841 S13180S
## 25842 S13181A
## 25843 S13181D
## 25844 S13181S
## 25845 S1320XA
## 25846 S1320XD
## 25847 S1320XS
## 25848 S1329XA
## 25849 S1329XD
## 25850 S1329XS
## 25851 S134XXA
## 25852 S134XXD
## 25853 S134XXS
## 25854 S135XXA
## 25855 S135XXD
## 25856 S135XXS
## 25857 S138XXA
## 25858 S138XXD
## 25859 S138XXS
## 25860 S139XXA
## 25861 S139XXD
## 25862 S139XXS
## 25863 S140XXA
## 25864 S140XXD
## 25865 S140XXS
## 25866 S14101A
## 25867 S14101D
## 25868 S14101S
## 25869 S14102A
## 25870 S14102D
## 25871 S14102S
## 25872 S14103A
## 25873 S14103D
## 25874 S14103S
## 25875 S14104A
## 25876 S14104D
## 25877 S14104S
## 25878 S14105A
## 25879 S14105D
## 25880 S14105S
## 25881 S14106A
## 25882 S14106D
## 25883 S14106S
## 25884 S14107A
## 25885 S14107D
## 25886 S14107S
## 25887 S14108A
## 25888 S14108D
## 25889 S14108S
## 25890 S14109A
## 25891 S14109D
## 25892 S14109S
## 25893 S14111A
## 25894 S14111D
## 25895 S14111S
## 25896 S14112A
## 25897 S14112D
## 25898 S14112S
## 25899 S14113A
## 25900 S14113D
## 25901 S14113S
## 25902 S14114A
## 25903 S14114D
## 25904 S14114S
## 25905 S14115A
## 25906 S14115D
## 25907 S14115S
## 25908 S14116A
## 25909 S14116D
## 25910 S14116S
## 25911 S14117A
## 25912 S14117D
## 25913 S14117S
## 25914 S14118A
## 25915 S14118D
## 25916 S14118S
## 25917 S14119A
## 25918 S14119D
## 25919 S14119S
## 25920 S14121A
## 25921 S14121D
## 25922 S14121S
## 25923 S14122A
## 25924 S14122D
## 25925 S14122S
## 25926 S14123A
## 25927 S14123D
## 25928 S14123S
## 25929 S14124A
## 25930 S14124D
## 25931 S14124S
## 25932 S14125A
## 25933 S14125D
## 25934 S14125S
## 25935 S14126A
## 25936 S14126D
## 25937 S14126S
## 25938 S14127A
## 25939 S14127D
## 25940 S14127S
## 25941 S14128A
## 25942 S14128D
## 25943 S14128S
## 25944 S14129A
## 25945 S14129D
## 25946 S14129S
## 25947 S14131A
## 25948 S14131D
## 25949 S14131S
## 25950 S14132A
## 25951 S14132D
## 25952 S14132S
## 25953 S14133A
## 25954 S14133D
## 25955 S14133S
## 25956 S14134A
## 25957 S14134D
## 25958 S14134S
## 25959 S14135A
## 25960 S14135D
## 25961 S14135S
## 25962 S14136A
## 25963 S14136D
## 25964 S14136S
## 25965 S14137A
## 25966 S14137D
## 25967 S14137S
## 25968 S14138A
## 25969 S14138D
## 25970 S14138S
## 25971 S14139A
## 25972 S14139D
## 25973 S14139S
## 25974 S14141A
## 25975 S14141D
## 25976 S14141S
## 25977 S14142A
## 25978 S14142D
## 25979 S14142S
## 25980 S14143A
## 25981 S14143D
## 25982 S14143S
## 25983 S14144A
## 25984 S14144D
## 25985 S14144S
## 25986 S14145A
## 25987 S14145D
## 25988 S14145S
## 25989 S14146A
## 25990 S14146D
## 25991 S14146S
## 25992 S14147A
## 25993 S14147D
## 25994 S14147S
## 25995 S14148A
## 25996 S14148D
## 25997 S14148S
## 25998 S14149A
## 25999 S14149D
## 26000 S14149S
## 26001 S14151A
## 26002 S14151D
## 26003 S14151S
## 26004 S14152A
## 26005 S14152D
## 26006 S14152S
## 26007 S14153A
## 26008 S14153D
## 26009 S14153S
## 26010 S14154A
## 26011 S14154D
## 26012 S14154S
## 26013 S14155A
## 26014 S14155D
## 26015 S14155S
## 26016 S14156A
## 26017 S14156D
## 26018 S14156S
## 26019 S14157A
## 26020 S14157D
## 26021 S14157S
## 26022 S14158A
## 26023 S14158D
## 26024 S14158S
## 26025 S14159A
## 26026 S14159D
## 26027 S14159S
## 26028 S142XXA
## 26029 S142XXD
## 26030 S142XXS
## 26031 S143XXA
## 26032 S143XXD
## 26033 S143XXS
## 26034 S144XXA
## 26035 S144XXD
## 26036 S144XXS
## 26037 S145XXA
## 26038 S145XXD
## 26039 S145XXS
## 26040 S148XXA
## 26041 S148XXD
## 26042 S148XXS
## 26043 S149XXA
## 26044 S149XXD
## 26045 S149XXS
## 26046 S15001A
## 26047 S15001D
## 26048 S15001S
## 26049 S15002A
## 26050 S15002D
## 26051 S15002S
## 26052 S15009A
## 26053 S15009D
## 26054 S15009S
## 26055 S15011A
## 26056 S15011D
## 26057 S15011S
## 26058 S15012A
## 26059 S15012D
## 26060 S15012S
## 26061 S15019A
## 26062 S15019D
## 26063 S15019S
## 26064 S15021A
## 26065 S15021D
## 26066 S15021S
## 26067 S15022A
## 26068 S15022D
## 26069 S15022S
## 26070 S15029A
## 26071 S15029D
## 26072 S15029S
## 26073 S15091A
## 26074 S15091D
## 26075 S15091S
## 26076 S15092A
## 26077 S15092D
## 26078 S15092S
## 26079 S15099A
## 26080 S15099D
## 26081 S15099S
## 26082 S15101A
## 26083 S15101D
## 26084 S15101S
## 26085 S15102A
## 26086 S15102D
## 26087 S15102S
## 26088 S15109A
## 26089 S15109D
## 26090 S15109S
## 26091 S15111A
## 26092 S15111D
## 26093 S15111S
## 26094 S15112A
## 26095 S15112D
## 26096 S15112S
## 26097 S15119A
## 26098 S15119D
## 26099 S15119S
## 26100 S15121A
## 26101 S15121D
## 26102 S15121S
## 26103 S15122A
## 26104 S15122D
## 26105 S15122S
## 26106 S15129A
## 26107 S15129D
## 26108 S15129S
## 26109 S15191A
## 26110 S15191D
## 26111 S15191S
## 26112 S15192A
## 26113 S15192D
## 26114 S15192S
## 26115 S15199A
## 26116 S15199D
## 26117 S15199S
## 26118 S15201A
## 26119 S15201D
## 26120 S15201S
## 26121 S15202A
## 26122 S15202D
## 26123 S15202S
## 26124 S15209A
## 26125 S15209D
## 26126 S15209S
## 26127 S15211A
## 26128 S15211D
## 26129 S15211S
## 26130 S15212A
## 26131 S15212D
## 26132 S15212S
## 26133 S15219A
## 26134 S15219D
## 26135 S15219S
## 26136 S15221A
## 26137 S15221D
## 26138 S15221S
## 26139 S15222A
## 26140 S15222D
## 26141 S15222S
## 26142 S15229A
## 26143 S15229D
## 26144 S15229S
## 26145 S15291A
## 26146 S15291D
## 26147 S15291S
## 26148 S15292A
## 26149 S15292D
## 26150 S15292S
## 26151 S15299A
## 26152 S15299D
## 26153 S15299S
## 26154 S15301A
## 26155 S15301D
## 26156 S15301S
## 26157 S15302A
## 26158 S15302D
## 26159 S15302S
## 26160 S15309A
## 26161 S15309D
## 26162 S15309S
## 26163 S15311A
## 26164 S15311D
## 26165 S15311S
## 26166 S15312A
## 26167 S15312D
## 26168 S15312S
## 26169 S15319A
## 26170 S15319D
## 26171 S15319S
## 26172 S15321A
## 26173 S15321D
## 26174 S15321S
## 26175 S15322A
## 26176 S15322D
## 26177 S15322S
## 26178 S15329A
## 26179 S15329D
## 26180 S15329S
## 26181 S15391A
## 26182 S15391D
## 26183 S15391S
## 26184 S15392A
## 26185 S15392D
## 26186 S15392S
## 26187 S15399A
## 26188 S15399D
## 26189 S15399S
## 26190 S158XXA
## 26191 S158XXD
## 26192 S158XXS
## 26193 S159XXA
## 26194 S159XXD
## 26195 S159XXS
## 26196 S161XXA
## 26197 S161XXD
## 26198 S161XXS
## 26199 S162XXA
## 26200 S162XXD
## 26201 S162XXS
## 26202 S168XXA
## 26203 S168XXD
## 26204 S168XXS
## 26205 S169XXA
## 26206 S169XXD
## 26207 S169XXS
## 26208 S170XXA
## 26209 S170XXD
## 26210 S170XXS
## 26211 S178XXA
## 26212 S178XXD
## 26213 S178XXS
## 26214 S179XXA
## 26215 S179XXD
## 26216 S179XXS
## 26217 S1980XA
## 26218 S1980XD
## 26219 S1980XS
## 26220 S1981XA
## 26221 S1981XD
## 26222 S1981XS
## 26223 S1982XA
## 26224 S1982XD
## 26225 S1982XS
## 26226 S1983XA
## 26227 S1983XD
## 26228 S1983XS
## 26229 S1984XA
## 26230 S1984XD
## 26231 S1984XS
## 26232 S1985XA
## 26233 S1985XD
## 26234 S1985XS
## 26235 S1989XA
## 26236 S1989XD
## 26237 S1989XS
## 26238 S199XXA
## 26239 S199XXD
## 26240 S199XXS
## 26241 S2000XA
## 26242 S2000XD
## 26243 S2000XS
## 26244 S2001XA
## 26245 S2001XD
## 26246 S2001XS
## 26247 S2002XA
## 26248 S2002XD
## 26249 S2002XS
## 26250 S20101A
## 26251 S20101D
## 26252 S20101S
## 26253 S20102A
## 26254 S20102D
## 26255 S20102S
## 26256 S20109A
## 26257 S20109D
## 26258 S20109S
## 26259 S20111A
## 26260 S20111D
## 26261 S20111S
## 26262 S20112A
## 26263 S20112D
## 26264 S20112S
## 26265 S20119A
## 26266 S20119D
## 26267 S20119S
## 26268 S20121A
## 26269 S20121D
## 26270 S20121S
## 26271 S20122A
## 26272 S20122D
## 26273 S20122S
## 26274 S20129A
## 26275 S20129D
## 26276 S20129S
## 26277 S20141A
## 26278 S20141D
## 26279 S20141S
## 26280 S20142A
## 26281 S20142D
## 26282 S20142S
## 26283 S20149A
## 26284 S20149D
## 26285 S20149S
## 26286 S20151A
## 26287 S20151D
## 26288 S20151S
## 26289 S20152A
## 26290 S20152D
## 26291 S20152S
## 26292 S20159A
## 26293 S20159D
## 26294 S20159S
## 26295 S20161A
## 26296 S20161D
## 26297 S20161S
## 26298 S20162A
## 26299 S20162D
## 26300 S20162S
## 26301 S20169A
## 26302 S20169D
## 26303 S20169S
## 26304 S20171A
## 26305 S20171D
## 26306 S20171S
## 26307 S20172A
## 26308 S20172D
## 26309 S20172S
## 26310 S20179A
## 26311 S20179D
## 26312 S20179S
## 26313 S2020XA
## 26314 S2020XD
## 26315 S2020XS
## 26316 S20211A
## 26317 S20211D
## 26318 S20211S
## 26319 S20212A
## 26320 S20212D
## 26321 S20212S
## 26322 S20219A
## 26323 S20219D
## 26324 S20219S
## 26325 S20221A
## 26326 S20221D
## 26327 S20221S
## 26328 S20222A
## 26329 S20222D
## 26330 S20222S
## 26331 S20229A
## 26332 S20229D
## 26333 S20229S
## 26334 S20301A
## 26335 S20301D
## 26336 S20301S
## 26337 S20302A
## 26338 S20302D
## 26339 S20302S
## 26340 S20309A
## 26341 S20309D
## 26342 S20309S
## 26343 S20311A
## 26344 S20311D
## 26345 S20311S
## 26346 S20312A
## 26347 S20312D
## 26348 S20312S
## 26349 S20319A
## 26350 S20319D
## 26351 S20319S
## 26352 S20321A
## 26353 S20321D
## 26354 S20321S
## 26355 S20322A
## 26356 S20322D
## 26357 S20322S
## 26358 S20329A
## 26359 S20329D
## 26360 S20329S
## 26361 S20341A
## 26362 S20341D
## 26363 S20341S
## 26364 S20342A
## 26365 S20342D
## 26366 S20342S
## 26367 S20349A
## 26368 S20349D
## 26369 S20349S
## 26370 S20351A
## 26371 S20351D
## 26372 S20351S
## 26373 S20352A
## 26374 S20352D
## 26375 S20352S
## 26376 S20359A
## 26377 S20359D
## 26378 S20359S
## 26379 S20361A
## 26380 S20361D
## 26381 S20361S
## 26382 S20362A
## 26383 S20362D
## 26384 S20362S
## 26385 S20369A
## 26386 S20369D
## 26387 S20369S
## 26388 S20371A
## 26389 S20371D
## 26390 S20371S
## 26391 S20372A
## 26392 S20372D
## 26393 S20372S
## 26394 S20379A
## 26395 S20379D
## 26396 S20379S
## 26397 S20401A
## 26398 S20401D
## 26399 S20401S
## 26400 S20402A
## 26401 S20402D
## 26402 S20402S
## 26403 S20409A
## 26404 S20409D
## 26405 S20409S
## 26406 S20411A
## 26407 S20411D
## 26408 S20411S
## 26409 S20412A
## 26410 S20412D
## 26411 S20412S
## 26412 S20419A
## 26413 S20419D
## 26414 S20419S
## 26415 S20421A
## 26416 S20421D
## 26417 S20421S
## 26418 S20422A
## 26419 S20422D
## 26420 S20422S
## 26421 S20429A
## 26422 S20429D
## 26423 S20429S
## 26424 S20441A
## 26425 S20441D
## 26426 S20441S
## 26427 S20442A
## 26428 S20442D
## 26429 S20442S
## 26430 S20449A
## 26431 S20449D
## 26432 S20449S
## 26433 S20451A
## 26434 S20451D
## 26435 S20451S
## 26436 S20452A
## 26437 S20452D
## 26438 S20452S
## 26439 S20459A
## 26440 S20459D
## 26441 S20459S
## 26442 S20461A
## 26443 S20461D
## 26444 S20461S
## 26445 S20462A
## 26446 S20462D
## 26447 S20462S
## 26448 S20469A
## 26449 S20469D
## 26450 S20469S
## 26451 S20471A
## 26452 S20471D
## 26453 S20471S
## 26454 S20472A
## 26455 S20472D
## 26456 S20472S
## 26457 S20479A
## 26458 S20479D
## 26459 S20479S
## 26460 S2090XA
## 26461 S2090XD
## 26462 S2090XS
## 26463 S2091XA
## 26464 S2091XD
## 26465 S2091XS
## 26466 S2092XA
## 26467 S2092XD
## 26468 S2092XS
## 26469 S2094XA
## 26470 S2094XD
## 26471 S2094XS
## 26472 S2095XA
## 26473 S2095XD
## 26474 S2095XS
## 26475 S2096XA
## 26476 S2096XD
## 26477 S2096XS
## 26478 S2097XA
## 26479 S2097XD
## 26480 S2097XS
## 26481 S21001A
## 26482 S21001D
## 26483 S21001S
## 26484 S21002A
## 26485 S21002D
## 26486 S21002S
## 26487 S21009A
## 26488 S21009D
## 26489 S21009S
## 26490 S21011A
## 26491 S21011D
## 26492 S21011S
## 26493 S21012A
## 26494 S21012D
## 26495 S21012S
## 26496 S21019A
## 26497 S21019D
## 26498 S21019S
## 26499 S21021A
## 26500 S21021D
## 26501 S21021S
## 26502 S21022A
## 26503 S21022D
## 26504 S21022S
## 26505 S21029A
## 26506 S21029D
## 26507 S21029S
## 26508 S21031A
## 26509 S21031D
## 26510 S21031S
## 26511 S21032A
## 26512 S21032D
## 26513 S21032S
## 26514 S21039A
## 26515 S21039D
## 26516 S21039S
## 26517 S21041A
## 26518 S21041D
## 26519 S21041S
## 26520 S21042A
## 26521 S21042D
## 26522 S21042S
## 26523 S21049A
## 26524 S21049D
## 26525 S21049S
## 26526 S21051A
## 26527 S21051D
## 26528 S21051S
## 26529 S21052A
## 26530 S21052D
## 26531 S21052S
## 26532 S21059A
## 26533 S21059D
## 26534 S21059S
## 26535 S21101A
## 26536 S21101D
## 26537 S21101S
## 26538 S21102A
## 26539 S21102D
## 26540 S21102S
## 26541 S21109A
## 26542 S21109D
## 26543 S21109S
## 26544 S21111A
## 26545 S21111D
## 26546 S21111S
## 26547 S21112A
## 26548 S21112D
## 26549 S21112S
## 26550 S21119A
## 26551 S21119D
## 26552 S21119S
## 26553 S21121A
## 26554 S21121D
## 26555 S21121S
## 26556 S21122A
## 26557 S21122D
## 26558 S21122S
## 26559 S21129A
## 26560 S21129D
## 26561 S21129S
## 26562 S21131A
## 26563 S21131D
## 26564 S21131S
## 26565 S21132A
## 26566 S21132D
## 26567 S21132S
## 26568 S21139A
## 26569 S21139D
## 26570 S21139S
## 26571 S21141A
## 26572 S21141D
## 26573 S21141S
## 26574 S21142A
## 26575 S21142D
## 26576 S21142S
## 26577 S21149A
## 26578 S21149D
## 26579 S21149S
## 26580 S21151A
## 26581 S21151D
## 26582 S21151S
## 26583 S21152A
## 26584 S21152D
## 26585 S21152S
## 26586 S21159A
## 26587 S21159D
## 26588 S21159S
## 26589 S21201A
## 26590 S21201D
## 26591 S21201S
## 26592 S21202A
## 26593 S21202D
## 26594 S21202S
## 26595 S21209A
## 26596 S21209D
## 26597 S21209S
## 26598 S21211A
## 26599 S21211D
## 26600 S21211S
## 26601 S21212A
## 26602 S21212D
## 26603 S21212S
## 26604 S21219A
## 26605 S21219D
## 26606 S21219S
## 26607 S21221A
## 26608 S21221D
## 26609 S21221S
## 26610 S21222A
## 26611 S21222D
## 26612 S21222S
## 26613 S21229A
## 26614 S21229D
## 26615 S21229S
## 26616 S21231A
## 26617 S21231D
## 26618 S21231S
## 26619 S21232A
## 26620 S21232D
## 26621 S21232S
## 26622 S21239A
## 26623 S21239D
## 26624 S21239S
## 26625 S21241A
## 26626 S21241D
## 26627 S21241S
## 26628 S21242A
## 26629 S21242D
## 26630 S21242S
## 26631 S21249A
## 26632 S21249D
## 26633 S21249S
## 26634 S21251A
## 26635 S21251D
## 26636 S21251S
## 26637 S21252A
## 26638 S21252D
## 26639 S21252S
## 26640 S21259A
## 26641 S21259D
## 26642 S21259S
## 26643 S21301A
## 26644 S21301D
## 26645 S21301S
## 26646 S21302A
## 26647 S21302D
## 26648 S21302S
## 26649 S21309A
## 26650 S21309D
## 26651 S21309S
## 26652 S21311A
## 26653 S21311D
## 26654 S21311S
## 26655 S21312A
## 26656 S21312D
## 26657 S21312S
## 26658 S21319A
## 26659 S21319D
## 26660 S21319S
## 26661 S21321A
## 26662 S21321D
## 26663 S21321S
## 26664 S21322A
## 26665 S21322D
## 26666 S21322S
## 26667 S21329A
## 26668 S21329D
## 26669 S21329S
## 26670 S21331A
## 26671 S21331D
## 26672 S21331S
## 26673 S21332A
## 26674 S21332D
## 26675 S21332S
## 26676 S21339A
## 26677 S21339D
## 26678 S21339S
## 26679 S21341A
## 26680 S21341D
## 26681 S21341S
## 26682 S21342A
## 26683 S21342D
## 26684 S21342S
## 26685 S21349A
## 26686 S21349D
## 26687 S21349S
## 26688 S21351A
## 26689 S21351D
## 26690 S21351S
## 26691 S21352A
## 26692 S21352D
## 26693 S21352S
## 26694 S21359A
## 26695 S21359D
## 26696 S21359S
## 26697 S21401A
## 26698 S21401D
## 26699 S21401S
## 26700 S21402A
## 26701 S21402D
## 26702 S21402S
## 26703 S21409A
## 26704 S21409D
## 26705 S21409S
## 26706 S21411A
## 26707 S21411D
## 26708 S21411S
## 26709 S21412A
## 26710 S21412D
## 26711 S21412S
## 26712 S21419A
## 26713 S21419D
## 26714 S21419S
## 26715 S21421A
## 26716 S21421D
## 26717 S21421S
## 26718 S21422A
## 26719 S21422D
## 26720 S21422S
## 26721 S21429A
## 26722 S21429D
## 26723 S21429S
## 26724 S21431A
## 26725 S21431D
## 26726 S21431S
## 26727 S21432A
## 26728 S21432D
## 26729 S21432S
## 26730 S21439A
## 26731 S21439D
## 26732 S21439S
## 26733 S21441A
## 26734 S21441D
## 26735 S21441S
## 26736 S21442A
## 26737 S21442D
## 26738 S21442S
## 26739 S21449A
## 26740 S21449D
## 26741 S21449S
## 26742 S21451A
## 26743 S21451D
## 26744 S21451S
## 26745 S21452A
## 26746 S21452D
## 26747 S21452S
## 26748 S21459A
## 26749 S21459D
## 26750 S21459S
## 26751 S2190XA
## 26752 S2190XD
## 26753 S2190XS
## 26754 S2191XA
## 26755 S2191XD
## 26756 S2191XS
## 26757 S2192XA
## 26758 S2192XD
## 26759 S2192XS
## 26760 S2193XA
## 26761 S2193XD
## 26762 S2193XS
## 26763 S2194XA
## 26764 S2194XD
## 26765 S2194XS
## 26766 S2195XA
## 26767 S2195XD
## 26768 S2195XS
## 26769 S22000A
## 26770 S22000B
## 26771 S22000D
## 26772 S22000G
## 26773 S22000K
## 26774 S22000S
## 26775 S22001A
## 26776 S22001B
## 26777 S22001D
## 26778 S22001G
## 26779 S22001K
## 26780 S22001S
## 26781 S22002A
## 26782 S22002B
## 26783 S22002D
## 26784 S22002G
## 26785 S22002K
## 26786 S22002S
## 26787 S22008A
## 26788 S22008B
## 26789 S22008D
## 26790 S22008G
## 26791 S22008K
## 26792 S22008S
## 26793 S22009A
## 26794 S22009B
## 26795 S22009D
## 26796 S22009G
## 26797 S22009K
## 26798 S22009S
## 26799 S22010A
## 26800 S22010B
## 26801 S22010D
## 26802 S22010G
## 26803 S22010K
## 26804 S22010S
## 26805 S22011A
## 26806 S22011B
## 26807 S22011D
## 26808 S22011G
## 26809 S22011K
## 26810 S22011S
## 26811 S22012A
## 26812 S22012B
## 26813 S22012D
## 26814 S22012G
## 26815 S22012K
## 26816 S22012S
## 26817 S22018A
## 26818 S22018B
## 26819 S22018D
## 26820 S22018G
## 26821 S22018K
## 26822 S22018S
## 26823 S22019A
## 26824 S22019B
## 26825 S22019D
## 26826 S22019G
## 26827 S22019K
## 26828 S22019S
## 26829 S22020A
## 26830 S22020B
## 26831 S22020D
## 26832 S22020G
## 26833 S22020K
## 26834 S22020S
## 26835 S22021A
## 26836 S22021B
## 26837 S22021D
## 26838 S22021G
## 26839 S22021K
## 26840 S22021S
## 26841 S22022A
## 26842 S22022B
## 26843 S22022D
## 26844 S22022G
## 26845 S22022K
## 26846 S22022S
## 26847 S22028A
## 26848 S22028B
## 26849 S22028D
## 26850 S22028G
## 26851 S22028K
## 26852 S22028S
## 26853 S22029A
## 26854 S22029B
## 26855 S22029D
## 26856 S22029G
## 26857 S22029K
## 26858 S22029S
## 26859 S22030A
## 26860 S22030B
## 26861 S22030D
## 26862 S22030G
## 26863 S22030K
## 26864 S22030S
## 26865 S22031A
## 26866 S22031B
## 26867 S22031D
## 26868 S22031G
## 26869 S22031K
## 26870 S22031S
## 26871 S22032A
## 26872 S22032B
## 26873 S22032D
## 26874 S22032G
## 26875 S22032K
## 26876 S22032S
## 26877 S22038A
## 26878 S22038B
## 26879 S22038D
## 26880 S22038G
## 26881 S22038K
## 26882 S22038S
## 26883 S22039A
## 26884 S22039B
## 26885 S22039D
## 26886 S22039G
## 26887 S22039K
## 26888 S22039S
## 26889 S22040A
## 26890 S22040B
## 26891 S22040D
## 26892 S22040G
## 26893 S22040K
## 26894 S22040S
## 26895 S22041A
## 26896 S22041B
## 26897 S22041D
## 26898 S22041G
## 26899 S22041K
## 26900 S22041S
## 26901 S22042A
## 26902 S22042B
## 26903 S22042D
## 26904 S22042G
## 26905 S22042K
## 26906 S22042S
## 26907 S22048A
## 26908 S22048B
## 26909 S22048D
## 26910 S22048G
## 26911 S22048K
## 26912 S22048S
## 26913 S22049A
## 26914 S22049B
## 26915 S22049D
## 26916 S22049G
## 26917 S22049K
## 26918 S22049S
## 26919 S22050A
## 26920 S22050B
## 26921 S22050D
## 26922 S22050G
## 26923 S22050K
## 26924 S22050S
## 26925 S22051A
## 26926 S22051B
## 26927 S22051D
## 26928 S22051G
## 26929 S22051K
## 26930 S22051S
## 26931 S22052A
## 26932 S22052B
## 26933 S22052D
## 26934 S22052G
## 26935 S22052K
## 26936 S22052S
## 26937 S22058A
## 26938 S22058B
## 26939 S22058D
## 26940 S22058G
## 26941 S22058K
## 26942 S22058S
## 26943 S22059A
## 26944 S22059B
## 26945 S22059D
## 26946 S22059G
## 26947 S22059K
## 26948 S22059S
## 26949 S22060A
## 26950 S22060B
## 26951 S22060D
## 26952 S22060G
## 26953 S22060K
## 26954 S22060S
## 26955 S22061A
## 26956 S22061B
## 26957 S22061D
## 26958 S22061G
## 26959 S22061K
## 26960 S22061S
## 26961 S22062A
## 26962 S22062B
## 26963 S22062D
## 26964 S22062G
## 26965 S22062K
## 26966 S22062S
## 26967 S22068A
## 26968 S22068B
## 26969 S22068D
## 26970 S22068G
## 26971 S22068K
## 26972 S22068S
## 26973 S22069A
## 26974 S22069B
## 26975 S22069D
## 26976 S22069G
## 26977 S22069K
## 26978 S22069S
## 26979 S22070A
## 26980 S22070B
## 26981 S22070D
## 26982 S22070G
## 26983 S22070K
## 26984 S22070S
## 26985 S22071A
## 26986 S22071B
## 26987 S22071D
## 26988 S22071G
## 26989 S22071K
## 26990 S22071S
## 26991 S22072A
## 26992 S22072B
## 26993 S22072D
## 26994 S22072G
## 26995 S22072K
## 26996 S22072S
## 26997 S22078A
## 26998 S22078B
## 26999 S22078D
## 27000 S22078G
## 27001 S22078K
## 27002 S22078S
## 27003 S22079A
## 27004 S22079B
## 27005 S22079D
## 27006 S22079G
## 27007 S22079K
## 27008 S22079S
## 27009 S22080A
## 27010 S22080B
## 27011 S22080D
## 27012 S22080G
## 27013 S22080K
## 27014 S22080S
## 27015 S22081A
## 27016 S22081B
## 27017 S22081D
## 27018 S22081G
## 27019 S22081K
## 27020 S22081S
## 27021 S22082A
## 27022 S22082B
## 27023 S22082D
## 27024 S22082G
## 27025 S22082K
## 27026 S22082S
## 27027 S22088A
## 27028 S22088B
## 27029 S22088D
## 27030 S22088G
## 27031 S22088K
## 27032 S22088S
## 27033 S22089A
## 27034 S22089B
## 27035 S22089D
## 27036 S22089G
## 27037 S22089K
## 27038 S22089S
## 27039 S2220XA
## 27040 S2220XB
## 27041 S2220XD
## 27042 S2220XG
## 27043 S2220XK
## 27044 S2220XS
## 27045 S2221XA
## 27046 S2221XB
## 27047 S2221XD
## 27048 S2221XG
## 27049 S2221XK
## 27050 S2221XS
## 27051 S2222XA
## 27052 S2222XB
## 27053 S2222XD
## 27054 S2222XG
## 27055 S2222XK
## 27056 S2222XS
## 27057 S2223XA
## 27058 S2223XB
## 27059 S2223XD
## 27060 S2223XG
## 27061 S2223XK
## 27062 S2223XS
## 27063 S2224XA
## 27064 S2224XB
## 27065 S2224XD
## 27066 S2224XG
## 27067 S2224XK
## 27068 S2224XS
## 27069 S2231XA
## 27070 S2231XB
## 27071 S2231XD
## 27072 S2231XG
## 27073 S2231XK
## 27074 S2231XS
## 27075 S2232XA
## 27076 S2232XB
## 27077 S2232XD
## 27078 S2232XG
## 27079 S2232XK
## 27080 S2232XS
## 27081 S2239XA
## 27082 S2239XB
## 27083 S2239XD
## 27084 S2239XG
## 27085 S2239XK
## 27086 S2239XS
## 27087 S2241XA
## 27088 S2241XB
## 27089 S2241XD
## 27090 S2241XG
## 27091 S2241XK
## 27092 S2241XS
## 27093 S2242XA
## 27094 S2242XB
## 27095 S2242XD
## 27096 S2242XG
## 27097 S2242XK
## 27098 S2242XS
## 27099 S2243XA
## 27100 S2243XB
## 27101 S2243XD
## 27102 S2243XG
## 27103 S2243XK
## 27104 S2243XS
## 27105 S2249XA
## 27106 S2249XB
## 27107 S2249XD
## 27108 S2249XG
## 27109 S2249XK
## 27110 S2249XS
## 27111 S225XXA
## 27112 S225XXB
## 27113 S225XXD
## 27114 S225XXG
## 27115 S225XXK
## 27116 S225XXS
## 27117 S229XXA
## 27118 S229XXB
## 27119 S229XXD
## 27120 S229XXG
## 27121 S229XXK
## 27122 S229XXS
## 27123 S230XXA
## 27124 S230XXD
## 27125 S230XXS
## 27126 S23100A
## 27127 S23100D
## 27128 S23100S
## 27129 S23101A
## 27130 S23101D
## 27131 S23101S
## 27132 S23110A
## 27133 S23110D
## 27134 S23110S
## 27135 S23111A
## 27136 S23111D
## 27137 S23111S
## 27138 S23120A
## 27139 S23120D
## 27140 S23120S
## 27141 S23121A
## 27142 S23121D
## 27143 S23121S
## 27144 S23122A
## 27145 S23122D
## 27146 S23122S
## 27147 S23123A
## 27148 S23123D
## 27149 S23123S
## 27150 S23130A
## 27151 S23130D
## 27152 S23130S
## 27153 S23131A
## 27154 S23131D
## 27155 S23131S
## 27156 S23132A
## 27157 S23132D
## 27158 S23132S
## 27159 S23133A
## 27160 S23133D
## 27161 S23133S
## 27162 S23140A
## 27163 S23140D
## 27164 S23140S
## 27165 S23141A
## 27166 S23141D
## 27167 S23141S
## 27168 S23142A
## 27169 S23142D
## 27170 S23142S
## 27171 S23143A
## 27172 S23143D
## 27173 S23143S
## 27174 S23150A
## 27175 S23150D
## 27176 S23150S
## 27177 S23151A
## 27178 S23151D
## 27179 S23151S
## 27180 S23152A
## 27181 S23152D
## 27182 S23152S
## 27183 S23153A
## 27184 S23153D
## 27185 S23153S
## 27186 S23160A
## 27187 S23160D
## 27188 S23160S
## 27189 S23161A
## 27190 S23161D
## 27191 S23161S
## 27192 S23162A
## 27193 S23162D
## 27194 S23162S
## 27195 S23163A
## 27196 S23163D
## 27197 S23163S
## 27198 S23170A
## 27199 S23170D
## 27200 S23170S
## 27201 S23171A
## 27202 S23171D
## 27203 S23171S
## 27204 S2320XA
## 27205 S2320XD
## 27206 S2320XS
## 27207 S2329XA
## 27208 S2329XD
## 27209 S2329XS
## 27210 S233XXA
## 27211 S233XXD
## 27212 S233XXS
## 27213 S2341XA
## 27214 S2341XD
## 27215 S2341XS
## 27216 S23420A
## 27217 S23420D
## 27218 S23420S
## 27219 S23421A
## 27220 S23421D
## 27221 S23421S
## 27222 S23428A
## 27223 S23428D
## 27224 S23428S
## 27225 S23429A
## 27226 S23429D
## 27227 S23429S
## 27228 S238XXA
## 27229 S238XXD
## 27230 S238XXS
## 27231 S239XXA
## 27232 S239XXD
## 27233 S239XXS
## 27234 S240XXA
## 27235 S240XXD
## 27236 S240XXS
## 27237 S24101A
## 27238 S24101D
## 27239 S24101S
## 27240 S24102A
## 27241 S24102D
## 27242 S24102S
## 27243 S24103A
## 27244 S24103D
## 27245 S24103S
## 27246 S24104A
## 27247 S24104D
## 27248 S24104S
## 27249 S24109A
## 27250 S24109D
## 27251 S24109S
## 27252 S24111A
## 27253 S24111D
## 27254 S24111S
## 27255 S24112A
## 27256 S24112D
## 27257 S24112S
## 27258 S24113A
## 27259 S24113D
## 27260 S24113S
## 27261 S24114A
## 27262 S24114D
## 27263 S24114S
## 27264 S24119A
## 27265 S24119D
## 27266 S24119S
## 27267 S24131A
## 27268 S24131D
## 27269 S24131S
## 27270 S24132A
## 27271 S24132D
## 27272 S24132S
## 27273 S24133A
## 27274 S24133D
## 27275 S24133S
## 27276 S24134A
## 27277 S24134D
## 27278 S24134S
## 27279 S24139A
## 27280 S24139D
## 27281 S24139S
## 27282 S24141A
## 27283 S24141D
## 27284 S24141S
## 27285 S24142A
## 27286 S24142D
## 27287 S24142S
## 27288 S24143A
## 27289 S24143D
## 27290 S24143S
## 27291 S24144A
## 27292 S24144D
## 27293 S24144S
## 27294 S24149A
## 27295 S24149D
## 27296 S24149S
## 27297 S24151A
## 27298 S24151D
## 27299 S24151S
## 27300 S24152A
## 27301 S24152D
## 27302 S24152S
## 27303 S24153A
## 27304 S24153D
## 27305 S24153S
## 27306 S24154A
## 27307 S24154D
## 27308 S24154S
## 27309 S24159A
## 27310 S24159D
## 27311 S24159S
## 27312 S242XXA
## 27313 S242XXD
## 27314 S242XXS
## 27315 S243XXA
## 27316 S243XXD
## 27317 S243XXS
## 27318 S244XXA
## 27319 S244XXD
## 27320 S244XXS
## 27321 S248XXA
## 27322 S248XXD
## 27323 S248XXS
## 27324 S249XXA
## 27325 S249XXD
## 27326 S249XXS
## 27327 S2500XA
## 27328 S2500XD
## 27329 S2500XS
## 27330 S2501XA
## 27331 S2501XD
## 27332 S2501XS
## 27333 S2502XA
## 27334 S2502XD
## 27335 S2502XS
## 27336 S2509XA
## 27337 S2509XD
## 27338 S2509XS
## 27339 S25101A
## 27340 S25101D
## 27341 S25101S
## 27342 S25102A
## 27343 S25102D
## 27344 S25102S
## 27345 S25109A
## 27346 S25109D
## 27347 S25109S
## 27348 S25111A
## 27349 S25111D
## 27350 S25111S
## 27351 S25112A
## 27352 S25112D
## 27353 S25112S
## 27354 S25119A
## 27355 S25119D
## 27356 S25119S
## 27357 S25121A
## 27358 S25121D
## 27359 S25121S
## 27360 S25122A
## 27361 S25122D
## 27362 S25122S
## 27363 S25129A
## 27364 S25129D
## 27365 S25129S
## 27366 S25191A
## 27367 S25191D
## 27368 S25191S
## 27369 S25192A
## 27370 S25192D
## 27371 S25192S
## 27372 S25199A
## 27373 S25199D
## 27374 S25199S
## 27375 S2520XA
## 27376 S2520XD
## 27377 S2520XS
## 27378 S2521XA
## 27379 S2521XD
## 27380 S2521XS
## 27381 S2522XA
## 27382 S2522XD
## 27383 S2522XS
## 27384 S2529XA
## 27385 S2529XD
## 27386 S2529XS
## 27387 S25301A
## 27388 S25301D
## 27389 S25301S
## 27390 S25302A
## 27391 S25302D
## 27392 S25302S
## 27393 S25309A
## 27394 S25309D
## 27395 S25309S
## 27396 S25311A
## 27397 S25311D
## 27398 S25311S
## 27399 S25312A
## 27400 S25312D
## 27401 S25312S
## 27402 S25319A
## 27403 S25319D
## 27404 S25319S
## 27405 S25321A
## 27406 S25321D
## 27407 S25321S
## 27408 S25322A
## 27409 S25322D
## 27410 S25322S
## 27411 S25329A
## 27412 S25329D
## 27413 S25329S
## 27414 S25391A
## 27415 S25391D
## 27416 S25391S
## 27417 S25392A
## 27418 S25392D
## 27419 S25392S
## 27420 S25399A
## 27421 S25399D
## 27422 S25399S
## 27423 S25401A
## 27424 S25401D
## 27425 S25401S
## 27426 S25402A
## 27427 S25402D
## 27428 S25402S
## 27429 S25409A
## 27430 S25409D
## 27431 S25409S
## 27432 S25411A
## 27433 S25411D
## 27434 S25411S
## 27435 S25412A
## 27436 S25412D
## 27437 S25412S
## 27438 S25419A
## 27439 S25419D
## 27440 S25419S
## 27441 S25421A
## 27442 S25421D
## 27443 S25421S
## 27444 S25422A
## 27445 S25422D
## 27446 S25422S
## 27447 S25429A
## 27448 S25429D
## 27449 S25429S
## 27450 S25491A
## 27451 S25491D
## 27452 S25491S
## 27453 S25492A
## 27454 S25492D
## 27455 S25492S
## 27456 S25499A
## 27457 S25499D
## 27458 S25499S
## 27459 S25501A
## 27460 S25501D
## 27461 S25501S
## 27462 S25502A
## 27463 S25502D
## 27464 S25502S
## 27465 S25509A
## 27466 S25509D
## 27467 S25509S
## 27468 S25511A
## 27469 S25511D
## 27470 S25511S
## 27471 S25512A
## 27472 S25512D
## 27473 S25512S
## 27474 S25519A
## 27475 S25519D
## 27476 S25519S
## 27477 S25591A
## 27478 S25591D
## 27479 S25591S
## 27480 S25592A
## 27481 S25592D
## 27482 S25592S
## 27483 S25599A
## 27484 S25599D
## 27485 S25599S
## 27486 S25801A
## 27487 S25801D
## 27488 S25801S
## 27489 S25802A
## 27490 S25802D
## 27491 S25802S
## 27492 S25809A
## 27493 S25809D
## 27494 S25809S
## 27495 S25811A
## 27496 S25811D
## 27497 S25811S
## 27498 S25812A
## 27499 S25812D
## 27500 S25812S
## 27501 S25819A
## 27502 S25819D
## 27503 S25819S
## 27504 S25891A
## 27505 S25891D
## 27506 S25891S
## 27507 S25892A
## 27508 S25892D
## 27509 S25892S
## 27510 S25899A
## 27511 S25899D
## 27512 S25899S
## 27513 S2590XA
## 27514 S2590XD
## 27515 S2590XS
## 27516 S2591XA
## 27517 S2591XD
## 27518 S2591XS
## 27519 S2599XA
## 27520 S2599XD
## 27521 S2599XS
## 27522 S2600XA
## 27523 S2600XD
## 27524 S2600XS
## 27525 S2601XA
## 27526 S2601XD
## 27527 S2601XS
## 27528 S26020A
## 27529 S26020D
## 27530 S26020S
## 27531 S26021A
## 27532 S26021D
## 27533 S26021S
## 27534 S26022A
## 27535 S26022D
## 27536 S26022S
## 27537 S2609XA
## 27538 S2609XD
## 27539 S2609XS
## 27540 S2610XA
## 27541 S2610XD
## 27542 S2610XS
## 27543 S2611XA
## 27544 S2611XD
## 27545 S2611XS
## 27546 S2612XA
## 27547 S2612XD
## 27548 S2612XS
## 27549 S2619XA
## 27550 S2619XD
## 27551 S2619XS
## 27552 S2690XA
## 27553 S2690XD
## 27554 S2690XS
## 27555 S2691XA
## 27556 S2691XD
## 27557 S2691XS
## 27558 S2692XA
## 27559 S2692XD
## 27560 S2692XS
## 27561 S2699XA
## 27562 S2699XD
## 27563 S2699XS
## 27564 S270XXA
## 27565 S270XXD
## 27566 S270XXS
## 27567 S271XXA
## 27568 S271XXD
## 27569 S271XXS
## 27570 S272XXA
## 27571 S272XXD
## 27572 S272XXS
## 27573 S27301A
## 27574 S27301D
## 27575 S27301S
## 27576 S27302A
## 27577 S27302D
## 27578 S27302S
## 27579 S27309A
## 27580 S27309D
## 27581 S27309S
## 27582 S27311A
## 27583 S27311D
## 27584 S27311S
## 27585 S27312A
## 27586 S27312D
## 27587 S27312S
## 27588 S27319A
## 27589 S27319D
## 27590 S27319S
## 27591 S27321A
## 27592 S27321D
## 27593 S27321S
## 27594 S27322A
## 27595 S27322D
## 27596 S27322S
## 27597 S27329A
## 27598 S27329D
## 27599 S27329S
## 27600 S27331A
## 27601 S27331D
## 27602 S27331S
## 27603 S27332A
## 27604 S27332D
## 27605 S27332S
## 27606 S27339A
## 27607 S27339D
## 27608 S27339S
## 27609 S27391A
## 27610 S27391D
## 27611 S27391S
## 27612 S27392A
## 27613 S27392D
## 27614 S27392S
## 27615 S27399A
## 27616 S27399D
## 27617 S27399S
## 27618 S27401A
## 27619 S27401D
## 27620 S27401S
## 27621 S27402A
## 27622 S27402D
## 27623 S27402S
## 27624 S27409A
## 27625 S27409D
## 27626 S27409S
## 27627 S27411A
## 27628 S27411D
## 27629 S27411S
## 27630 S27412A
## 27631 S27412D
## 27632 S27412S
## 27633 S27419A
## 27634 S27419D
## 27635 S27419S
## 27636 S27421A
## 27637 S27421D
## 27638 S27421S
## 27639 S27422A
## 27640 S27422D
## 27641 S27422S
## 27642 S27429A
## 27643 S27429D
## 27644 S27429S
## 27645 S27431A
## 27646 S27431D
## 27647 S27431S
## 27648 S27432A
## 27649 S27432D
## 27650 S27432S
## 27651 S27439A
## 27652 S27439D
## 27653 S27439S
## 27654 S27491A
## 27655 S27491D
## 27656 S27491S
## 27657 S27492A
## 27658 S27492D
## 27659 S27492S
## 27660 S27499A
## 27661 S27499D
## 27662 S27499S
## 27663 S2750XA
## 27664 S2750XD
## 27665 S2750XS
## 27666 S2751XA
## 27667 S2751XD
## 27668 S2751XS
## 27669 S2752XA
## 27670 S2752XD
## 27671 S2752XS
## 27672 S2753XA
## 27673 S2753XD
## 27674 S2753XS
## 27675 S2759XA
## 27676 S2759XD
## 27677 S2759XS
## 27678 S2760XA
## 27679 S2760XD
## 27680 S2760XS
## 27681 S2763XA
## 27682 S2763XD
## 27683 S2763XS
## 27684 S2769XA
## 27685 S2769XD
## 27686 S2769XS
## 27687 S27802A
## 27688 S27802D
## 27689 S27802S
## 27690 S27803A
## 27691 S27803D
## 27692 S27803S
## 27693 S27808A
## 27694 S27808D
## 27695 S27808S
## 27696 S27809A
## 27697 S27809D
## 27698 S27809S
## 27699 S27812A
## 27700 S27812D
## 27701 S27812S
## 27702 S27813A
## 27703 S27813D
## 27704 S27813S
## 27705 S27818A
## 27706 S27818D
## 27707 S27818S
## 27708 S27819A
## 27709 S27819D
## 27710 S27819S
## 27711 S27892A
## 27712 S27892D
## 27713 S27892S
## 27714 S27893A
## 27715 S27893D
## 27716 S27893S
## 27717 S27898A
## 27718 S27898D
## 27719 S27898S
## 27720 S27899A
## 27721 S27899D
## 27722 S27899S
## 27723 S279XXA
## 27724 S279XXD
## 27725 S279XXS
## 27726 S280XXA
## 27727 S280XXD
## 27728 S280XXS
## 27729 S281XXA
## 27730 S281XXD
## 27731 S281XXS
## 27732 S28211A
## 27733 S28211D
## 27734 S28211S
## 27735 S28212A
## 27736 S28212D
## 27737 S28212S
## 27738 S28219A
## 27739 S28219D
## 27740 S28219S
## 27741 S28221A
## 27742 S28221D
## 27743 S28221S
## 27744 S28222A
## 27745 S28222D
## 27746 S28222S
## 27747 S28229A
## 27748 S28229D
## 27749 S28229S
## 27750 S29001A
## 27751 S29001D
## 27752 S29001S
## 27753 S29002A
## 27754 S29002D
## 27755 S29002S
## 27756 S29009A
## 27757 S29009D
## 27758 S29009S
## 27759 S29011A
## 27760 S29011D
## 27761 S29011S
## 27762 S29012A
## 27763 S29012D
## 27764 S29012S
## 27765 S29019A
## 27766 S29019D
## 27767 S29019S
## 27768 S29021A
## 27769 S29021D
## 27770 S29021S
## 27771 S29022A
## 27772 S29022D
## 27773 S29022S
## 27774 S29029A
## 27775 S29029D
## 27776 S29029S
## 27777 S29091A
## 27778 S29091D
## 27779 S29091S
## 27780 S29092A
## 27781 S29092D
## 27782 S29092S
## 27783 S29099A
## 27784 S29099D
## 27785 S29099S
## 27786 S298XXA
## 27787 S298XXD
## 27788 S298XXS
## 27789 S299XXA
## 27790 S299XXD
## 27791 S299XXS
## 27792 S300XXA
## 27793 S300XXD
## 27794 S300XXS
## 27795 S301XXA
## 27796 S301XXD
## 27797 S301XXS
## 27798 S30201A
## 27799 S30201D
## 27800 S30201S
## 27801 S30202A
## 27802 S30202D
## 27803 S30202S
## 27804 S3021XA
## 27805 S3021XD
## 27806 S3021XS
## 27807 S3022XA
## 27808 S3022XD
## 27809 S3022XS
## 27810 S3023XA
## 27811 S3023XD
## 27812 S3023XS
## 27813 S303XXA
## 27814 S303XXD
## 27815 S303XXS
## 27816 S30810A
## 27817 S30810D
## 27818 S30810S
## 27819 S30811A
## 27820 S30811D
## 27821 S30811S
## 27822 S30812A
## 27823 S30812D
## 27824 S30812S
## 27825 S30813A
## 27826 S30813D
## 27827 S30813S
## 27828 S30814A
## 27829 S30814D
## 27830 S30814S
## 27831 S30815A
## 27832 S30815D
## 27833 S30815S
## 27834 S30816A
## 27835 S30816D
## 27836 S30816S
## 27837 S30817A
## 27838 S30817D
## 27839 S30817S
## 27840 S30820A
## 27841 S30820D
## 27842 S30820S
## 27843 S30821A
## 27844 S30821D
## 27845 S30821S
## 27846 S30822A
## 27847 S30822D
## 27848 S30822S
## 27849 S30823A
## 27850 S30823D
## 27851 S30823S
## 27852 S30824A
## 27853 S30824D
## 27854 S30824S
## 27855 S30825A
## 27856 S30825D
## 27857 S30825S
## 27858 S30826A
## 27859 S30826D
## 27860 S30826S
## 27861 S30827A
## 27862 S30827D
## 27863 S30827S
## 27864 S30840A
## 27865 S30840D
## 27866 S30840S
## 27867 S30841A
## 27868 S30841D
## 27869 S30841S
## 27870 S30842A
## 27871 S30842D
## 27872 S30842S
## 27873 S30843A
## 27874 S30843D
## 27875 S30843S
## 27876 S30844A
## 27877 S30844D
## 27878 S30844S
## 27879 S30845A
## 27880 S30845D
## 27881 S30845S
## 27882 S30846A
## 27883 S30846D
## 27884 S30846S
## 27885 S30850A
## 27886 S30850D
## 27887 S30850S
## 27888 S30851A
## 27889 S30851D
## 27890 S30851S
## 27891 S30852A
## 27892 S30852D
## 27893 S30852S
## 27894 S30853A
## 27895 S30853D
## 27896 S30853S
## 27897 S30854A
## 27898 S30854D
## 27899 S30854S
## 27900 S30855A
## 27901 S30855D
## 27902 S30855S
## 27903 S30856A
## 27904 S30856D
## 27905 S30856S
## 27906 S30857A
## 27907 S30857D
## 27908 S30857S
## 27909 S30860A
## 27910 S30860D
## 27911 S30860S
## 27912 S30861A
## 27913 S30861D
## 27914 S30861S
## 27915 S30862A
## 27916 S30862D
## 27917 S30862S
## 27918 S30863A
## 27919 S30863D
## 27920 S30863S
## 27921 S30864A
## 27922 S30864D
## 27923 S30864S
## 27924 S30865A
## 27925 S30865D
## 27926 S30865S
## 27927 S30866A
## 27928 S30866D
## 27929 S30866S
## 27930 S30867A
## 27931 S30867D
## 27932 S30867S
## 27933 S30870A
## 27934 S30870D
## 27935 S30870S
## 27936 S30871A
## 27937 S30871D
## 27938 S30871S
## 27939 S30872A
## 27940 S30872D
## 27941 S30872S
## 27942 S30873A
## 27943 S30873D
## 27944 S30873S
## 27945 S30874A
## 27946 S30874D
## 27947 S30874S
## 27948 S30875A
## 27949 S30875D
## 27950 S30875S
## 27951 S30876A
## 27952 S30876D
## 27953 S30876S
## 27954 S30877A
## 27955 S30877D
## 27956 S30877S
## 27957 S3091XA
## 27958 S3091XD
## 27959 S3091XS
## 27960 S3092XA
## 27961 S3092XD
## 27962 S3092XS
## 27963 S3093XA
## 27964 S3093XD
## 27965 S3093XS
## 27966 S3094XA
## 27967 S3094XD
## 27968 S3094XS
## 27969 S3095XA
## 27970 S3095XD
## 27971 S3095XS
## 27972 S3096XA
## 27973 S3096XD
## 27974 S3096XS
## 27975 S3097XA
## 27976 S3097XD
## 27977 S3097XS
## 27978 S3098XA
## 27979 S3098XD
## 27980 S3098XS
## 27981 S31000A
## 27982 S31000D
## 27983 S31000S
## 27984 S31001A
## 27985 S31001D
## 27986 S31001S
## 27987 S31010A
## 27988 S31010D
## 27989 S31010S
## 27990 S31011A
## 27991 S31011D
## 27992 S31011S
## 27993 S31020A
## 27994 S31020D
## 27995 S31020S
## 27996 S31021A
## 27997 S31021D
## 27998 S31021S
## 27999 S31030A
## 28000 S31030D
## 28001 S31030S
## 28002 S31031A
## 28003 S31031D
## 28004 S31031S
## 28005 S31040A
## 28006 S31040D
## 28007 S31040S
## 28008 S31041A
## 28009 S31041D
## 28010 S31041S
## 28011 S31050A
## 28012 S31050D
## 28013 S31050S
## 28014 S31051A
## 28015 S31051D
## 28016 S31051S
## 28017 S31100A
## 28018 S31100D
## 28019 S31100S
## 28020 S31101A
## 28021 S31101D
## 28022 S31101S
## 28023 S31102A
## 28024 S31102D
## 28025 S31102S
## 28026 S31103A
## 28027 S31103D
## 28028 S31103S
## 28029 S31104A
## 28030 S31104D
## 28031 S31104S
## 28032 S31105A
## 28033 S31105D
## 28034 S31105S
## 28035 S31109A
## 28036 S31109D
## 28037 S31109S
## 28038 S31110A
## 28039 S31110D
## 28040 S31110S
## 28041 S31111A
## 28042 S31111D
## 28043 S31111S
## 28044 S31112A
## 28045 S31112D
## 28046 S31112S
## 28047 S31113A
## 28048 S31113D
## 28049 S31113S
## 28050 S31114A
## 28051 S31114D
## 28052 S31114S
## 28053 S31115A
## 28054 S31115D
## 28055 S31115S
## 28056 S31119A
## 28057 S31119D
## 28058 S31119S
## 28059 S31120A
## 28060 S31120D
## 28061 S31120S
## 28062 S31121A
## 28063 S31121D
## 28064 S31121S
## 28065 S31122A
## 28066 S31122D
## 28067 S31122S
## 28068 S31123A
## 28069 S31123D
## 28070 S31123S
## 28071 S31124A
## 28072 S31124D
## 28073 S31124S
## 28074 S31125A
## 28075 S31125D
## 28076 S31125S
## 28077 S31129A
## 28078 S31129D
## 28079 S31129S
## 28080 S31130A
## 28081 S31130D
## 28082 S31130S
## 28083 S31131A
## 28084 S31131D
## 28085 S31131S
## 28086 S31132A
## 28087 S31132D
## 28088 S31132S
## 28089 S31133A
## 28090 S31133D
## 28091 S31133S
## 28092 S31134A
## 28093 S31134D
## 28094 S31134S
## 28095 S31135A
## 28096 S31135D
## 28097 S31135S
## 28098 S31139A
## 28099 S31139D
## 28100 S31139S
## 28101 S31140A
## 28102 S31140D
## 28103 S31140S
## 28104 S31141A
## 28105 S31141D
## 28106 S31141S
## 28107 S31142A
## 28108 S31142D
## 28109 S31142S
## 28110 S31143A
## 28111 S31143D
## 28112 S31143S
## 28113 S31144A
## 28114 S31144D
## 28115 S31144S
## 28116 S31145A
## 28117 S31145D
## 28118 S31145S
## 28119 S31149A
## 28120 S31149D
## 28121 S31149S
## 28122 S31150A
## 28123 S31150D
## 28124 S31150S
## 28125 S31151A
## 28126 S31151D
## 28127 S31151S
## 28128 S31152A
## 28129 S31152D
## 28130 S31152S
## 28131 S31153A
## 28132 S31153D
## 28133 S31153S
## 28134 S31154A
## 28135 S31154D
## 28136 S31154S
## 28137 S31155A
## 28138 S31155D
## 28139 S31155S
## 28140 S31159A
## 28141 S31159D
## 28142 S31159S
## 28143 S3120XA
## 28144 S3120XD
## 28145 S3120XS
## 28146 S3121XA
## 28147 S3121XD
## 28148 S3121XS
## 28149 S3122XA
## 28150 S3122XD
## 28151 S3122XS
## 28152 S3123XA
## 28153 S3123XD
## 28154 S3123XS
## 28155 S3124XA
## 28156 S3124XD
## 28157 S3124XS
## 28158 S3125XA
## 28159 S3125XD
## 28160 S3125XS
## 28161 S3130XA
## 28162 S3130XD
## 28163 S3130XS
## 28164 S3131XA
## 28165 S3131XD
## 28166 S3131XS
## 28167 S3132XA
## 28168 S3132XD
## 28169 S3132XS
## 28170 S3133XA
## 28171 S3133XD
## 28172 S3133XS
## 28173 S3134XA
## 28174 S3134XD
## 28175 S3134XS
## 28176 S3135XA
## 28177 S3135XD
## 28178 S3135XS
## 28179 S3140XA
## 28180 S3140XD
## 28181 S3140XS
## 28182 S3141XA
## 28183 S3141XD
## 28184 S3141XS
## 28185 S3142XA
## 28186 S3142XD
## 28187 S3142XS
## 28188 S3143XA
## 28189 S3143XD
## 28190 S3143XS
## 28191 S3144XA
## 28192 S3144XD
## 28193 S3144XS
## 28194 S3145XA
## 28195 S3145XD
## 28196 S3145XS
## 28197 S31501A
## 28198 S31501D
## 28199 S31501S
## 28200 S31502A
## 28201 S31502D
## 28202 S31502S
## 28203 S31511A
## 28204 S31511D
## 28205 S31511S
## 28206 S31512A
## 28207 S31512D
## 28208 S31512S
## 28209 S31521A
## 28210 S31521D
## 28211 S31521S
## 28212 S31522A
## 28213 S31522D
## 28214 S31522S
## 28215 S31531A
## 28216 S31531D
## 28217 S31531S
## 28218 S31532A
## 28219 S31532D
## 28220 S31532S
## 28221 S31541A
## 28222 S31541D
## 28223 S31541S
## 28224 S31542A
## 28225 S31542D
## 28226 S31542S
## 28227 S31551A
## 28228 S31551D
## 28229 S31551S
## 28230 S31552A
## 28231 S31552D
## 28232 S31552S
## 28233 S31600A
## 28234 S31600D
## 28235 S31600S
## 28236 S31601A
## 28237 S31601D
## 28238 S31601S
## 28239 S31602A
## 28240 S31602D
## 28241 S31602S
## 28242 S31603A
## 28243 S31603D
## 28244 S31603S
## 28245 S31604A
## 28246 S31604D
## 28247 S31604S
## 28248 S31605A
## 28249 S31605D
## 28250 S31605S
## 28251 S31609A
## 28252 S31609D
## 28253 S31609S
## 28254 S31610A
## 28255 S31610D
## 28256 S31610S
## 28257 S31611A
## 28258 S31611D
## 28259 S31611S
## 28260 S31612A
## 28261 S31612D
## 28262 S31612S
## 28263 S31613A
## 28264 S31613D
## 28265 S31613S
## 28266 S31614A
## 28267 S31614D
## 28268 S31614S
## 28269 S31615A
## 28270 S31615D
## 28271 S31615S
## 28272 S31619A
## 28273 S31619D
## 28274 S31619S
## 28275 S31620A
## 28276 S31620D
## 28277 S31620S
## 28278 S31621A
## 28279 S31621D
## 28280 S31621S
## 28281 S31622A
## 28282 S31622D
## 28283 S31622S
## 28284 S31623A
## 28285 S31623D
## 28286 S31623S
## 28287 S31624A
## 28288 S31624D
## 28289 S31624S
## 28290 S31625A
## 28291 S31625D
## 28292 S31625S
## 28293 S31629A
## 28294 S31629D
## 28295 S31629S
## 28296 S31630A
## 28297 S31630D
## 28298 S31630S
## 28299 S31631A
## 28300 S31631D
## 28301 S31631S
## 28302 S31632A
## 28303 S31632D
## 28304 S31632S
## 28305 S31633A
## 28306 S31633D
## 28307 S31633S
## 28308 S31634A
## 28309 S31634D
## 28310 S31634S
## 28311 S31635A
## 28312 S31635D
## 28313 S31635S
## 28314 S31639A
## 28315 S31639D
## 28316 S31639S
## 28317 S31640A
## 28318 S31640D
## 28319 S31640S
## 28320 S31641A
## 28321 S31641D
## 28322 S31641S
## 28323 S31642A
## 28324 S31642D
## 28325 S31642S
## 28326 S31643A
## 28327 S31643D
## 28328 S31643S
## 28329 S31644A
## 28330 S31644D
## 28331 S31644S
## 28332 S31645A
## 28333 S31645D
## 28334 S31645S
## 28335 S31649A
## 28336 S31649D
## 28337 S31649S
## 28338 S31650A
## 28339 S31650D
## 28340 S31650S
## 28341 S31651A
## 28342 S31651D
## 28343 S31651S
## 28344 S31652A
## 28345 S31652D
## 28346 S31652S
## 28347 S31653A
## 28348 S31653D
## 28349 S31653S
## 28350 S31654A
## 28351 S31654D
## 28352 S31654S
## 28353 S31655A
## 28354 S31655D
## 28355 S31655S
## 28356 S31659A
## 28357 S31659D
## 28358 S31659S
## 28359 S31801A
## 28360 S31801D
## 28361 S31801S
## 28362 S31802A
## 28363 S31802D
## 28364 S31802S
## 28365 S31803A
## 28366 S31803D
## 28367 S31803S
## 28368 S31804A
## 28369 S31804D
## 28370 S31804S
## 28371 S31805A
## 28372 S31805D
## 28373 S31805S
## 28374 S31809A
## 28375 S31809D
## 28376 S31809S
## 28377 S31811A
## 28378 S31811D
## 28379 S31811S
## 28380 S31812A
## 28381 S31812D
## 28382 S31812S
## 28383 S31813A
## 28384 S31813D
## 28385 S31813S
## 28386 S31814A
## 28387 S31814D
## 28388 S31814S
## 28389 S31815A
## 28390 S31815D
## 28391 S31815S
## 28392 S31819A
## 28393 S31819D
## 28394 S31819S
## 28395 S31821A
## 28396 S31821D
## 28397 S31821S
## 28398 S31822A
## 28399 S31822D
## 28400 S31822S
## 28401 S31823A
## 28402 S31823D
## 28403 S31823S
## 28404 S31824A
## 28405 S31824D
## 28406 S31824S
## 28407 S31825A
## 28408 S31825D
## 28409 S31825S
## 28410 S31829A
## 28411 S31829D
## 28412 S31829S
## 28413 S31831A
## 28414 S31831D
## 28415 S31831S
## 28416 S31832A
## 28417 S31832D
## 28418 S31832S
## 28419 S31833A
## 28420 S31833D
## 28421 S31833S
## 28422 S31834A
## 28423 S31834D
## 28424 S31834S
## 28425 S31835A
## 28426 S31835D
## 28427 S31835S
## 28428 S31839A
## 28429 S31839D
## 28430 S31839S
## 28431 S32000A
## 28432 S32000B
## 28433 S32000D
## 28434 S32000G
## 28435 S32000K
## 28436 S32000S
## 28437 S32001A
## 28438 S32001B
## 28439 S32001D
## 28440 S32001G
## 28441 S32001K
## 28442 S32001S
## 28443 S32002A
## 28444 S32002B
## 28445 S32002D
## 28446 S32002G
## 28447 S32002K
## 28448 S32002S
## 28449 S32008A
## 28450 S32008B
## 28451 S32008D
## 28452 S32008G
## 28453 S32008K
## 28454 S32008S
## 28455 S32009A
## 28456 S32009B
## 28457 S32009D
## 28458 S32009G
## 28459 S32009K
## 28460 S32009S
## 28461 S32010A
## 28462 S32010B
## 28463 S32010D
## 28464 S32010G
## 28465 S32010K
## 28466 S32010S
## 28467 S32011A
## 28468 S32011B
## 28469 S32011D
## 28470 S32011G
## 28471 S32011K
## 28472 S32011S
## 28473 S32012A
## 28474 S32012B
## 28475 S32012D
## 28476 S32012G
## 28477 S32012K
## 28478 S32012S
## 28479 S32018A
## 28480 S32018B
## 28481 S32018D
## 28482 S32018G
## 28483 S32018K
## 28484 S32018S
## 28485 S32019A
## 28486 S32019B
## 28487 S32019D
## 28488 S32019G
## 28489 S32019K
## 28490 S32019S
## 28491 S32020A
## 28492 S32020B
## 28493 S32020D
## 28494 S32020G
## 28495 S32020K
## 28496 S32020S
## 28497 S32021A
## 28498 S32021B
## 28499 S32021D
## 28500 S32021G
## 28501 S32021K
## 28502 S32021S
## 28503 S32022A
## 28504 S32022B
## 28505 S32022D
## 28506 S32022G
## 28507 S32022K
## 28508 S32022S
## 28509 S32028A
## 28510 S32028B
## 28511 S32028D
## 28512 S32028G
## 28513 S32028K
## 28514 S32028S
## 28515 S32029A
## 28516 S32029B
## 28517 S32029D
## 28518 S32029G
## 28519 S32029K
## 28520 S32029S
## 28521 S32030A
## 28522 S32030B
## 28523 S32030D
## 28524 S32030G
## 28525 S32030K
## 28526 S32030S
## 28527 S32031A
## 28528 S32031B
## 28529 S32031D
## 28530 S32031G
## 28531 S32031K
## 28532 S32031S
## 28533 S32032A
## 28534 S32032B
## 28535 S32032D
## 28536 S32032G
## 28537 S32032K
## 28538 S32032S
## 28539 S32038A
## 28540 S32038B
## 28541 S32038D
## 28542 S32038G
## 28543 S32038K
## 28544 S32038S
## 28545 S32039A
## 28546 S32039B
## 28547 S32039D
## 28548 S32039G
## 28549 S32039K
## 28550 S32039S
## 28551 S32040A
## 28552 S32040B
## 28553 S32040D
## 28554 S32040G
## 28555 S32040K
## 28556 S32040S
## 28557 S32041A
## 28558 S32041B
## 28559 S32041D
## 28560 S32041G
## 28561 S32041K
## 28562 S32041S
## 28563 S32042A
## 28564 S32042B
## 28565 S32042D
## 28566 S32042G
## 28567 S32042K
## 28568 S32042S
## 28569 S32048A
## 28570 S32048B
## 28571 S32048D
## 28572 S32048G
## 28573 S32048K
## 28574 S32048S
## 28575 S32049A
## 28576 S32049B
## 28577 S32049D
## 28578 S32049G
## 28579 S32049K
## 28580 S32049S
## 28581 S32050A
## 28582 S32050B
## 28583 S32050D
## 28584 S32050G
## 28585 S32050K
## 28586 S32050S
## 28587 S32051A
## 28588 S32051B
## 28589 S32051D
## 28590 S32051G
## 28591 S32051K
## 28592 S32051S
## 28593 S32052A
## 28594 S32052B
## 28595 S32052D
## 28596 S32052G
## 28597 S32052K
## 28598 S32052S
## 28599 S32058A
## 28600 S32058B
## 28601 S32058D
## 28602 S32058G
## 28603 S32058K
## 28604 S32058S
## 28605 S32059A
## 28606 S32059B
## 28607 S32059D
## 28608 S32059G
## 28609 S32059K
## 28610 S32059S
## 28611 S3210XA
## 28612 S3210XB
## 28613 S3210XD
## 28614 S3210XG
## 28615 S3210XK
## 28616 S3210XS
## 28617 S32110A
## 28618 S32110B
## 28619 S32110D
## 28620 S32110G
## 28621 S32110K
## 28622 S32110S
## 28623 S32111A
## 28624 S32111B
## 28625 S32111D
## 28626 S32111G
## 28627 S32111K
## 28628 S32111S
## 28629 S32112A
## 28630 S32112B
## 28631 S32112D
## 28632 S32112G
## 28633 S32112K
## 28634 S32112S
## 28635 S32119A
## 28636 S32119B
## 28637 S32119D
## 28638 S32119G
## 28639 S32119K
## 28640 S32119S
## 28641 S32120A
## 28642 S32120B
## 28643 S32120D
## 28644 S32120G
## 28645 S32120K
## 28646 S32120S
## 28647 S32121A
## 28648 S32121B
## 28649 S32121D
## 28650 S32121G
## 28651 S32121K
## 28652 S32121S
## 28653 S32122A
## 28654 S32122B
## 28655 S32122D
## 28656 S32122G
## 28657 S32122K
## 28658 S32122S
## 28659 S32129A
## 28660 S32129B
## 28661 S32129D
## 28662 S32129G
## 28663 S32129K
## 28664 S32129S
## 28665 S32130A
## 28666 S32130B
## 28667 S32130D
## 28668 S32130G
## 28669 S32130K
## 28670 S32130S
## 28671 S32131A
## 28672 S32131B
## 28673 S32131D
## 28674 S32131G
## 28675 S32131K
## 28676 S32131S
## 28677 S32132A
## 28678 S32132B
## 28679 S32132D
## 28680 S32132G
## 28681 S32132K
## 28682 S32132S
## 28683 S32139A
## 28684 S32139B
## 28685 S32139D
## 28686 S32139G
## 28687 S32139K
## 28688 S32139S
## 28689 S3214XA
## 28690 S3214XB
## 28691 S3214XD
## 28692 S3214XG
## 28693 S3214XK
## 28694 S3214XS
## 28695 S3215XA
## 28696 S3215XB
## 28697 S3215XD
## 28698 S3215XG
## 28699 S3215XK
## 28700 S3215XS
## 28701 S3216XA
## 28702 S3216XB
## 28703 S3216XD
## 28704 S3216XG
## 28705 S3216XK
## 28706 S3216XS
## 28707 S3217XA
## 28708 S3217XB
## 28709 S3217XD
## 28710 S3217XG
## 28711 S3217XK
## 28712 S3217XS
## 28713 S3219XA
## 28714 S3219XB
## 28715 S3219XD
## 28716 S3219XG
## 28717 S3219XK
## 28718 S3219XS
## 28719 S322XXA
## 28720 S322XXB
## 28721 S322XXD
## 28722 S322XXG
## 28723 S322XXK
## 28724 S322XXS
## 28725 S32301A
## 28726 S32301B
## 28727 S32301D
## 28728 S32301G
## 28729 S32301K
## 28730 S32301S
## 28731 S32302A
## 28732 S32302B
## 28733 S32302D
## 28734 S32302G
## 28735 S32302K
## 28736 S32302S
## 28737 S32309A
## 28738 S32309B
## 28739 S32309D
## 28740 S32309G
## 28741 S32309K
## 28742 S32309S
## 28743 S32311A
## 28744 S32311B
## 28745 S32311D
## 28746 S32311G
## 28747 S32311K
## 28748 S32311S
## 28749 S32312A
## 28750 S32312B
## 28751 S32312D
## 28752 S32312G
## 28753 S32312K
## 28754 S32312S
## 28755 S32313A
## 28756 S32313B
## 28757 S32313D
## 28758 S32313G
## 28759 S32313K
## 28760 S32313S
## 28761 S32314A
## 28762 S32314B
## 28763 S32314D
## 28764 S32314G
## 28765 S32314K
## 28766 S32314S
## 28767 S32315A
## 28768 S32315B
## 28769 S32315D
## 28770 S32315G
## 28771 S32315K
## 28772 S32315S
## 28773 S32316A
## 28774 S32316B
## 28775 S32316D
## 28776 S32316G
## 28777 S32316K
## 28778 S32316S
## 28779 S32391A
## 28780 S32391B
## 28781 S32391D
## 28782 S32391G
## 28783 S32391K
## 28784 S32391S
## 28785 S32392A
## 28786 S32392B
## 28787 S32392D
## 28788 S32392G
## 28789 S32392K
## 28790 S32392S
## 28791 S32399A
## 28792 S32399B
## 28793 S32399D
## 28794 S32399G
## 28795 S32399K
## 28796 S32399S
## 28797 S32401A
## 28798 S32401B
## 28799 S32401D
## 28800 S32401G
## 28801 S32401K
## 28802 S32401S
## 28803 S32402A
## 28804 S32402B
## 28805 S32402D
## 28806 S32402G
## 28807 S32402K
## 28808 S32402S
## 28809 S32409A
## 28810 S32409B
## 28811 S32409D
## 28812 S32409G
## 28813 S32409K
## 28814 S32409S
## 28815 S32411A
## 28816 S32411B
## 28817 S32411D
## 28818 S32411G
## 28819 S32411K
## 28820 S32411S
## 28821 S32412A
## 28822 S32412B
## 28823 S32412D
## 28824 S32412G
## 28825 S32412K
## 28826 S32412S
## 28827 S32413A
## 28828 S32413B
## 28829 S32413D
## 28830 S32413G
## 28831 S32413K
## 28832 S32413S
## 28833 S32414A
## 28834 S32414B
## 28835 S32414D
## 28836 S32414G
## 28837 S32414K
## 28838 S32414S
## 28839 S32415A
## 28840 S32415B
## 28841 S32415D
## 28842 S32415G
## 28843 S32415K
## 28844 S32415S
## 28845 S32416A
## 28846 S32416B
## 28847 S32416D
## 28848 S32416G
## 28849 S32416K
## 28850 S32416S
## 28851 S32421A
## 28852 S32421B
## 28853 S32421D
## 28854 S32421G
## 28855 S32421K
## 28856 S32421S
## 28857 S32422A
## 28858 S32422B
## 28859 S32422D
## 28860 S32422G
## 28861 S32422K
## 28862 S32422S
## 28863 S32423A
## 28864 S32423B
## 28865 S32423D
## 28866 S32423G
## 28867 S32423K
## 28868 S32423S
## 28869 S32424A
## 28870 S32424B
## 28871 S32424D
## 28872 S32424G
## 28873 S32424K
## 28874 S32424S
## 28875 S32425A
## 28876 S32425B
## 28877 S32425D
## 28878 S32425G
## 28879 S32425K
## 28880 S32425S
## 28881 S32426A
## 28882 S32426B
## 28883 S32426D
## 28884 S32426G
## 28885 S32426K
## 28886 S32426S
## 28887 S32431A
## 28888 S32431B
## 28889 S32431D
## 28890 S32431G
## 28891 S32431K
## 28892 S32431S
## 28893 S32432A
## 28894 S32432B
## 28895 S32432D
## 28896 S32432G
## 28897 S32432K
## 28898 S32432S
## 28899 S32433A
## 28900 S32433B
## 28901 S32433D
## 28902 S32433G
## 28903 S32433K
## 28904 S32433S
## 28905 S32434A
## 28906 S32434B
## 28907 S32434D
## 28908 S32434G
## 28909 S32434K
## 28910 S32434S
## 28911 S32435A
## 28912 S32435B
## 28913 S32435D
## 28914 S32435G
## 28915 S32435K
## 28916 S32435S
## 28917 S32436A
## 28918 S32436B
## 28919 S32436D
## 28920 S32436G
## 28921 S32436K
## 28922 S32436S
## 28923 S32441A
## 28924 S32441B
## 28925 S32441D
## 28926 S32441G
## 28927 S32441K
## 28928 S32441S
## 28929 S32442A
## 28930 S32442B
## 28931 S32442D
## 28932 S32442G
## 28933 S32442K
## 28934 S32442S
## 28935 S32443A
## 28936 S32443B
## 28937 S32443D
## 28938 S32443G
## 28939 S32443K
## 28940 S32443S
## 28941 S32444A
## 28942 S32444B
## 28943 S32444D
## 28944 S32444G
## 28945 S32444K
## 28946 S32444S
## 28947 S32445A
## 28948 S32445B
## 28949 S32445D
## 28950 S32445G
## 28951 S32445K
## 28952 S32445S
## 28953 S32446A
## 28954 S32446B
## 28955 S32446D
## 28956 S32446G
## 28957 S32446K
## 28958 S32446S
## 28959 S32451A
## 28960 S32451B
## 28961 S32451D
## 28962 S32451G
## 28963 S32451K
## 28964 S32451S
## 28965 S32452A
## 28966 S32452B
## 28967 S32452D
## 28968 S32452G
## 28969 S32452K
## 28970 S32452S
## 28971 S32453A
## 28972 S32453B
## 28973 S32453D
## 28974 S32453G
## 28975 S32453K
## 28976 S32453S
## 28977 S32454A
## 28978 S32454B
## 28979 S32454D
## 28980 S32454G
## 28981 S32454K
## 28982 S32454S
## 28983 S32455A
## 28984 S32455B
## 28985 S32455D
## 28986 S32455G
## 28987 S32455K
## 28988 S32455S
## 28989 S32456A
## 28990 S32456B
## 28991 S32456D
## 28992 S32456G
## 28993 S32456K
## 28994 S32456S
## 28995 S32461A
## 28996 S32461B
## 28997 S32461D
## 28998 S32461G
## 28999 S32461K
## 29000 S32461S
## 29001 S32462A
## 29002 S32462B
## 29003 S32462D
## 29004 S32462G
## 29005 S32462K
## 29006 S32462S
## 29007 S32463A
## 29008 S32463B
## 29009 S32463D
## 29010 S32463G
## 29011 S32463K
## 29012 S32463S
## 29013 S32464A
## 29014 S32464B
## 29015 S32464D
## 29016 S32464G
## 29017 S32464K
## 29018 S32464S
## 29019 S32465A
## 29020 S32465B
## 29021 S32465D
## 29022 S32465G
## 29023 S32465K
## 29024 S32465S
## 29025 S32466A
## 29026 S32466B
## 29027 S32466D
## 29028 S32466G
## 29029 S32466K
## 29030 S32466S
## 29031 S32471A
## 29032 S32471B
## 29033 S32471D
## 29034 S32471G
## 29035 S32471K
## 29036 S32471S
## 29037 S32472A
## 29038 S32472B
## 29039 S32472D
## 29040 S32472G
## 29041 S32472K
## 29042 S32472S
## 29043 S32473A
## 29044 S32473B
## 29045 S32473D
## 29046 S32473G
## 29047 S32473K
## 29048 S32473S
## 29049 S32474A
## 29050 S32474B
## 29051 S32474D
## 29052 S32474G
## 29053 S32474K
## 29054 S32474S
## 29055 S32475A
## 29056 S32475B
## 29057 S32475D
## 29058 S32475G
## 29059 S32475K
## 29060 S32475S
## 29061 S32476A
## 29062 S32476B
## 29063 S32476D
## 29064 S32476G
## 29065 S32476K
## 29066 S32476S
## 29067 S32481A
## 29068 S32481B
## 29069 S32481D
## 29070 S32481G
## 29071 S32481K
## 29072 S32481S
## 29073 S32482A
## 29074 S32482B
## 29075 S32482D
## 29076 S32482G
## 29077 S32482K
## 29078 S32482S
## 29079 S32483A
## 29080 S32483B
## 29081 S32483D
## 29082 S32483G
## 29083 S32483K
## 29084 S32483S
## 29085 S32484A
## 29086 S32484B
## 29087 S32484D
## 29088 S32484G
## 29089 S32484K
## 29090 S32484S
## 29091 S32485A
## 29092 S32485B
## 29093 S32485D
## 29094 S32485G
## 29095 S32485K
## 29096 S32485S
## 29097 S32486A
## 29098 S32486B
## 29099 S32486D
## 29100 S32486G
## 29101 S32486K
## 29102 S32486S
## 29103 S32491A
## 29104 S32491B
## 29105 S32491D
## 29106 S32491G
## 29107 S32491K
## 29108 S32491S
## 29109 S32492A
## 29110 S32492B
## 29111 S32492D
## 29112 S32492G
## 29113 S32492K
## 29114 S32492S
## 29115 S32499A
## 29116 S32499B
## 29117 S32499D
## 29118 S32499G
## 29119 S32499K
## 29120 S32499S
## 29121 S32501A
## 29122 S32501B
## 29123 S32501D
## 29124 S32501G
## 29125 S32501K
## 29126 S32501S
## 29127 S32502A
## 29128 S32502B
## 29129 S32502D
## 29130 S32502G
## 29131 S32502K
## 29132 S32502S
## 29133 S32509A
## 29134 S32509B
## 29135 S32509D
## 29136 S32509G
## 29137 S32509K
## 29138 S32509S
## 29139 S32511A
## 29140 S32511B
## 29141 S32511D
## 29142 S32511G
## 29143 S32511K
## 29144 S32511S
## 29145 S32512A
## 29146 S32512B
## 29147 S32512D
## 29148 S32512G
## 29149 S32512K
## 29150 S32512S
## 29151 S32519A
## 29152 S32519B
## 29153 S32519D
## 29154 S32519G
## 29155 S32519K
## 29156 S32519S
## 29157 S32591A
## 29158 S32591B
## 29159 S32591D
## 29160 S32591G
## 29161 S32591K
## 29162 S32591S
## 29163 S32592A
## 29164 S32592B
## 29165 S32592D
## 29166 S32592G
## 29167 S32592K
## 29168 S32592S
## 29169 S32599A
## 29170 S32599B
## 29171 S32599D
## 29172 S32599G
## 29173 S32599K
## 29174 S32599S
## 29175 S32601A
## 29176 S32601B
## 29177 S32601D
## 29178 S32601G
## 29179 S32601K
## 29180 S32601S
## 29181 S32602A
## 29182 S32602B
## 29183 S32602D
## 29184 S32602G
## 29185 S32602K
## 29186 S32602S
## 29187 S32609A
## 29188 S32609B
## 29189 S32609D
## 29190 S32609G
## 29191 S32609K
## 29192 S32609S
## 29193 S32611A
## 29194 S32611B
## 29195 S32611D
## 29196 S32611G
## 29197 S32611K
## 29198 S32611S
## 29199 S32612A
## 29200 S32612B
## 29201 S32612D
## 29202 S32612G
## 29203 S32612K
## 29204 S32612S
## 29205 S32613A
## 29206 S32613B
## 29207 S32613D
## 29208 S32613G
## 29209 S32613K
## 29210 S32613S
## 29211 S32614A
## 29212 S32614B
## 29213 S32614D
## 29214 S32614G
## 29215 S32614K
## 29216 S32614S
## 29217 S32615A
## 29218 S32615B
## 29219 S32615D
## 29220 S32615G
## 29221 S32615K
## 29222 S32615S
## 29223 S32616A
## 29224 S32616B
## 29225 S32616D
## 29226 S32616G
## 29227 S32616K
## 29228 S32616S
## 29229 S32691A
## 29230 S32691B
## 29231 S32691D
## 29232 S32691G
## 29233 S32691K
## 29234 S32691S
## 29235 S32692A
## 29236 S32692B
## 29237 S32692D
## 29238 S32692G
## 29239 S32692K
## 29240 S32692S
## 29241 S32699A
## 29242 S32699B
## 29243 S32699D
## 29244 S32699G
## 29245 S32699K
## 29246 S32699S
## 29247 S32810A
## 29248 S32810B
## 29249 S32810D
## 29250 S32810G
## 29251 S32810K
## 29252 S32810S
## 29253 S32811A
## 29254 S32811B
## 29255 S32811D
## 29256 S32811G
## 29257 S32811K
## 29258 S32811S
## 29259 S3282XA
## 29260 S3282XB
## 29261 S3282XD
## 29262 S3282XG
## 29263 S3282XK
## 29264 S3282XS
## 29265 S3289XA
## 29266 S3289XB
## 29267 S3289XD
## 29268 S3289XG
## 29269 S3289XK
## 29270 S3289XS
## 29271 S329XXA
## 29272 S329XXB
## 29273 S329XXD
## 29274 S329XXG
## 29275 S329XXK
## 29276 S329XXS
## 29277 S330XXA
## 29278 S330XXD
## 29279 S330XXS
## 29280 S33100A
## 29281 S33100D
## 29282 S33100S
## 29283 S33101A
## 29284 S33101D
## 29285 S33101S
## 29286 S33110A
## 29287 S33110D
## 29288 S33110S
## 29289 S33111A
## 29290 S33111D
## 29291 S33111S
## 29292 S33120A
## 29293 S33120D
## 29294 S33120S
## 29295 S33121A
## 29296 S33121D
## 29297 S33121S
## 29298 S33130A
## 29299 S33130D
## 29300 S33130S
## 29301 S33131A
## 29302 S33131D
## 29303 S33131S
## 29304 S33140A
## 29305 S33140D
## 29306 S33140S
## 29307 S33141A
## 29308 S33141D
## 29309 S33141S
## 29310 S332XXA
## 29311 S332XXD
## 29312 S332XXS
## 29313 S3330XA
## 29314 S3330XD
## 29315 S3330XS
## 29316 S3339XA
## 29317 S3339XD
## 29318 S3339XS
## 29319 S334XXA
## 29320 S334XXD
## 29321 S334XXS
## 29322 S335XXA
## 29323 S335XXD
## 29324 S335XXS
## 29325 S336XXA
## 29326 S336XXD
## 29327 S336XXS
## 29328 S338XXA
## 29329 S338XXD
## 29330 S338XXS
## 29331 S339XXA
## 29332 S339XXD
## 29333 S339XXS
## 29334 S3401XA
## 29335 S3401XD
## 29336 S3401XS
## 29337 S3402XA
## 29338 S3402XD
## 29339 S3402XS
## 29340 S34101A
## 29341 S34101D
## 29342 S34101S
## 29343 S34102A
## 29344 S34102D
## 29345 S34102S
## 29346 S34103A
## 29347 S34103D
## 29348 S34103S
## 29349 S34104A
## 29350 S34104D
## 29351 S34104S
## 29352 S34105A
## 29353 S34105D
## 29354 S34105S
## 29355 S34109A
## 29356 S34109D
## 29357 S34109S
## 29358 S34111A
## 29359 S34111D
## 29360 S34111S
## 29361 S34112A
## 29362 S34112D
## 29363 S34112S
## 29364 S34113A
## 29365 S34113D
## 29366 S34113S
## 29367 S34114A
## 29368 S34114D
## 29369 S34114S
## 29370 S34115A
## 29371 S34115D
## 29372 S34115S
## 29373 S34119A
## 29374 S34119D
## 29375 S34119S
## 29376 S34121A
## 29377 S34121D
## 29378 S34121S
## 29379 S34122A
## 29380 S34122D
## 29381 S34122S
## 29382 S34123A
## 29383 S34123D
## 29384 S34123S
## 29385 S34124A
## 29386 S34124D
## 29387 S34124S
## 29388 S34125A
## 29389 S34125D
## 29390 S34125S
## 29391 S34129A
## 29392 S34129D
## 29393 S34129S
## 29394 S34131A
## 29395 S34131D
## 29396 S34131S
## 29397 S34132A
## 29398 S34132D
## 29399 S34132S
## 29400 S34139A
## 29401 S34139D
## 29402 S34139S
## 29403 S3421XA
## 29404 S3421XD
## 29405 S3421XS
## 29406 S3422XA
## 29407 S3422XD
## 29408 S3422XS
## 29409 S343XXA
## 29410 S343XXD
## 29411 S343XXS
## 29412 S344XXA
## 29413 S344XXD
## 29414 S344XXS
## 29415 S345XXA
## 29416 S345XXD
## 29417 S345XXS
## 29418 S346XXA
## 29419 S346XXD
## 29420 S346XXS
## 29421 S348XXA
## 29422 S348XXD
## 29423 S348XXS
## 29424 S349XXA
## 29425 S349XXD
## 29426 S349XXS
## 29427 S3500XA
## 29428 S3500XD
## 29429 S3500XS
## 29430 S3501XA
## 29431 S3501XD
## 29432 S3501XS
## 29433 S3502XA
## 29434 S3502XD
## 29435 S3502XS
## 29436 S3509XA
## 29437 S3509XD
## 29438 S3509XS
## 29439 S3510XA
## 29440 S3510XD
## 29441 S3510XS
## 29442 S3511XA
## 29443 S3511XD
## 29444 S3511XS
## 29445 S3512XA
## 29446 S3512XD
## 29447 S3512XS
## 29448 S3519XA
## 29449 S3519XD
## 29450 S3519XS
## 29451 S35211A
## 29452 S35211D
## 29453 S35211S
## 29454 S35212A
## 29455 S35212D
## 29456 S35212S
## 29457 S35218A
## 29458 S35218D
## 29459 S35218S
## 29460 S35219A
## 29461 S35219D
## 29462 S35219S
## 29463 S35221A
## 29464 S35221D
## 29465 S35221S
## 29466 S35222A
## 29467 S35222D
## 29468 S35222S
## 29469 S35228A
## 29470 S35228D
## 29471 S35228S
## 29472 S35229A
## 29473 S35229D
## 29474 S35229S
## 29475 S35231A
## 29476 S35231D
## 29477 S35231S
## 29478 S35232A
## 29479 S35232D
## 29480 S35232S
## 29481 S35238A
## 29482 S35238D
## 29483 S35238S
## 29484 S35239A
## 29485 S35239D
## 29486 S35239S
## 29487 S35291A
## 29488 S35291D
## 29489 S35291S
## 29490 S35292A
## 29491 S35292D
## 29492 S35292S
## 29493 S35298A
## 29494 S35298D
## 29495 S35298S
## 29496 S35299A
## 29497 S35299D
## 29498 S35299S
## 29499 S35311A
## 29500 S35311D
## 29501 S35311S
## 29502 S35318A
## 29503 S35318D
## 29504 S35318S
## 29505 S35319A
## 29506 S35319D
## 29507 S35319S
## 29508 S35321A
## 29509 S35321D
## 29510 S35321S
## 29511 S35328A
## 29512 S35328D
## 29513 S35328S
## 29514 S35329A
## 29515 S35329D
## 29516 S35329S
## 29517 S35331A
## 29518 S35331D
## 29519 S35331S
## 29520 S35338A
## 29521 S35338D
## 29522 S35338S
## 29523 S35339A
## 29524 S35339D
## 29525 S35339S
## 29526 S35341A
## 29527 S35341D
## 29528 S35341S
## 29529 S35348A
## 29530 S35348D
## 29531 S35348S
## 29532 S35349A
## 29533 S35349D
## 29534 S35349S
## 29535 S35401A
## 29536 S35401D
## 29537 S35401S
## 29538 S35402A
## 29539 S35402D
## 29540 S35402S
## 29541 S35403A
## 29542 S35403D
## 29543 S35403S
## 29544 S35404A
## 29545 S35404D
## 29546 S35404S
## 29547 S35405A
## 29548 S35405D
## 29549 S35405S
## 29550 S35406A
## 29551 S35406D
## 29552 S35406S
## 29553 S35411A
## 29554 S35411D
## 29555 S35411S
## 29556 S35412A
## 29557 S35412D
## 29558 S35412S
## 29559 S35413A
## 29560 S35413D
## 29561 S35413S
## 29562 S35414A
## 29563 S35414D
## 29564 S35414S
## 29565 S35415A
## 29566 S35415D
## 29567 S35415S
## 29568 S35416A
## 29569 S35416D
## 29570 S35416S
## 29571 S35491A
## 29572 S35491D
## 29573 S35491S
## 29574 S35492A
## 29575 S35492D
## 29576 S35492S
## 29577 S35493A
## 29578 S35493D
## 29579 S35493S
## 29580 S35494A
## 29581 S35494D
## 29582 S35494S
## 29583 S35495A
## 29584 S35495D
## 29585 S35495S
## 29586 S35496A
## 29587 S35496D
## 29588 S35496S
## 29589 S3550XA
## 29590 S3550XD
## 29591 S3550XS
## 29592 S35511A
## 29593 S35511D
## 29594 S35511S
## 29595 S35512A
## 29596 S35512D
## 29597 S35512S
## 29598 S35513A
## 29599 S35513D
## 29600 S35513S
## 29601 S35514A
## 29602 S35514D
## 29603 S35514S
## 29604 S35515A
## 29605 S35515D
## 29606 S35515S
## 29607 S35516A
## 29608 S35516D
## 29609 S35516S
## 29610 S35531A
## 29611 S35531D
## 29612 S35531S
## 29613 S35532A
## 29614 S35532D
## 29615 S35532S
## 29616 S35533A
## 29617 S35533D
## 29618 S35533S
## 29619 S35534A
## 29620 S35534D
## 29621 S35534S
## 29622 S35535A
## 29623 S35535D
## 29624 S35535S
## 29625 S35536A
## 29626 S35536D
## 29627 S35536S
## 29628 S3559XA
## 29629 S3559XD
## 29630 S3559XS
## 29631 S358X1A
## 29632 S358X1D
## 29633 S358X1S
## 29634 S358X8A
## 29635 S358X8D
## 29636 S358X8S
## 29637 S358X9A
## 29638 S358X9D
## 29639 S358X9S
## 29640 S3590XA
## 29641 S3590XD
## 29642 S3590XS
## 29643 S3591XA
## 29644 S3591XD
## 29645 S3591XS
## 29646 S3599XA
## 29647 S3599XD
## 29648 S3599XS
## 29649 S3600XA
## 29650 S3600XD
## 29651 S3600XS
## 29652 S36020A
## 29653 S36020D
## 29654 S36020S
## 29655 S36021A
## 29656 S36021D
## 29657 S36021S
## 29658 S36029A
## 29659 S36029D
## 29660 S36029S
## 29661 S36030A
## 29662 S36030D
## 29663 S36030S
## 29664 S36031A
## 29665 S36031D
## 29666 S36031S
## 29667 S36032A
## 29668 S36032D
## 29669 S36032S
## 29670 S36039A
## 29671 S36039D
## 29672 S36039S
## 29673 S3609XA
## 29674 S3609XD
## 29675 S3609XS
## 29676 S36112A
## 29677 S36112D
## 29678 S36112S
## 29679 S36113A
## 29680 S36113D
## 29681 S36113S
## 29682 S36114A
## 29683 S36114D
## 29684 S36114S
## 29685 S36115A
## 29686 S36115D
## 29687 S36115S
## 29688 S36116A
## 29689 S36116D
## 29690 S36116S
## 29691 S36118A
## 29692 S36118D
## 29693 S36118S
## 29694 S36119A
## 29695 S36119D
## 29696 S36119S
## 29697 S36122A
## 29698 S36122D
## 29699 S36122S
## 29700 S36123A
## 29701 S36123D
## 29702 S36123S
## 29703 S36128A
## 29704 S36128D
## 29705 S36128S
## 29706 S36129A
## 29707 S36129D
## 29708 S36129S
## 29709 S3613XA
## 29710 S3613XD
## 29711 S3613XS
## 29712 S36200A
## 29713 S36200D
## 29714 S36200S
## 29715 S36201A
## 29716 S36201D
## 29717 S36201S
## 29718 S36202A
## 29719 S36202D
## 29720 S36202S
## 29721 S36209A
## 29722 S36209D
## 29723 S36209S
## 29724 S36220A
## 29725 S36220D
## 29726 S36220S
## 29727 S36221A
## 29728 S36221D
## 29729 S36221S
## 29730 S36222A
## 29731 S36222D
## 29732 S36222S
## 29733 S36229A
## 29734 S36229D
## 29735 S36229S
## 29736 S36230A
## 29737 S36230D
## 29738 S36230S
## 29739 S36231A
## 29740 S36231D
## 29741 S36231S
## 29742 S36232A
## 29743 S36232D
## 29744 S36232S
## 29745 S36239A
## 29746 S36239D
## 29747 S36239S
## 29748 S36240A
## 29749 S36240D
## 29750 S36240S
## 29751 S36241A
## 29752 S36241D
## 29753 S36241S
## 29754 S36242A
## 29755 S36242D
## 29756 S36242S
## 29757 S36249A
## 29758 S36249D
## 29759 S36249S
## 29760 S36250A
## 29761 S36250D
## 29762 S36250S
## 29763 S36251A
## 29764 S36251D
## 29765 S36251S
## 29766 S36252A
## 29767 S36252D
## 29768 S36252S
## 29769 S36259A
## 29770 S36259D
## 29771 S36259S
## 29772 S36260A
## 29773 S36260D
## 29774 S36260S
## 29775 S36261A
## 29776 S36261D
## 29777 S36261S
## 29778 S36262A
## 29779 S36262D
## 29780 S36262S
## 29781 S36269A
## 29782 S36269D
## 29783 S36269S
## 29784 S36290A
## 29785 S36290D
## 29786 S36290S
## 29787 S36291A
## 29788 S36291D
## 29789 S36291S
## 29790 S36292A
## 29791 S36292D
## 29792 S36292S
## 29793 S36299A
## 29794 S36299D
## 29795 S36299S
## 29796 S3630XA
## 29797 S3630XD
## 29798 S3630XS
## 29799 S3632XA
## 29800 S3632XD
## 29801 S3632XS
## 29802 S3633XA
## 29803 S3633XD
## 29804 S3633XS
## 29805 S3639XA
## 29806 S3639XD
## 29807 S3639XS
## 29808 S36400A
## 29809 S36400D
## 29810 S36400S
## 29811 S36408A
## 29812 S36408D
## 29813 S36408S
## 29814 S36409A
## 29815 S36409D
## 29816 S36409S
## 29817 S36410A
## 29818 S36410D
## 29819 S36410S
## 29820 S36418A
## 29821 S36418D
## 29822 S36418S
## 29823 S36419A
## 29824 S36419D
## 29825 S36419S
## 29826 S36420A
## 29827 S36420D
## 29828 S36420S
## 29829 S36428A
## 29830 S36428D
## 29831 S36428S
## 29832 S36429A
## 29833 S36429D
## 29834 S36429S
## 29835 S36430A
## 29836 S36430D
## 29837 S36430S
## 29838 S36438A
## 29839 S36438D
## 29840 S36438S
## 29841 S36439A
## 29842 S36439D
## 29843 S36439S
## 29844 S36490A
## 29845 S36490D
## 29846 S36490S
## 29847 S36498A
## 29848 S36498D
## 29849 S36498S
## 29850 S36499A
## 29851 S36499D
## 29852 S36499S
## 29853 S36500A
## 29854 S36500D
## 29855 S36500S
## 29856 S36501A
## 29857 S36501D
## 29858 S36501S
## 29859 S36502A
## 29860 S36502D
## 29861 S36502S
## 29862 S36503A
## 29863 S36503D
## 29864 S36503S
## 29865 S36508A
## 29866 S36508D
## 29867 S36508S
## 29868 S36509A
## 29869 S36509D
## 29870 S36509S
## 29871 S36510A
## 29872 S36510D
## 29873 S36510S
## 29874 S36511A
## 29875 S36511D
## 29876 S36511S
## 29877 S36512A
## 29878 S36512D
## 29879 S36512S
## 29880 S36513A
## 29881 S36513D
## 29882 S36513S
## 29883 S36518A
## 29884 S36518D
## 29885 S36518S
## 29886 S36519A
## 29887 S36519D
## 29888 S36519S
## 29889 S36520A
## 29890 S36520D
## 29891 S36520S
## 29892 S36521A
## 29893 S36521D
## 29894 S36521S
## 29895 S36522A
## 29896 S36522D
## 29897 S36522S
## 29898 S36523A
## 29899 S36523D
## 29900 S36523S
## 29901 S36528A
## 29902 S36528D
## 29903 S36528S
## 29904 S36529A
## 29905 S36529D
## 29906 S36529S
## 29907 S36530A
## 29908 S36530D
## 29909 S36530S
## 29910 S36531A
## 29911 S36531D
## 29912 S36531S
## 29913 S36532A
## 29914 S36532D
## 29915 S36532S
## 29916 S36533A
## 29917 S36533D
## 29918 S36533S
## 29919 S36538A
## 29920 S36538D
## 29921 S36538S
## 29922 S36539A
## 29923 S36539D
## 29924 S36539S
## 29925 S36590A
## 29926 S36590D
## 29927 S36590S
## 29928 S36591A
## 29929 S36591D
## 29930 S36591S
## 29931 S36592A
## 29932 S36592D
## 29933 S36592S
## 29934 S36593A
## 29935 S36593D
## 29936 S36593S
## 29937 S36598A
## 29938 S36598D
## 29939 S36598S
## 29940 S36599A
## 29941 S36599D
## 29942 S36599S
## 29943 S3660XA
## 29944 S3660XD
## 29945 S3660XS
## 29946 S3661XA
## 29947 S3661XD
## 29948 S3661XS
## 29949 S3662XA
## 29950 S3662XD
## 29951 S3662XS
## 29952 S3663XA
## 29953 S3663XD
## 29954 S3663XS
## 29955 S3669XA
## 29956 S3669XD
## 29957 S3669XS
## 29958 S3681XA
## 29959 S3681XD
## 29960 S3681XS
## 29961 S36892A
## 29962 S36892D
## 29963 S36892S
## 29964 S36893A
## 29965 S36893D
## 29966 S36893S
## 29967 S36898A
## 29968 S36898D
## 29969 S36898S
## 29970 S36899A
## 29971 S36899D
## 29972 S36899S
## 29973 S3690XA
## 29974 S3690XD
## 29975 S3690XS
## 29976 S3692XA
## 29977 S3692XD
## 29978 S3692XS
## 29979 S3693XA
## 29980 S3693XD
## 29981 S3693XS
## 29982 S3699XA
## 29983 S3699XD
## 29984 S3699XS
## 29985 S37001A
## 29986 S37001D
## 29987 S37001S
## 29988 S37002A
## 29989 S37002D
## 29990 S37002S
## 29991 S37009A
## 29992 S37009D
## 29993 S37009S
## 29994 S37011A
## 29995 S37011D
## 29996 S37011S
## 29997 S37012A
## 29998 S37012D
## 29999 S37012S
## 30000 S37019A
## 30001 S37019D
## 30002 S37019S
## 30003 S37021A
## 30004 S37021D
## 30005 S37021S
## 30006 S37022A
## 30007 S37022D
## 30008 S37022S
## 30009 S37029A
## 30010 S37029D
## 30011 S37029S
## 30012 S37031A
## 30013 S37031D
## 30014 S37031S
## 30015 S37032A
## 30016 S37032D
## 30017 S37032S
## 30018 S37039A
## 30019 S37039D
## 30020 S37039S
## 30021 S37041A
## 30022 S37041D
## 30023 S37041S
## 30024 S37042A
## 30025 S37042D
## 30026 S37042S
## 30027 S37049A
## 30028 S37049D
## 30029 S37049S
## 30030 S37051A
## 30031 S37051D
## 30032 S37051S
## 30033 S37052A
## 30034 S37052D
## 30035 S37052S
## 30036 S37059A
## 30037 S37059D
## 30038 S37059S
## 30039 S37061A
## 30040 S37061D
## 30041 S37061S
## 30042 S37062A
## 30043 S37062D
## 30044 S37062S
## 30045 S37069A
## 30046 S37069D
## 30047 S37069S
## 30048 S37091A
## 30049 S37091D
## 30050 S37091S
## 30051 S37092A
## 30052 S37092D
## 30053 S37092S
## 30054 S37099A
## 30055 S37099D
## 30056 S37099S
## 30057 S3710XA
## 30058 S3710XD
## 30059 S3710XS
## 30060 S3712XA
## 30061 S3712XD
## 30062 S3712XS
## 30063 S3713XA
## 30064 S3713XD
## 30065 S3713XS
## 30066 S3719XA
## 30067 S3719XD
## 30068 S3719XS
## 30069 S3720XA
## 30070 S3720XD
## 30071 S3720XS
## 30072 S3722XA
## 30073 S3722XD
## 30074 S3722XS
## 30075 S3723XA
## 30076 S3723XD
## 30077 S3723XS
## 30078 S3729XA
## 30079 S3729XD
## 30080 S3729XS
## 30081 S3730XA
## 30082 S3730XD
## 30083 S3730XS
## 30084 S3732XA
## 30085 S3732XD
## 30086 S3732XS
## 30087 S3733XA
## 30088 S3733XD
## 30089 S3733XS
## 30090 S3739XA
## 30091 S3739XD
## 30092 S3739XS
## 30093 S37401A
## 30094 S37401D
## 30095 S37401S
## 30096 S37402A
## 30097 S37402D
## 30098 S37402S
## 30099 S37409A
## 30100 S37409D
## 30101 S37409S
## 30102 S37421A
## 30103 S37421D
## 30104 S37421S
## 30105 S37422A
## 30106 S37422D
## 30107 S37422S
## 30108 S37429A
## 30109 S37429D
## 30110 S37429S
## 30111 S37431A
## 30112 S37431D
## 30113 S37431S
## 30114 S37432A
## 30115 S37432D
## 30116 S37432S
## 30117 S37439A
## 30118 S37439D
## 30119 S37439S
## 30120 S37491A
## 30121 S37491D
## 30122 S37491S
## 30123 S37492A
## 30124 S37492D
## 30125 S37492S
## 30126 S37499A
## 30127 S37499D
## 30128 S37499S
## 30129 S37501A
## 30130 S37501D
## 30131 S37501S
## 30132 S37502A
## 30133 S37502D
## 30134 S37502S
## 30135 S37509A
## 30136 S37509D
## 30137 S37509S
## 30138 S37511A
## 30139 S37511D
## 30140 S37511S
## 30141 S37512A
## 30142 S37512D
## 30143 S37512S
## 30144 S37519A
## 30145 S37519D
## 30146 S37519S
## 30147 S37521A
## 30148 S37521D
## 30149 S37521S
## 30150 S37522A
## 30151 S37522D
## 30152 S37522S
## 30153 S37529A
## 30154 S37529D
## 30155 S37529S
## 30156 S37531A
## 30157 S37531D
## 30158 S37531S
## 30159 S37532A
## 30160 S37532D
## 30161 S37532S
## 30162 S37539A
## 30163 S37539D
## 30164 S37539S
## 30165 S37591A
## 30166 S37591D
## 30167 S37591S
## 30168 S37592A
## 30169 S37592D
## 30170 S37592S
## 30171 S37599A
## 30172 S37599D
## 30173 S37599S
## 30174 S3760XA
## 30175 S3760XD
## 30176 S3760XS
## 30177 S3762XA
## 30178 S3762XD
## 30179 S3762XS
## 30180 S3763XA
## 30181 S3763XD
## 30182 S3763XS
## 30183 S3769XA
## 30184 S3769XD
## 30185 S3769XS
## 30186 S37812A
## 30187 S37812D
## 30188 S37812S
## 30189 S37813A
## 30190 S37813D
## 30191 S37813S
## 30192 S37818A
## 30193 S37818D
## 30194 S37818S
## 30195 S37819A
## 30196 S37819D
## 30197 S37819S
## 30198 S37822A
## 30199 S37822D
## 30200 S37822S
## 30201 S37823A
## 30202 S37823D
## 30203 S37823S
## 30204 S37828A
## 30205 S37828D
## 30206 S37828S
## 30207 S37829A
## 30208 S37829D
## 30209 S37829S
## 30210 S37892A
## 30211 S37892D
## 30212 S37892S
## 30213 S37893A
## 30214 S37893D
## 30215 S37893S
## 30216 S37898A
## 30217 S37898D
## 30218 S37898S
## 30219 S37899A
## 30220 S37899D
## 30221 S37899S
## 30222 S3790XA
## 30223 S3790XD
## 30224 S3790XS
## 30225 S3792XA
## 30226 S3792XD
## 30227 S3792XS
## 30228 S3793XA
## 30229 S3793XD
## 30230 S3793XS
## 30231 S3799XA
## 30232 S3799XD
## 30233 S3799XS
## 30234 S38001A
## 30235 S38001D
## 30236 S38001S
## 30237 S38002A
## 30238 S38002D
## 30239 S38002S
## 30240 S3801XA
## 30241 S3801XD
## 30242 S3801XS
## 30243 S3802XA
## 30244 S3802XD
## 30245 S3802XS
## 30246 S3803XA
## 30247 S3803XD
## 30248 S3803XS
## 30249 S381XXA
## 30250 S381XXD
## 30251 S381XXS
## 30252 S38211A
## 30253 S38211D
## 30254 S38211S
## 30255 S38212A
## 30256 S38212D
## 30257 S38212S
## 30258 S38221A
## 30259 S38221D
## 30260 S38221S
## 30261 S38222A
## 30262 S38222D
## 30263 S38222S
## 30264 S38231A
## 30265 S38231D
## 30266 S38231S
## 30267 S38232A
## 30268 S38232D
## 30269 S38232S
## 30270 S383XXA
## 30271 S383XXD
## 30272 S383XXS
## 30273 S39001A
## 30274 S39001D
## 30275 S39001S
## 30276 S39002A
## 30277 S39002D
## 30278 S39002S
## 30279 S39003A
## 30280 S39003D
## 30281 S39003S
## 30282 S39011A
## 30283 S39011D
## 30284 S39011S
## 30285 S39012A
## 30286 S39012D
## 30287 S39012S
## 30288 S39013A
## 30289 S39013D
## 30290 S39013S
## 30291 S39021A
## 30292 S39021D
## 30293 S39021S
## 30294 S39022A
## 30295 S39022D
## 30296 S39022S
## 30297 S39023A
## 30298 S39023D
## 30299 S39023S
## 30300 S39091A
## 30301 S39091D
## 30302 S39091S
## 30303 S39092A
## 30304 S39092D
## 30305 S39092S
## 30306 S39093A
## 30307 S39093D
## 30308 S39093S
## 30309 S3981XA
## 30310 S3981XD
## 30311 S3981XS
## 30312 S3982XA
## 30313 S3982XD
## 30314 S3982XS
## 30315 S3983XA
## 30316 S3983XD
## 30317 S3983XS
## 30318 S39840A
## 30319 S39840D
## 30320 S39840S
## 30321 S39848A
## 30322 S39848D
## 30323 S39848S
## 30324 S3991XA
## 30325 S3991XD
## 30326 S3991XS
## 30327 S3992XA
## 30328 S3992XD
## 30329 S3992XS
## 30330 S3993XA
## 30331 S3993XD
## 30332 S3993XS
## 30333 S3994XA
## 30334 S3994XD
## 30335 S3994XS
## 30336 S40011A
## 30337 S40011D
## 30338 S40011S
## 30339 S40012A
## 30340 S40012D
## 30341 S40012S
## 30342 S40019A
## 30343 S40019D
## 30344 S40019S
## 30345 S40021A
## 30346 S40021D
## 30347 S40021S
## 30348 S40022A
## 30349 S40022D
## 30350 S40022S
## 30351 S40029A
## 30352 S40029D
## 30353 S40029S
## 30354 S40211A
## 30355 S40211D
## 30356 S40211S
## 30357 S40212A
## 30358 S40212D
## 30359 S40212S
## 30360 S40219A
## 30361 S40219D
## 30362 S40219S
## 30363 S40221A
## 30364 S40221D
## 30365 S40221S
## 30366 S40222A
## 30367 S40222D
## 30368 S40222S
## 30369 S40229A
## 30370 S40229D
## 30371 S40229S
## 30372 S40241A
## 30373 S40241D
## 30374 S40241S
## 30375 S40242A
## 30376 S40242D
## 30377 S40242S
## 30378 S40249A
## 30379 S40249D
## 30380 S40249S
## 30381 S40251A
## 30382 S40251D
## 30383 S40251S
## 30384 S40252A
## 30385 S40252D
## 30386 S40252S
## 30387 S40259A
## 30388 S40259D
## 30389 S40259S
## 30390 S40261A
## 30391 S40261D
## 30392 S40261S
## 30393 S40262A
## 30394 S40262D
## 30395 S40262S
## 30396 S40269A
## 30397 S40269D
## 30398 S40269S
## 30399 S40271A
## 30400 S40271D
## 30401 S40271S
## 30402 S40272A
## 30403 S40272D
## 30404 S40272S
## 30405 S40279A
## 30406 S40279D
## 30407 S40279S
## 30408 S40811A
## 30409 S40811D
## 30410 S40811S
## 30411 S40812A
## 30412 S40812D
## 30413 S40812S
## 30414 S40819A
## 30415 S40819D
## 30416 S40819S
## 30417 S40821A
## 30418 S40821D
## 30419 S40821S
## 30420 S40822A
## 30421 S40822D
## 30422 S40822S
## 30423 S40829A
## 30424 S40829D
## 30425 S40829S
## 30426 S40841A
## 30427 S40841D
## 30428 S40841S
## 30429 S40842A
## 30430 S40842D
## 30431 S40842S
## 30432 S40849A
## 30433 S40849D
## 30434 S40849S
## 30435 S40851A
## 30436 S40851D
## 30437 S40851S
## 30438 S40852A
## 30439 S40852D
## 30440 S40852S
## 30441 S40859A
## 30442 S40859D
## 30443 S40859S
## 30444 S40861A
## 30445 S40861D
## 30446 S40861S
## 30447 S40862A
## 30448 S40862D
## 30449 S40862S
## 30450 S40869A
## 30451 S40869D
## 30452 S40869S
## 30453 S40871A
## 30454 S40871D
## 30455 S40871S
## 30456 S40872A
## 30457 S40872D
## 30458 S40872S
## 30459 S40879A
## 30460 S40879D
## 30461 S40879S
## 30462 S40911A
## 30463 S40911D
## 30464 S40911S
## 30465 S40912A
## 30466 S40912D
## 30467 S40912S
## 30468 S40919A
## 30469 S40919D
## 30470 S40919S
## 30471 S40921A
## 30472 S40921D
## 30473 S40921S
## 30474 S40922A
## 30475 S40922D
## 30476 S40922S
## 30477 S40929A
## 30478 S40929D
## 30479 S40929S
## 30480 S41001A
## 30481 S41001D
## 30482 S41001S
## 30483 S41002A
## 30484 S41002D
## 30485 S41002S
## 30486 S41009A
## 30487 S41009D
## 30488 S41009S
## 30489 S41011A
## 30490 S41011D
## 30491 S41011S
## 30492 S41012A
## 30493 S41012D
## 30494 S41012S
## 30495 S41019A
## 30496 S41019D
## 30497 S41019S
## 30498 S41021A
## 30499 S41021D
## 30500 S41021S
## 30501 S41022A
## 30502 S41022D
## 30503 S41022S
## 30504 S41029A
## 30505 S41029D
## 30506 S41029S
## 30507 S41031A
## 30508 S41031D
## 30509 S41031S
## 30510 S41032A
## 30511 S41032D
## 30512 S41032S
## 30513 S41039A
## 30514 S41039D
## 30515 S41039S
## 30516 S41041A
## 30517 S41041D
## 30518 S41041S
## 30519 S41042A
## 30520 S41042D
## 30521 S41042S
## 30522 S41049A
## 30523 S41049D
## 30524 S41049S
## 30525 S41051A
## 30526 S41051D
## 30527 S41051S
## 30528 S41052A
## 30529 S41052D
## 30530 S41052S
## 30531 S41059A
## 30532 S41059D
## 30533 S41059S
## 30534 S41101A
## 30535 S41101D
## 30536 S41101S
## 30537 S41102A
## 30538 S41102D
## 30539 S41102S
## 30540 S41109A
## 30541 S41109D
## 30542 S41109S
## 30543 S41111A
## 30544 S41111D
## 30545 S41111S
## 30546 S41112A
## 30547 S41112D
## 30548 S41112S
## 30549 S41119A
## 30550 S41119D
## 30551 S41119S
## 30552 S41121A
## 30553 S41121D
## 30554 S41121S
## 30555 S41122A
## 30556 S41122D
## 30557 S41122S
## 30558 S41129A
## 30559 S41129D
## 30560 S41129S
## 30561 S41131A
## 30562 S41131D
## 30563 S41131S
## 30564 S41132A
## 30565 S41132D
## 30566 S41132S
## 30567 S41139A
## 30568 S41139D
## 30569 S41139S
## 30570 S41141A
## 30571 S41141D
## 30572 S41141S
## 30573 S41142A
## 30574 S41142D
## 30575 S41142S
## 30576 S41149A
## 30577 S41149D
## 30578 S41149S
## 30579 S41151A
## 30580 S41151D
## 30581 S41151S
## 30582 S41152A
## 30583 S41152D
## 30584 S41152S
## 30585 S41159A
## 30586 S41159D
## 30587 S41159S
## 30588 S42001A
## 30589 S42001B
## 30590 S42001D
## 30591 S42001G
## 30592 S42001K
## 30593 S42001P
## 30594 S42001S
## 30595 S42002A
## 30596 S42002B
## 30597 S42002D
## 30598 S42002G
## 30599 S42002K
## 30600 S42002P
## 30601 S42002S
## 30602 S42009A
## 30603 S42009B
## 30604 S42009D
## 30605 S42009G
## 30606 S42009K
## 30607 S42009P
## 30608 S42009S
## 30609 S42011A
## 30610 S42011B
## 30611 S42011D
## 30612 S42011G
## 30613 S42011K
## 30614 S42011P
## 30615 S42011S
## 30616 S42012A
## 30617 S42012B
## 30618 S42012D
## 30619 S42012G
## 30620 S42012K
## 30621 S42012P
## 30622 S42012S
## 30623 S42013A
## 30624 S42013B
## 30625 S42013D
## 30626 S42013G
## 30627 S42013K
## 30628 S42013P
## 30629 S42013S
## 30630 S42014A
## 30631 S42014B
## 30632 S42014D
## 30633 S42014G
## 30634 S42014K
## 30635 S42014P
## 30636 S42014S
## 30637 S42015A
## 30638 S42015B
## 30639 S42015D
## 30640 S42015G
## 30641 S42015K
## 30642 S42015P
## 30643 S42015S
## 30644 S42016A
## 30645 S42016B
## 30646 S42016D
## 30647 S42016G
## 30648 S42016K
## 30649 S42016P
## 30650 S42016S
## 30651 S42017A
## 30652 S42017B
## 30653 S42017D
## 30654 S42017G
## 30655 S42017K
## 30656 S42017P
## 30657 S42017S
## 30658 S42018A
## 30659 S42018B
## 30660 S42018D
## 30661 S42018G
## 30662 S42018K
## 30663 S42018P
## 30664 S42018S
## 30665 S42019A
## 30666 S42019B
## 30667 S42019D
## 30668 S42019G
## 30669 S42019K
## 30670 S42019P
## 30671 S42019S
## 30672 S42021A
## 30673 S42021B
## 30674 S42021D
## 30675 S42021G
## 30676 S42021K
## 30677 S42021P
## 30678 S42021S
## 30679 S42022A
## 30680 S42022B
## 30681 S42022D
## 30682 S42022G
## 30683 S42022K
## 30684 S42022P
## 30685 S42022S
## 30686 S42023A
## 30687 S42023B
## 30688 S42023D
## 30689 S42023G
## 30690 S42023K
## 30691 S42023P
## 30692 S42023S
## 30693 S42024A
## 30694 S42024B
## 30695 S42024D
## 30696 S42024G
## 30697 S42024K
## 30698 S42024P
## 30699 S42024S
## 30700 S42025A
## 30701 S42025B
## 30702 S42025D
## 30703 S42025G
## 30704 S42025K
## 30705 S42025P
## 30706 S42025S
## 30707 S42026A
## 30708 S42026B
## 30709 S42026D
## 30710 S42026G
## 30711 S42026K
## 30712 S42026P
## 30713 S42026S
## 30714 S42031A
## 30715 S42031B
## 30716 S42031D
## 30717 S42031G
## 30718 S42031K
## 30719 S42031P
## 30720 S42031S
## 30721 S42032A
## 30722 S42032B
## 30723 S42032D
## 30724 S42032G
## 30725 S42032K
## 30726 S42032P
## 30727 S42032S
## 30728 S42033A
## 30729 S42033B
## 30730 S42033D
## 30731 S42033G
## 30732 S42033K
## 30733 S42033P
## 30734 S42033S
## 30735 S42034A
## 30736 S42034B
## 30737 S42034D
## 30738 S42034G
## 30739 S42034K
## 30740 S42034P
## 30741 S42034S
## 30742 S42035A
## 30743 S42035B
## 30744 S42035D
## 30745 S42035G
## 30746 S42035K
## 30747 S42035P
## 30748 S42035S
## 30749 S42036A
## 30750 S42036B
## 30751 S42036D
## 30752 S42036G
## 30753 S42036K
## 30754 S42036P
## 30755 S42036S
## 30756 S42101A
## 30757 S42101B
## 30758 S42101D
## 30759 S42101G
## 30760 S42101K
## 30761 S42101P
## 30762 S42101S
## 30763 S42102A
## 30764 S42102B
## 30765 S42102D
## 30766 S42102G
## 30767 S42102K
## 30768 S42102P
## 30769 S42102S
## 30770 S42109A
## 30771 S42109B
## 30772 S42109D
## 30773 S42109G
## 30774 S42109K
## 30775 S42109P
## 30776 S42109S
## 30777 S42111A
## 30778 S42111B
## 30779 S42111D
## 30780 S42111G
## 30781 S42111K
## 30782 S42111P
## 30783 S42111S
## 30784 S42112A
## 30785 S42112B
## 30786 S42112D
## 30787 S42112G
## 30788 S42112K
## 30789 S42112P
## 30790 S42112S
## 30791 S42113A
## 30792 S42113B
## 30793 S42113D
## 30794 S42113G
## 30795 S42113K
## 30796 S42113P
## 30797 S42113S
## 30798 S42114A
## 30799 S42114B
## 30800 S42114D
## 30801 S42114G
## 30802 S42114K
## 30803 S42114P
## 30804 S42114S
## 30805 S42115A
## 30806 S42115B
## 30807 S42115D
## 30808 S42115G
## 30809 S42115K
## 30810 S42115P
## 30811 S42115S
## 30812 S42116A
## 30813 S42116B
## 30814 S42116D
## 30815 S42116G
## 30816 S42116K
## 30817 S42116P
## 30818 S42116S
## 30819 S42121A
## 30820 S42121B
## 30821 S42121D
## 30822 S42121G
## 30823 S42121K
## 30824 S42121P
## 30825 S42121S
## 30826 S42122A
## 30827 S42122B
## 30828 S42122D
## 30829 S42122G
## 30830 S42122K
## 30831 S42122P
## 30832 S42122S
## 30833 S42123A
## 30834 S42123B
## 30835 S42123D
## 30836 S42123G
## 30837 S42123K
## 30838 S42123P
## 30839 S42123S
## 30840 S42124A
## 30841 S42124B
## 30842 S42124D
## 30843 S42124G
## 30844 S42124K
## 30845 S42124P
## 30846 S42124S
## 30847 S42125A
## 30848 S42125B
## 30849 S42125D
## 30850 S42125G
## 30851 S42125K
## 30852 S42125P
## 30853 S42125S
## 30854 S42126A
## 30855 S42126B
## 30856 S42126D
## 30857 S42126G
## 30858 S42126K
## 30859 S42126P
## 30860 S42126S
## 30861 S42131A
## 30862 S42131B
## 30863 S42131D
## 30864 S42131G
## 30865 S42131K
## 30866 S42131P
## 30867 S42131S
## 30868 S42132A
## 30869 S42132B
## 30870 S42132D
## 30871 S42132G
## 30872 S42132K
## 30873 S42132P
## 30874 S42132S
## 30875 S42133A
## 30876 S42133B
## 30877 S42133D
## 30878 S42133G
## 30879 S42133K
## 30880 S42133P
## 30881 S42133S
## 30882 S42134A
## 30883 S42134B
## 30884 S42134D
## 30885 S42134G
## 30886 S42134K
## 30887 S42134P
## 30888 S42134S
## 30889 S42135A
## 30890 S42135B
## 30891 S42135D
## 30892 S42135G
## 30893 S42135K
## 30894 S42135P
## 30895 S42135S
## 30896 S42136A
## 30897 S42136B
## 30898 S42136D
## 30899 S42136G
## 30900 S42136K
## 30901 S42136P
## 30902 S42136S
## 30903 S42141A
## 30904 S42141B
## 30905 S42141D
## 30906 S42141G
## 30907 S42141K
## 30908 S42141P
## 30909 S42141S
## 30910 S42142A
## 30911 S42142B
## 30912 S42142D
## 30913 S42142G
## 30914 S42142K
## 30915 S42142P
## 30916 S42142S
## 30917 S42143A
## 30918 S42143B
## 30919 S42143D
## 30920 S42143G
## 30921 S42143K
## 30922 S42143P
## 30923 S42143S
## 30924 S42144A
## 30925 S42144B
## 30926 S42144D
## 30927 S42144G
## 30928 S42144K
## 30929 S42144P
## 30930 S42144S
## 30931 S42145A
## 30932 S42145B
## 30933 S42145D
## 30934 S42145G
## 30935 S42145K
## 30936 S42145P
## 30937 S42145S
## 30938 S42146A
## 30939 S42146B
## 30940 S42146D
## 30941 S42146G
## 30942 S42146K
## 30943 S42146P
## 30944 S42146S
## 30945 S42151A
## 30946 S42151B
## 30947 S42151D
## 30948 S42151G
## 30949 S42151K
## 30950 S42151P
## 30951 S42151S
## 30952 S42152A
## 30953 S42152B
## 30954 S42152D
## 30955 S42152G
## 30956 S42152K
## 30957 S42152P
## 30958 S42152S
## 30959 S42153A
## 30960 S42153B
## 30961 S42153D
## 30962 S42153G
## 30963 S42153K
## 30964 S42153P
## 30965 S42153S
## 30966 S42154A
## 30967 S42154B
## 30968 S42154D
## 30969 S42154G
## 30970 S42154K
## 30971 S42154P
## 30972 S42154S
## 30973 S42155A
## 30974 S42155B
## 30975 S42155D
## 30976 S42155G
## 30977 S42155K
## 30978 S42155P
## 30979 S42155S
## 30980 S42156A
## 30981 S42156B
## 30982 S42156D
## 30983 S42156G
## 30984 S42156K
## 30985 S42156P
## 30986 S42156S
## 30987 S42191A
## 30988 S42191B
## 30989 S42191D
## 30990 S42191G
## 30991 S42191K
## 30992 S42191P
## 30993 S42191S
## 30994 S42192A
## 30995 S42192B
## 30996 S42192D
## 30997 S42192G
## 30998 S42192K
## 30999 S42192P
## 31000 S42192S
## 31001 S42199A
## 31002 S42199B
## 31003 S42199D
## 31004 S42199G
## 31005 S42199K
## 31006 S42199P
## 31007 S42199S
## 31008 S42201A
## 31009 S42201B
## 31010 S42201D
## 31011 S42201G
## 31012 S42201K
## 31013 S42201P
## 31014 S42201S
## 31015 S42202A
## 31016 S42202B
## 31017 S42202D
## 31018 S42202G
## 31019 S42202K
## 31020 S42202P
## 31021 S42202S
## 31022 S42209A
## 31023 S42209B
## 31024 S42209D
## 31025 S42209G
## 31026 S42209K
## 31027 S42209P
## 31028 S42209S
## 31029 S42211A
## 31030 S42211B
## 31031 S42211D
## 31032 S42211G
## 31033 S42211K
## 31034 S42211P
## 31035 S42211S
## 31036 S42212A
## 31037 S42212B
## 31038 S42212D
## 31039 S42212G
## 31040 S42212K
## 31041 S42212P
## 31042 S42212S
## 31043 S42213A
## 31044 S42213B
## 31045 S42213D
## 31046 S42213G
## 31047 S42213K
## 31048 S42213P
## 31049 S42213S
## 31050 S42214A
## 31051 S42214B
## 31052 S42214D
## 31053 S42214G
## 31054 S42214K
## 31055 S42214P
## 31056 S42214S
## 31057 S42215A
## 31058 S42215B
## 31059 S42215D
## 31060 S42215G
## 31061 S42215K
## 31062 S42215P
## 31063 S42215S
## 31064 S42216A
## 31065 S42216B
## 31066 S42216D
## 31067 S42216G
## 31068 S42216K
## 31069 S42216P
## 31070 S42216S
## 31071 S42221A
## 31072 S42221B
## 31073 S42221D
## 31074 S42221G
## 31075 S42221K
## 31076 S42221P
## 31077 S42221S
## 31078 S42222A
## 31079 S42222B
## 31080 S42222D
## 31081 S42222G
## 31082 S42222K
## 31083 S42222P
## 31084 S42222S
## 31085 S42223A
## 31086 S42223B
## 31087 S42223D
## 31088 S42223G
## 31089 S42223K
## 31090 S42223P
## 31091 S42223S
## 31092 S42224A
## 31093 S42224B
## 31094 S42224D
## 31095 S42224G
## 31096 S42224K
## 31097 S42224P
## 31098 S42224S
## 31099 S42225A
## 31100 S42225B
## 31101 S42225D
## 31102 S42225G
## 31103 S42225K
## 31104 S42225P
## 31105 S42225S
## 31106 S42226A
## 31107 S42226B
## 31108 S42226D
## 31109 S42226G
## 31110 S42226K
## 31111 S42226P
## 31112 S42226S
## 31113 S42231A
## 31114 S42231B
## 31115 S42231D
## 31116 S42231G
## 31117 S42231K
## 31118 S42231P
## 31119 S42231S
## 31120 S42232A
## 31121 S42232B
## 31122 S42232D
## 31123 S42232G
## 31124 S42232K
## 31125 S42232P
## 31126 S42232S
## 31127 S42239A
## 31128 S42239B
## 31129 S42239D
## 31130 S42239G
## 31131 S42239K
## 31132 S42239P
## 31133 S42239S
## 31134 S42241A
## 31135 S42241B
## 31136 S42241D
## 31137 S42241G
## 31138 S42241K
## 31139 S42241P
## 31140 S42241S
## 31141 S42242A
## 31142 S42242B
## 31143 S42242D
## 31144 S42242G
## 31145 S42242K
## 31146 S42242P
## 31147 S42242S
## 31148 S42249A
## 31149 S42249B
## 31150 S42249D
## 31151 S42249G
## 31152 S42249K
## 31153 S42249P
## 31154 S42249S
## 31155 S42251A
## 31156 S42251B
## 31157 S42251D
## 31158 S42251G
## 31159 S42251K
## 31160 S42251P
## 31161 S42251S
## 31162 S42252A
## 31163 S42252B
## 31164 S42252D
## 31165 S42252G
## 31166 S42252K
## 31167 S42252P
## 31168 S42252S
## 31169 S42253A
## 31170 S42253B
## 31171 S42253D
## 31172 S42253G
## 31173 S42253K
## 31174 S42253P
## 31175 S42253S
## 31176 S42254A
## 31177 S42254B
## 31178 S42254D
## 31179 S42254G
## 31180 S42254K
## 31181 S42254P
## 31182 S42254S
## 31183 S42255A
## 31184 S42255B
## 31185 S42255D
## 31186 S42255G
## 31187 S42255K
## 31188 S42255P
## 31189 S42255S
## 31190 S42256A
## 31191 S42256B
## 31192 S42256D
## 31193 S42256G
## 31194 S42256K
## 31195 S42256P
## 31196 S42256S
## 31197 S42261A
## 31198 S42261B
## 31199 S42261D
## 31200 S42261G
## 31201 S42261K
## 31202 S42261P
## 31203 S42261S
## 31204 S42262A
## 31205 S42262B
## 31206 S42262D
## 31207 S42262G
## 31208 S42262K
## 31209 S42262P
## 31210 S42262S
## 31211 S42263A
## 31212 S42263B
## 31213 S42263D
## 31214 S42263G
## 31215 S42263K
## 31216 S42263P
## 31217 S42263S
## 31218 S42264A
## 31219 S42264B
## 31220 S42264D
## 31221 S42264G
## 31222 S42264K
## 31223 S42264P
## 31224 S42264S
## 31225 S42265A
## 31226 S42265B
## 31227 S42265D
## 31228 S42265G
## 31229 S42265K
## 31230 S42265P
## 31231 S42265S
## 31232 S42266A
## 31233 S42266B
## 31234 S42266D
## 31235 S42266G
## 31236 S42266K
## 31237 S42266P
## 31238 S42266S
## 31239 S42271A
## 31240 S42271D
## 31241 S42271G
## 31242 S42271K
## 31243 S42271P
## 31244 S42271S
## 31245 S42272A
## 31246 S42272D
## 31247 S42272G
## 31248 S42272K
## 31249 S42272P
## 31250 S42272S
## 31251 S42279A
## 31252 S42279D
## 31253 S42279G
## 31254 S42279K
## 31255 S42279P
## 31256 S42279S
## 31257 S42291A
## 31258 S42291B
## 31259 S42291D
## 31260 S42291G
## 31261 S42291K
## 31262 S42291P
## 31263 S42291S
## 31264 S42292A
## 31265 S42292B
## 31266 S42292D
## 31267 S42292G
## 31268 S42292K
## 31269 S42292P
## 31270 S42292S
## 31271 S42293A
## 31272 S42293B
## 31273 S42293D
## 31274 S42293G
## 31275 S42293K
## 31276 S42293P
## 31277 S42293S
## 31278 S42294A
## 31279 S42294B
## 31280 S42294D
## 31281 S42294G
## 31282 S42294K
## 31283 S42294P
## 31284 S42294S
## 31285 S42295A
## 31286 S42295B
## 31287 S42295D
## 31288 S42295G
## 31289 S42295K
## 31290 S42295P
## 31291 S42295S
## 31292 S42296A
## 31293 S42296B
## 31294 S42296D
## 31295 S42296G
## 31296 S42296K
## 31297 S42296P
## 31298 S42296S
## 31299 S42301A
## 31300 S42301B
## 31301 S42301D
## 31302 S42301G
## 31303 S42301K
## 31304 S42301P
## 31305 S42301S
## 31306 S42302A
## 31307 S42302B
## 31308 S42302D
## 31309 S42302G
## 31310 S42302K
## 31311 S42302P
## 31312 S42302S
## 31313 S42309A
## 31314 S42309B
## 31315 S42309D
## 31316 S42309G
## 31317 S42309K
## 31318 S42309P
## 31319 S42309S
## 31320 S42311A
## 31321 S42311D
## 31322 S42311G
## 31323 S42311K
## 31324 S42311P
## 31325 S42311S
## 31326 S42312A
## 31327 S42312D
## 31328 S42312G
## 31329 S42312K
## 31330 S42312P
## 31331 S42312S
## 31332 S42319A
## 31333 S42319D
## 31334 S42319G
## 31335 S42319K
## 31336 S42319P
## 31337 S42319S
## 31338 S42321A
## 31339 S42321B
## 31340 S42321D
## 31341 S42321G
## 31342 S42321K
## 31343 S42321P
## 31344 S42321S
## 31345 S42322A
## 31346 S42322B
## 31347 S42322D
## 31348 S42322G
## 31349 S42322K
## 31350 S42322P
## 31351 S42322S
## 31352 S42323A
## 31353 S42323B
## 31354 S42323D
## 31355 S42323G
## 31356 S42323K
## 31357 S42323P
## 31358 S42323S
## 31359 S42324A
## 31360 S42324B
## 31361 S42324D
## 31362 S42324G
## 31363 S42324K
## 31364 S42324P
## 31365 S42324S
## 31366 S42325A
## 31367 S42325B
## 31368 S42325D
## 31369 S42325G
## 31370 S42325K
## 31371 S42325P
## 31372 S42325S
## 31373 S42326A
## 31374 S42326B
## 31375 S42326D
## 31376 S42326G
## 31377 S42326K
## 31378 S42326P
## 31379 S42326S
## 31380 S42331A
## 31381 S42331B
## 31382 S42331D
## 31383 S42331G
## 31384 S42331K
## 31385 S42331P
## 31386 S42331S
## 31387 S42332A
## 31388 S42332B
## 31389 S42332D
## 31390 S42332G
## 31391 S42332K
## 31392 S42332P
## 31393 S42332S
## 31394 S42333A
## 31395 S42333B
## 31396 S42333D
## 31397 S42333G
## 31398 S42333K
## 31399 S42333P
## 31400 S42333S
## 31401 S42334A
## 31402 S42334B
## 31403 S42334D
## 31404 S42334G
## 31405 S42334K
## 31406 S42334P
## 31407 S42334S
## 31408 S42335A
## 31409 S42335B
## 31410 S42335D
## 31411 S42335G
## 31412 S42335K
## 31413 S42335P
## 31414 S42335S
## 31415 S42336A
## 31416 S42336B
## 31417 S42336D
## 31418 S42336G
## 31419 S42336K
## 31420 S42336P
## 31421 S42336S
## 31422 S42341A
## 31423 S42341B
## 31424 S42341D
## 31425 S42341G
## 31426 S42341K
## 31427 S42341P
## 31428 S42341S
## 31429 S42342A
## 31430 S42342B
## 31431 S42342D
## 31432 S42342G
## 31433 S42342K
## 31434 S42342P
## 31435 S42342S
## 31436 S42343A
## 31437 S42343B
## 31438 S42343D
## 31439 S42343G
## 31440 S42343K
## 31441 S42343P
## 31442 S42343S
## 31443 S42344A
## 31444 S42344B
## 31445 S42344D
## 31446 S42344G
## 31447 S42344K
## 31448 S42344P
## 31449 S42344S
## 31450 S42345A
## 31451 S42345B
## 31452 S42345D
## 31453 S42345G
## 31454 S42345K
## 31455 S42345P
## 31456 S42345S
## 31457 S42346A
## 31458 S42346B
## 31459 S42346D
## 31460 S42346G
## 31461 S42346K
## 31462 S42346P
## 31463 S42346S
## 31464 S42351A
## 31465 S42351B
## 31466 S42351D
## 31467 S42351G
## 31468 S42351K
## 31469 S42351P
## 31470 S42351S
## 31471 S42352A
## 31472 S42352B
## 31473 S42352D
## 31474 S42352G
## 31475 S42352K
## 31476 S42352P
## 31477 S42352S
## 31478 S42353A
## 31479 S42353B
## 31480 S42353D
## 31481 S42353G
## 31482 S42353K
## 31483 S42353P
## 31484 S42353S
## 31485 S42354A
## 31486 S42354B
## 31487 S42354D
## 31488 S42354G
## 31489 S42354K
## 31490 S42354P
## 31491 S42354S
## 31492 S42355A
## 31493 S42355B
## 31494 S42355D
## 31495 S42355G
## 31496 S42355K
## 31497 S42355P
## 31498 S42355S
## 31499 S42356A
## 31500 S42356B
## 31501 S42356D
## 31502 S42356G
## 31503 S42356K
## 31504 S42356P
## 31505 S42356S
## 31506 S42361A
## 31507 S42361B
## 31508 S42361D
## 31509 S42361G
## 31510 S42361K
## 31511 S42361P
## 31512 S42361S
## 31513 S42362A
## 31514 S42362B
## 31515 S42362D
## 31516 S42362G
## 31517 S42362K
## 31518 S42362P
## 31519 S42362S
## 31520 S42363A
## 31521 S42363B
## 31522 S42363D
## 31523 S42363G
## 31524 S42363K
## 31525 S42363P
## 31526 S42363S
## 31527 S42364A
## 31528 S42364B
## 31529 S42364D
## 31530 S42364G
## 31531 S42364K
## 31532 S42364P
## 31533 S42364S
## 31534 S42365A
## 31535 S42365B
## 31536 S42365D
## 31537 S42365G
## 31538 S42365K
## 31539 S42365P
## 31540 S42365S
## 31541 S42366A
## 31542 S42366B
## 31543 S42366D
## 31544 S42366G
## 31545 S42366K
## 31546 S42366P
## 31547 S42366S
## 31548 S42391A
## 31549 S42391B
## 31550 S42391D
## 31551 S42391G
## 31552 S42391K
## 31553 S42391P
## 31554 S42391S
## 31555 S42392A
## 31556 S42392B
## 31557 S42392D
## 31558 S42392G
## 31559 S42392K
## 31560 S42392P
## 31561 S42392S
## 31562 S42399A
## 31563 S42399B
## 31564 S42399D
## 31565 S42399G
## 31566 S42399K
## 31567 S42399P
## 31568 S42399S
## 31569 S42401A
## 31570 S42401B
## 31571 S42401D
## 31572 S42401G
## 31573 S42401K
## 31574 S42401P
## 31575 S42401S
## 31576 S42402A
## 31577 S42402B
## 31578 S42402D
## 31579 S42402G
## 31580 S42402K
## 31581 S42402P
## 31582 S42402S
## 31583 S42409A
## 31584 S42409B
## 31585 S42409D
## 31586 S42409G
## 31587 S42409K
## 31588 S42409P
## 31589 S42409S
## 31590 S42411A
## 31591 S42411B
## 31592 S42411D
## 31593 S42411G
## 31594 S42411K
## 31595 S42411P
## 31596 S42411S
## 31597 S42412A
## 31598 S42412B
## 31599 S42412D
## 31600 S42412G
## 31601 S42412K
## 31602 S42412P
## 31603 S42412S
## 31604 S42413A
## 31605 S42413B
## 31606 S42413D
## 31607 S42413G
## 31608 S42413K
## 31609 S42413P
## 31610 S42413S
## 31611 S42414A
## 31612 S42414B
## 31613 S42414D
## 31614 S42414G
## 31615 S42414K
## 31616 S42414P
## 31617 S42414S
## 31618 S42415A
## 31619 S42415B
## 31620 S42415D
## 31621 S42415G
## 31622 S42415K
## 31623 S42415P
## 31624 S42415S
## 31625 S42416A
## 31626 S42416B
## 31627 S42416D
## 31628 S42416G
## 31629 S42416K
## 31630 S42416P
## 31631 S42416S
## 31632 S42421A
## 31633 S42421B
## 31634 S42421D
## 31635 S42421G
## 31636 S42421K
## 31637 S42421P
## 31638 S42421S
## 31639 S42422A
## 31640 S42422B
## 31641 S42422D
## 31642 S42422G
## 31643 S42422K
## 31644 S42422P
## 31645 S42422S
## 31646 S42423A
## 31647 S42423B
## 31648 S42423D
## 31649 S42423G
## 31650 S42423K
## 31651 S42423P
## 31652 S42423S
## 31653 S42424A
## 31654 S42424B
## 31655 S42424D
## 31656 S42424G
## 31657 S42424K
## 31658 S42424P
## 31659 S42424S
## 31660 S42425A
## 31661 S42425B
## 31662 S42425D
## 31663 S42425G
## 31664 S42425K
## 31665 S42425P
## 31666 S42425S
## 31667 S42426A
## 31668 S42426B
## 31669 S42426D
## 31670 S42426G
## 31671 S42426K
## 31672 S42426P
## 31673 S42426S
## 31674 S42431A
## 31675 S42431B
## 31676 S42431D
## 31677 S42431G
## 31678 S42431K
## 31679 S42431P
## 31680 S42431S
## 31681 S42432A
## 31682 S42432B
## 31683 S42432D
## 31684 S42432G
## 31685 S42432K
## 31686 S42432P
## 31687 S42432S
## 31688 S42433A
## 31689 S42433B
## 31690 S42433D
## 31691 S42433G
## 31692 S42433K
## 31693 S42433P
## 31694 S42433S
## 31695 S42434A
## 31696 S42434B
## 31697 S42434D
## 31698 S42434G
## 31699 S42434K
## 31700 S42434P
## 31701 S42434S
## 31702 S42435A
## 31703 S42435B
## 31704 S42435D
## 31705 S42435G
## 31706 S42435K
## 31707 S42435P
## 31708 S42435S
## 31709 S42436A
## 31710 S42436B
## 31711 S42436D
## 31712 S42436G
## 31713 S42436K
## 31714 S42436P
## 31715 S42436S
## 31716 S42441A
## 31717 S42441B
## 31718 S42441D
## 31719 S42441G
## 31720 S42441K
## 31721 S42441P
## 31722 S42441S
## 31723 S42442A
## 31724 S42442B
## 31725 S42442D
## 31726 S42442G
## 31727 S42442K
## 31728 S42442P
## 31729 S42442S
## 31730 S42443A
## 31731 S42443B
## 31732 S42443D
## 31733 S42443G
## 31734 S42443K
## 31735 S42443P
## 31736 S42443S
## 31737 S42444A
## 31738 S42444B
## 31739 S42444D
## 31740 S42444G
## 31741 S42444K
## 31742 S42444P
## 31743 S42444S
## 31744 S42445A
## 31745 S42445B
## 31746 S42445D
## 31747 S42445G
## 31748 S42445K
## 31749 S42445P
## 31750 S42445S
## 31751 S42446A
## 31752 S42446B
## 31753 S42446D
## 31754 S42446G
## 31755 S42446K
## 31756 S42446P
## 31757 S42446S
## 31758 S42447A
## 31759 S42447B
## 31760 S42447D
## 31761 S42447G
## 31762 S42447K
## 31763 S42447P
## 31764 S42447S
## 31765 S42448A
## 31766 S42448B
## 31767 S42448D
## 31768 S42448G
## 31769 S42448K
## 31770 S42448P
## 31771 S42448S
## 31772 S42449A
## 31773 S42449B
## 31774 S42449D
## 31775 S42449G
## 31776 S42449K
## 31777 S42449P
## 31778 S42449S
## 31779 S42451A
## 31780 S42451B
## 31781 S42451D
## 31782 S42451G
## 31783 S42451K
## 31784 S42451P
## 31785 S42451S
## 31786 S42452A
## 31787 S42452B
## 31788 S42452D
## 31789 S42452G
## 31790 S42452K
## 31791 S42452P
## 31792 S42452S
## 31793 S42453A
## 31794 S42453B
## 31795 S42453D
## 31796 S42453G
## 31797 S42453K
## 31798 S42453P
## 31799 S42453S
## 31800 S42454A
## 31801 S42454B
## 31802 S42454D
## 31803 S42454G
## 31804 S42454K
## 31805 S42454P
## 31806 S42454S
## 31807 S42455A
## 31808 S42455B
## 31809 S42455D
## 31810 S42455G
## 31811 S42455K
## 31812 S42455P
## 31813 S42455S
## 31814 S42456A
## 31815 S42456B
## 31816 S42456D
## 31817 S42456G
## 31818 S42456K
## 31819 S42456P
## 31820 S42456S
## 31821 S42461A
## 31822 S42461B
## 31823 S42461D
## 31824 S42461G
## 31825 S42461K
## 31826 S42461P
## 31827 S42461S
## 31828 S42462A
## 31829 S42462B
## 31830 S42462D
## 31831 S42462G
## 31832 S42462K
## 31833 S42462P
## 31834 S42462S
## 31835 S42463A
## 31836 S42463B
## 31837 S42463D
## 31838 S42463G
## 31839 S42463K
## 31840 S42463P
## 31841 S42463S
## 31842 S42464A
## 31843 S42464B
## 31844 S42464D
## 31845 S42464G
## 31846 S42464K
## 31847 S42464P
## 31848 S42464S
## 31849 S42465A
## 31850 S42465B
## 31851 S42465D
## 31852 S42465G
## 31853 S42465K
## 31854 S42465P
## 31855 S42465S
## 31856 S42466A
## 31857 S42466B
## 31858 S42466D
## 31859 S42466G
## 31860 S42466K
## 31861 S42466P
## 31862 S42466S
## 31863 S42471A
## 31864 S42471B
## 31865 S42471D
## 31866 S42471G
## 31867 S42471K
## 31868 S42471P
## 31869 S42471S
## 31870 S42472A
## 31871 S42472B
## 31872 S42472D
## 31873 S42472G
## 31874 S42472K
## 31875 S42472P
## 31876 S42472S
## 31877 S42473A
## 31878 S42473B
## 31879 S42473D
## 31880 S42473G
## 31881 S42473K
## 31882 S42473P
## 31883 S42473S
## 31884 S42474A
## 31885 S42474B
## 31886 S42474D
## 31887 S42474G
## 31888 S42474K
## 31889 S42474P
## 31890 S42474S
## 31891 S42475A
## 31892 S42475B
## 31893 S42475D
## 31894 S42475G
## 31895 S42475K
## 31896 S42475P
## 31897 S42475S
## 31898 S42476A
## 31899 S42476B
## 31900 S42476D
## 31901 S42476G
## 31902 S42476K
## 31903 S42476P
## 31904 S42476S
## 31905 S42481A
## 31906 S42481D
## 31907 S42481G
## 31908 S42481K
## 31909 S42481P
## 31910 S42481S
## 31911 S42482A
## 31912 S42482D
## 31913 S42482G
## 31914 S42482K
## 31915 S42482P
## 31916 S42482S
## 31917 S42489A
## 31918 S42489D
## 31919 S42489G
## 31920 S42489K
## 31921 S42489P
## 31922 S42489S
## 31923 S42491A
## 31924 S42491B
## 31925 S42491D
## 31926 S42491G
## 31927 S42491K
## 31928 S42491P
## 31929 S42491S
## 31930 S42492A
## 31931 S42492B
## 31932 S42492D
## 31933 S42492G
## 31934 S42492K
## 31935 S42492P
## 31936 S42492S
## 31937 S42493A
## 31938 S42493B
## 31939 S42493D
## 31940 S42493G
## 31941 S42493K
## 31942 S42493P
## 31943 S42493S
## 31944 S42494A
## 31945 S42494B
## 31946 S42494D
## 31947 S42494G
## 31948 S42494K
## 31949 S42494P
## 31950 S42494S
## 31951 S42495A
## 31952 S42495B
## 31953 S42495D
## 31954 S42495G
## 31955 S42495K
## 31956 S42495P
## 31957 S42495S
## 31958 S42496A
## 31959 S42496B
## 31960 S42496D
## 31961 S42496G
## 31962 S42496K
## 31963 S42496P
## 31964 S42496S
## 31965 S4290XA
## 31966 S4290XB
## 31967 S4290XD
## 31968 S4290XG
## 31969 S4290XK
## 31970 S4290XP
## 31971 S4290XS
## 31972 S4291XA
## 31973 S4291XB
## 31974 S4291XD
## 31975 S4291XG
## 31976 S4291XK
## 31977 S4291XP
## 31978 S4291XS
## 31979 S4292XA
## 31980 S4292XB
## 31981 S4292XD
## 31982 S4292XG
## 31983 S4292XK
## 31984 S4292XP
## 31985 S4292XS
## 31986 S43001A
## 31987 S43001D
## 31988 S43001S
## 31989 S43002A
## 31990 S43002D
## 31991 S43002S
## 31992 S43003A
## 31993 S43003D
## 31994 S43003S
## 31995 S43004A
## 31996 S43004D
## 31997 S43004S
## 31998 S43005A
## 31999 S43005D
## 32000 S43005S
## 32001 S43006A
## 32002 S43006D
## 32003 S43006S
## 32004 S43011A
## 32005 S43011D
## 32006 S43011S
## 32007 S43012A
## 32008 S43012D
## 32009 S43012S
## 32010 S43013A
## 32011 S43013D
## 32012 S43013S
## 32013 S43014A
## 32014 S43014D
## 32015 S43014S
## 32016 S43015A
## 32017 S43015D
## 32018 S43015S
## 32019 S43016A
## 32020 S43016D
## 32021 S43016S
## 32022 S43021A
## 32023 S43021D
## 32024 S43021S
## 32025 S43022A
## 32026 S43022D
## 32027 S43022S
## 32028 S43023A
## 32029 S43023D
## 32030 S43023S
## 32031 S43024A
## 32032 S43024D
## 32033 S43024S
## 32034 S43025A
## 32035 S43025D
## 32036 S43025S
## 32037 S43026A
## 32038 S43026D
## 32039 S43026S
## 32040 S43031A
## 32041 S43031D
## 32042 S43031S
## 32043 S43032A
## 32044 S43032D
## 32045 S43032S
## 32046 S43033A
## 32047 S43033D
## 32048 S43033S
## 32049 S43034A
## 32050 S43034D
## 32051 S43034S
## 32052 S43035A
## 32053 S43035D
## 32054 S43035S
## 32055 S43036A
## 32056 S43036D
## 32057 S43036S
## 32058 S43081A
## 32059 S43081D
## 32060 S43081S
## 32061 S43082A
## 32062 S43082D
## 32063 S43082S
## 32064 S43083A
## 32065 S43083D
## 32066 S43083S
## 32067 S43084A
## 32068 S43084D
## 32069 S43084S
## 32070 S43085A
## 32071 S43085D
## 32072 S43085S
## 32073 S43086A
## 32074 S43086D
## 32075 S43086S
## 32076 S43101A
## 32077 S43101D
## 32078 S43101S
## 32079 S43102A
## 32080 S43102D
## 32081 S43102S
## 32082 S43109A
## 32083 S43109D
## 32084 S43109S
## 32085 S43111A
## 32086 S43111D
## 32087 S43111S
## 32088 S43112A
## 32089 S43112D
## 32090 S43112S
## 32091 S43119A
## 32092 S43119D
## 32093 S43119S
## 32094 S43121A
## 32095 S43121D
## 32096 S43121S
## 32097 S43122A
## 32098 S43122D
## 32099 S43122S
## 32100 S43129A
## 32101 S43129D
## 32102 S43129S
## 32103 S43131A
## 32104 S43131D
## 32105 S43131S
## 32106 S43132A
## 32107 S43132D
## 32108 S43132S
## 32109 S43139A
## 32110 S43139D
## 32111 S43139S
## 32112 S43141A
## 32113 S43141D
## 32114 S43141S
## 32115 S43142A
## 32116 S43142D
## 32117 S43142S
## 32118 S43149A
## 32119 S43149D
## 32120 S43149S
## 32121 S43151A
## 32122 S43151D
## 32123 S43151S
## 32124 S43152A
## 32125 S43152D
## 32126 S43152S
## 32127 S43159A
## 32128 S43159D
## 32129 S43159S
## 32130 S43201A
## 32131 S43201D
## 32132 S43201S
## 32133 S43202A
## 32134 S43202D
## 32135 S43202S
## 32136 S43203A
## 32137 S43203D
## 32138 S43203S
## 32139 S43204A
## 32140 S43204D
## 32141 S43204S
## 32142 S43205A
## 32143 S43205D
## 32144 S43205S
## 32145 S43206A
## 32146 S43206D
## 32147 S43206S
## 32148 S43211A
## 32149 S43211D
## 32150 S43211S
## 32151 S43212A
## 32152 S43212D
## 32153 S43212S
## 32154 S43213A
## 32155 S43213D
## 32156 S43213S
## 32157 S43214A
## 32158 S43214D
## 32159 S43214S
## 32160 S43215A
## 32161 S43215D
## 32162 S43215S
## 32163 S43216A
## 32164 S43216D
## 32165 S43216S
## 32166 S43221A
## 32167 S43221D
## 32168 S43221S
## 32169 S43222A
## 32170 S43222D
## 32171 S43222S
## 32172 S43223A
## 32173 S43223D
## 32174 S43223S
## 32175 S43224A
## 32176 S43224D
## 32177 S43224S
## 32178 S43225A
## 32179 S43225D
## 32180 S43225S
## 32181 S43226A
## 32182 S43226D
## 32183 S43226S
## 32184 S43301A
## 32185 S43301D
## 32186 S43301S
## 32187 S43302A
## 32188 S43302D
## 32189 S43302S
## 32190 S43303A
## 32191 S43303D
## 32192 S43303S
## 32193 S43304A
## 32194 S43304D
## 32195 S43304S
## 32196 S43305A
## 32197 S43305D
## 32198 S43305S
## 32199 S43306A
## 32200 S43306D
## 32201 S43306S
## 32202 S43311A
## 32203 S43311D
## 32204 S43311S
## 32205 S43312A
## 32206 S43312D
## 32207 S43312S
## 32208 S43313A
## 32209 S43313D
## 32210 S43313S
## 32211 S43314A
## 32212 S43314D
## 32213 S43314S
## 32214 S43315A
## 32215 S43315D
## 32216 S43315S
## 32217 S43316A
## 32218 S43316D
## 32219 S43316S
## 32220 S43391A
## 32221 S43391D
## 32222 S43391S
## 32223 S43392A
## 32224 S43392D
## 32225 S43392S
## 32226 S43393A
## 32227 S43393D
## 32228 S43393S
## 32229 S43394A
## 32230 S43394D
## 32231 S43394S
## 32232 S43395A
## 32233 S43395D
## 32234 S43395S
## 32235 S43396A
## 32236 S43396D
## 32237 S43396S
## 32238 S43401A
## 32239 S43401D
## 32240 S43401S
## 32241 S43402A
## 32242 S43402D
## 32243 S43402S
## 32244 S43409A
## 32245 S43409D
## 32246 S43409S
## 32247 S43411A
## 32248 S43411D
## 32249 S43411S
## 32250 S43412A
## 32251 S43412D
## 32252 S43412S
## 32253 S43419A
## 32254 S43419D
## 32255 S43419S
## 32256 S43421A
## 32257 S43421D
## 32258 S43421S
## 32259 S43422A
## 32260 S43422D
## 32261 S43422S
## 32262 S43429A
## 32263 S43429D
## 32264 S43429S
## 32265 S43431A
## 32266 S43431D
## 32267 S43431S
## 32268 S43432A
## 32269 S43432D
## 32270 S43432S
## 32271 S43439A
## 32272 S43439D
## 32273 S43439S
## 32274 S43491A
## 32275 S43491D
## 32276 S43491S
## 32277 S43492A
## 32278 S43492D
## 32279 S43492S
## 32280 S43499A
## 32281 S43499D
## 32282 S43499S
## 32283 S4350XA
## 32284 S4350XD
## 32285 S4350XS
## 32286 S4351XA
## 32287 S4351XD
## 32288 S4351XS
## 32289 S4352XA
## 32290 S4352XD
## 32291 S4352XS
## 32292 S4360XA
## 32293 S4360XD
## 32294 S4360XS
## 32295 S4361XA
## 32296 S4361XD
## 32297 S4361XS
## 32298 S4362XA
## 32299 S4362XD
## 32300 S4362XS
## 32301 S4380XA
## 32302 S4380XD
## 32303 S4380XS
## 32304 S4381XA
## 32305 S4381XD
## 32306 S4381XS
## 32307 S4382XA
## 32308 S4382XD
## 32309 S4382XS
## 32310 S4390XA
## 32311 S4390XD
## 32312 S4390XS
## 32313 S4391XA
## 32314 S4391XD
## 32315 S4391XS
## 32316 S4392XA
## 32317 S4392XD
## 32318 S4392XS
## 32319 S4400XA
## 32320 S4400XD
## 32321 S4400XS
## 32322 S4401XA
## 32323 S4401XD
## 32324 S4401XS
## 32325 S4402XA
## 32326 S4402XD
## 32327 S4402XS
## 32328 S4410XA
## 32329 S4410XD
## 32330 S4410XS
## 32331 S4411XA
## 32332 S4411XD
## 32333 S4411XS
## 32334 S4412XA
## 32335 S4412XD
## 32336 S4412XS
## 32337 S4420XA
## 32338 S4420XD
## 32339 S4420XS
## 32340 S4421XA
## 32341 S4421XD
## 32342 S4421XS
## 32343 S4422XA
## 32344 S4422XD
## 32345 S4422XS
## 32346 S4430XA
## 32347 S4430XD
## 32348 S4430XS
## 32349 S4431XA
## 32350 S4431XD
## 32351 S4431XS
## 32352 S4432XA
## 32353 S4432XD
## 32354 S4432XS
## 32355 S4440XA
## 32356 S4440XD
## 32357 S4440XS
## 32358 S4441XA
## 32359 S4441XD
## 32360 S4441XS
## 32361 S4442XA
## 32362 S4442XD
## 32363 S4442XS
## 32364 S4450XA
## 32365 S4450XD
## 32366 S4450XS
## 32367 S4451XA
## 32368 S4451XD
## 32369 S4451XS
## 32370 S4452XA
## 32371 S4452XD
## 32372 S4452XS
## 32373 S448X1A
## 32374 S448X1D
## 32375 S448X1S
## 32376 S448X2A
## 32377 S448X2D
## 32378 S448X2S
## 32379 S448X9A
## 32380 S448X9D
## 32381 S448X9S
## 32382 S4490XA
## 32383 S4490XD
## 32384 S4490XS
## 32385 S4491XA
## 32386 S4491XD
## 32387 S4491XS
## 32388 S4492XA
## 32389 S4492XD
## 32390 S4492XS
## 32391 S45001A
## 32392 S45001D
## 32393 S45001S
## 32394 S45002A
## 32395 S45002D
## 32396 S45002S
## 32397 S45009A
## 32398 S45009D
## 32399 S45009S
## 32400 S45011A
## 32401 S45011D
## 32402 S45011S
## 32403 S45012A
## 32404 S45012D
## 32405 S45012S
## 32406 S45019A
## 32407 S45019D
## 32408 S45019S
## 32409 S45091A
## 32410 S45091D
## 32411 S45091S
## 32412 S45092A
## 32413 S45092D
## 32414 S45092S
## 32415 S45099A
## 32416 S45099D
## 32417 S45099S
## 32418 S45101A
## 32419 S45101D
## 32420 S45101S
## 32421 S45102A
## 32422 S45102D
## 32423 S45102S
## 32424 S45109A
## 32425 S45109D
## 32426 S45109S
## 32427 S45111A
## 32428 S45111D
## 32429 S45111S
## 32430 S45112A
## 32431 S45112D
## 32432 S45112S
## 32433 S45119A
## 32434 S45119D
## 32435 S45119S
## 32436 S45191A
## 32437 S45191D
## 32438 S45191S
## 32439 S45192A
## 32440 S45192D
## 32441 S45192S
## 32442 S45199A
## 32443 S45199D
## 32444 S45199S
## 32445 S45201A
## 32446 S45201D
## 32447 S45201S
## 32448 S45202A
## 32449 S45202D
## 32450 S45202S
## 32451 S45209A
## 32452 S45209D
## 32453 S45209S
## 32454 S45211A
## 32455 S45211D
## 32456 S45211S
## 32457 S45212A
## 32458 S45212D
## 32459 S45212S
## 32460 S45219A
## 32461 S45219D
## 32462 S45219S
## 32463 S45291A
## 32464 S45291D
## 32465 S45291S
## 32466 S45292A
## 32467 S45292D
## 32468 S45292S
## 32469 S45299A
## 32470 S45299D
## 32471 S45299S
## 32472 S45301A
## 32473 S45301D
## 32474 S45301S
## 32475 S45302A
## 32476 S45302D
## 32477 S45302S
## 32478 S45309A
## 32479 S45309D
## 32480 S45309S
## 32481 S45311A
## 32482 S45311D
## 32483 S45311S
## 32484 S45312A
## 32485 S45312D
## 32486 S45312S
## 32487 S45319A
## 32488 S45319D
## 32489 S45319S
## 32490 S45391A
## 32491 S45391D
## 32492 S45391S
## 32493 S45392A
## 32494 S45392D
## 32495 S45392S
## 32496 S45399A
## 32497 S45399D
## 32498 S45399S
## 32499 S45801A
## 32500 S45801D
## 32501 S45801S
## 32502 S45802A
## 32503 S45802D
## 32504 S45802S
## 32505 S45809A
## 32506 S45809D
## 32507 S45809S
## 32508 S45811A
## 32509 S45811D
## 32510 S45811S
## 32511 S45812A
## 32512 S45812D
## 32513 S45812S
## 32514 S45819A
## 32515 S45819D
## 32516 S45819S
## 32517 S45891A
## 32518 S45891D
## 32519 S45891S
## 32520 S45892A
## 32521 S45892D
## 32522 S45892S
## 32523 S45899A
## 32524 S45899D
## 32525 S45899S
## 32526 S45901A
## 32527 S45901D
## 32528 S45901S
## 32529 S45902A
## 32530 S45902D
## 32531 S45902S
## 32532 S45909A
## 32533 S45909D
## 32534 S45909S
## 32535 S45911A
## 32536 S45911D
## 32537 S45911S
## 32538 S45912A
## 32539 S45912D
## 32540 S45912S
## 32541 S45919A
## 32542 S45919D
## 32543 S45919S
## 32544 S45991A
## 32545 S45991D
## 32546 S45991S
## 32547 S45992A
## 32548 S45992D
## 32549 S45992S
## 32550 S45999A
## 32551 S45999D
## 32552 S45999S
## 32553 S46001A
## 32554 S46001D
## 32555 S46001S
## 32556 S46002A
## 32557 S46002D
## 32558 S46002S
## 32559 S46009A
## 32560 S46009D
## 32561 S46009S
## 32562 S46011A
## 32563 S46011D
## 32564 S46011S
## 32565 S46012A
## 32566 S46012D
## 32567 S46012S
## 32568 S46019A
## 32569 S46019D
## 32570 S46019S
## 32571 S46021A
## 32572 S46021D
## 32573 S46021S
## 32574 S46022A
## 32575 S46022D
## 32576 S46022S
## 32577 S46029A
## 32578 S46029D
## 32579 S46029S
## 32580 S46091A
## 32581 S46091D
## 32582 S46091S
## 32583 S46092A
## 32584 S46092D
## 32585 S46092S
## 32586 S46099A
## 32587 S46099D
## 32588 S46099S
## 32589 S46101A
## 32590 S46101D
## 32591 S46101S
## 32592 S46102A
## 32593 S46102D
## 32594 S46102S
## 32595 S46109A
## 32596 S46109D
## 32597 S46109S
## 32598 S46111A
## 32599 S46111D
## 32600 S46111S
## 32601 S46112A
## 32602 S46112D
## 32603 S46112S
## 32604 S46119A
## 32605 S46119D
## 32606 S46119S
## 32607 S46121A
## 32608 S46121D
## 32609 S46121S
## 32610 S46122A
## 32611 S46122D
## 32612 S46122S
## 32613 S46129A
## 32614 S46129D
## 32615 S46129S
## 32616 S46191A
## 32617 S46191D
## 32618 S46191S
## 32619 S46192A
## 32620 S46192D
## 32621 S46192S
## 32622 S46199A
## 32623 S46199D
## 32624 S46199S
## 32625 S46201A
## 32626 S46201D
## 32627 S46201S
## 32628 S46202A
## 32629 S46202D
## 32630 S46202S
## 32631 S46209A
## 32632 S46209D
## 32633 S46209S
## 32634 S46211A
## 32635 S46211D
## 32636 S46211S
## 32637 S46212A
## 32638 S46212D
## 32639 S46212S
## 32640 S46219A
## 32641 S46219D
## 32642 S46219S
## 32643 S46221A
## 32644 S46221D
## 32645 S46221S
## 32646 S46222A
## 32647 S46222D
## 32648 S46222S
## 32649 S46229A
## 32650 S46229D
## 32651 S46229S
## 32652 S46291A
## 32653 S46291D
## 32654 S46291S
## 32655 S46292A
## 32656 S46292D
## 32657 S46292S
## 32658 S46299A
## 32659 S46299D
## 32660 S46299S
## 32661 S46301A
## 32662 S46301D
## 32663 S46301S
## 32664 S46302A
## 32665 S46302D
## 32666 S46302S
## 32667 S46309A
## 32668 S46309D
## 32669 S46309S
## 32670 S46311A
## 32671 S46311D
## 32672 S46311S
## 32673 S46312A
## 32674 S46312D
## 32675 S46312S
## 32676 S46319A
## 32677 S46319D
## 32678 S46319S
## 32679 S46321A
## 32680 S46321D
## 32681 S46321S
## 32682 S46322A
## 32683 S46322D
## 32684 S46322S
## 32685 S46329A
## 32686 S46329D
## 32687 S46329S
## 32688 S46391A
## 32689 S46391D
## 32690 S46391S
## 32691 S46392A
## 32692 S46392D
## 32693 S46392S
## 32694 S46399A
## 32695 S46399D
## 32696 S46399S
## 32697 S46801A
## 32698 S46801D
## 32699 S46801S
## 32700 S46802A
## 32701 S46802D
## 32702 S46802S
## 32703 S46809A
## 32704 S46809D
## 32705 S46809S
## 32706 S46811A
## 32707 S46811D
## 32708 S46811S
## 32709 S46812A
## 32710 S46812D
## 32711 S46812S
## 32712 S46819A
## 32713 S46819D
## 32714 S46819S
## 32715 S46821A
## 32716 S46821D
## 32717 S46821S
## 32718 S46822A
## 32719 S46822D
## 32720 S46822S
## 32721 S46829A
## 32722 S46829D
## 32723 S46829S
## 32724 S46891A
## 32725 S46891D
## 32726 S46891S
## 32727 S46892A
## 32728 S46892D
## 32729 S46892S
## 32730 S46899A
## 32731 S46899D
## 32732 S46899S
## 32733 S46901A
## 32734 S46901D
## 32735 S46901S
## 32736 S46902A
## 32737 S46902D
## 32738 S46902S
## 32739 S46909A
## 32740 S46909D
## 32741 S46909S
## 32742 S46911A
## 32743 S46911D
## 32744 S46911S
## 32745 S46912A
## 32746 S46912D
## 32747 S46912S
## 32748 S46919A
## 32749 S46919D
## 32750 S46919S
## 32751 S46921A
## 32752 S46921D
## 32753 S46921S
## 32754 S46922A
## 32755 S46922D
## 32756 S46922S
## 32757 S46929A
## 32758 S46929D
## 32759 S46929S
## 32760 S46991A
## 32761 S46991D
## 32762 S46991S
## 32763 S46992A
## 32764 S46992D
## 32765 S46992S
## 32766 S46999A
## 32767 S46999D
## 32768 S46999S
## 32769 S471XXA
## 32770 S471XXD
## 32771 S471XXS
## 32772 S472XXA
## 32773 S472XXD
## 32774 S472XXS
## 32775 S479XXA
## 32776 S479XXD
## 32777 S479XXS
## 32778 S48011A
## 32779 S48011D
## 32780 S48011S
## 32781 S48012A
## 32782 S48012D
## 32783 S48012S
## 32784 S48019A
## 32785 S48019D
## 32786 S48019S
## 32787 S48021A
## 32788 S48021D
## 32789 S48021S
## 32790 S48022A
## 32791 S48022D
## 32792 S48022S
## 32793 S48029A
## 32794 S48029D
## 32795 S48029S
## 32796 S48111A
## 32797 S48111D
## 32798 S48111S
## 32799 S48112A
## 32800 S48112D
## 32801 S48112S
## 32802 S48119A
## 32803 S48119D
## 32804 S48119S
## 32805 S48121A
## 32806 S48121D
## 32807 S48121S
## 32808 S48122A
## 32809 S48122D
## 32810 S48122S
## 32811 S48129A
## 32812 S48129D
## 32813 S48129S
## 32814 S48911A
## 32815 S48911D
## 32816 S48911S
## 32817 S48912A
## 32818 S48912D
## 32819 S48912S
## 32820 S48919A
## 32821 S48919D
## 32822 S48919S
## 32823 S48921A
## 32824 S48921D
## 32825 S48921S
## 32826 S48922A
## 32827 S48922D
## 32828 S48922S
## 32829 S48929A
## 32830 S48929D
## 32831 S48929S
## 32832 S49001A
## 32833 S49001D
## 32834 S49001G
## 32835 S49001K
## 32836 S49001P
## 32837 S49001S
## 32838 S49002A
## 32839 S49002D
## 32840 S49002G
## 32841 S49002K
## 32842 S49002P
## 32843 S49002S
## 32844 S49009A
## 32845 S49009D
## 32846 S49009G
## 32847 S49009K
## 32848 S49009P
## 32849 S49009S
## 32850 S49011A
## 32851 S49011D
## 32852 S49011G
## 32853 S49011K
## 32854 S49011P
## 32855 S49011S
## 32856 S49012A
## 32857 S49012D
## 32858 S49012G
## 32859 S49012K
## 32860 S49012P
## 32861 S49012S
## 32862 S49019A
## 32863 S49019D
## 32864 S49019G
## 32865 S49019K
## 32866 S49019P
## 32867 S49019S
## 32868 S49021A
## 32869 S49021D
## 32870 S49021G
## 32871 S49021K
## 32872 S49021P
## 32873 S49021S
## 32874 S49022A
## 32875 S49022D
## 32876 S49022G
## 32877 S49022K
## 32878 S49022P
## 32879 S49022S
## 32880 S49029A
## 32881 S49029D
## 32882 S49029G
## 32883 S49029K
## 32884 S49029P
## 32885 S49029S
## 32886 S49031A
## 32887 S49031D
## 32888 S49031G
## 32889 S49031K
## 32890 S49031P
## 32891 S49031S
## 32892 S49032A
## 32893 S49032D
## 32894 S49032G
## 32895 S49032K
## 32896 S49032P
## 32897 S49032S
## 32898 S49039A
## 32899 S49039D
## 32900 S49039G
## 32901 S49039K
## 32902 S49039P
## 32903 S49039S
## 32904 S49041A
## 32905 S49041D
## 32906 S49041G
## 32907 S49041K
## 32908 S49041P
## 32909 S49041S
## 32910 S49042A
## 32911 S49042D
## 32912 S49042G
## 32913 S49042K
## 32914 S49042P
## 32915 S49042S
## 32916 S49049A
## 32917 S49049D
## 32918 S49049G
## 32919 S49049K
## 32920 S49049P
## 32921 S49049S
## 32922 S49091A
## 32923 S49091D
## 32924 S49091G
## 32925 S49091K
## 32926 S49091P
## 32927 S49091S
## 32928 S49092A
## 32929 S49092D
## 32930 S49092G
## 32931 S49092K
## 32932 S49092P
## 32933 S49092S
## 32934 S49099A
## 32935 S49099D
## 32936 S49099G
## 32937 S49099K
## 32938 S49099P
## 32939 S49099S
## 32940 S49101A
## 32941 S49101D
## 32942 S49101G
## 32943 S49101K
## 32944 S49101P
## 32945 S49101S
## 32946 S49102A
## 32947 S49102D
## 32948 S49102G
## 32949 S49102K
## 32950 S49102P
## 32951 S49102S
## 32952 S49109A
## 32953 S49109D
## 32954 S49109G
## 32955 S49109K
## 32956 S49109P
## 32957 S49109S
## 32958 S49111A
## 32959 S49111D
## 32960 S49111G
## 32961 S49111K
## 32962 S49111P
## 32963 S49111S
## 32964 S49112A
## 32965 S49112D
## 32966 S49112G
## 32967 S49112K
## 32968 S49112P
## 32969 S49112S
## 32970 S49119A
## 32971 S49119D
## 32972 S49119G
## 32973 S49119K
## 32974 S49119P
## 32975 S49119S
## 32976 S49121A
## 32977 S49121D
## 32978 S49121G
## 32979 S49121K
## 32980 S49121P
## 32981 S49121S
## 32982 S49122A
## 32983 S49122D
## 32984 S49122G
## 32985 S49122K
## 32986 S49122P
## 32987 S49122S
## 32988 S49129A
## 32989 S49129D
## 32990 S49129G
## 32991 S49129K
## 32992 S49129P
## 32993 S49129S
## 32994 S49131A
## 32995 S49131D
## 32996 S49131G
## 32997 S49131K
## 32998 S49131P
## 32999 S49131S
## 33000 S49132A
## 33001 S49132D
## 33002 S49132G
## 33003 S49132K
## 33004 S49132P
## 33005 S49132S
## 33006 S49139A
## 33007 S49139D
## 33008 S49139G
## 33009 S49139K
## 33010 S49139P
## 33011 S49139S
## 33012 S49141A
## 33013 S49141D
## 33014 S49141G
## 33015 S49141K
## 33016 S49141P
## 33017 S49141S
## 33018 S49142A
## 33019 S49142D
## 33020 S49142G
## 33021 S49142K
## 33022 S49142P
## 33023 S49142S
## 33024 S49149A
## 33025 S49149D
## 33026 S49149G
## 33027 S49149K
## 33028 S49149P
## 33029 S49149S
## 33030 S49191A
## 33031 S49191D
## 33032 S49191G
## 33033 S49191K
## 33034 S49191P
## 33035 S49191S
## 33036 S49192A
## 33037 S49192D
## 33038 S49192G
## 33039 S49192K
## 33040 S49192P
## 33041 S49192S
## 33042 S49199A
## 33043 S49199D
## 33044 S49199G
## 33045 S49199K
## 33046 S49199P
## 33047 S49199S
## 33048 S4980XA
## 33049 S4980XD
## 33050 S4980XS
## 33051 S4981XA
## 33052 S4981XD
## 33053 S4981XS
## 33054 S4982XA
## 33055 S4982XD
## 33056 S4982XS
## 33057 S4990XA
## 33058 S4990XD
## 33059 S4990XS
## 33060 S4991XA
## 33061 S4991XD
## 33062 S4991XS
## 33063 S4992XA
## 33064 S4992XD
## 33065 S4992XS
## 33066 S5000XA
## 33067 S5000XD
## 33068 S5000XS
## 33069 S5001XA
## 33070 S5001XD
## 33071 S5001XS
## 33072 S5002XA
## 33073 S5002XD
## 33074 S5002XS
## 33075 S5010XA
## 33076 S5010XD
## 33077 S5010XS
## 33078 S5011XA
## 33079 S5011XD
## 33080 S5011XS
## 33081 S5012XA
## 33082 S5012XD
## 33083 S5012XS
## 33084 S50311A
## 33085 S50311D
## 33086 S50311S
## 33087 S50312A
## 33088 S50312D
## 33089 S50312S
## 33090 S50319A
## 33091 S50319D
## 33092 S50319S
## 33093 S50321A
## 33094 S50321D
## 33095 S50321S
## 33096 S50322A
## 33097 S50322D
## 33098 S50322S
## 33099 S50329A
## 33100 S50329D
## 33101 S50329S
## 33102 S50341A
## 33103 S50341D
## 33104 S50341S
## 33105 S50342A
## 33106 S50342D
## 33107 S50342S
## 33108 S50349A
## 33109 S50349D
## 33110 S50349S
## 33111 S50351A
## 33112 S50351D
## 33113 S50351S
## 33114 S50352A
## 33115 S50352D
## 33116 S50352S
## 33117 S50359A
## 33118 S50359D
## 33119 S50359S
## 33120 S50361A
## 33121 S50361D
## 33122 S50361S
## 33123 S50362A
## 33124 S50362D
## 33125 S50362S
## 33126 S50369A
## 33127 S50369D
## 33128 S50369S
## 33129 S50371A
## 33130 S50371D
## 33131 S50371S
## 33132 S50372A
## 33133 S50372D
## 33134 S50372S
## 33135 S50379A
## 33136 S50379D
## 33137 S50379S
## 33138 S50811A
## 33139 S50811D
## 33140 S50811S
## 33141 S50812A
## 33142 S50812D
## 33143 S50812S
## 33144 S50819A
## 33145 S50819D
## 33146 S50819S
## 33147 S50821A
## 33148 S50821D
## 33149 S50821S
## 33150 S50822A
## 33151 S50822D
## 33152 S50822S
## 33153 S50829A
## 33154 S50829D
## 33155 S50829S
## 33156 S50841A
## 33157 S50841D
## 33158 S50841S
## 33159 S50842A
## 33160 S50842D
## 33161 S50842S
## 33162 S50849A
## 33163 S50849D
## 33164 S50849S
## 33165 S50851A
## 33166 S50851D
## 33167 S50851S
## 33168 S50852A
## 33169 S50852D
## 33170 S50852S
## 33171 S50859A
## 33172 S50859D
## 33173 S50859S
## 33174 S50861A
## 33175 S50861D
## 33176 S50861S
## 33177 S50862A
## 33178 S50862D
## 33179 S50862S
## 33180 S50869A
## 33181 S50869D
## 33182 S50869S
## 33183 S50871A
## 33184 S50871D
## 33185 S50871S
## 33186 S50872A
## 33187 S50872D
## 33188 S50872S
## 33189 S50879A
## 33190 S50879D
## 33191 S50879S
## 33192 S50901A
## 33193 S50901D
## 33194 S50901S
## 33195 S50902A
## 33196 S50902D
## 33197 S50902S
## 33198 S50909A
## 33199 S50909D
## 33200 S50909S
## 33201 S50911A
## 33202 S50911D
## 33203 S50911S
## 33204 S50912A
## 33205 S50912D
## 33206 S50912S
## 33207 S50919A
## 33208 S50919D
## 33209 S50919S
## 33210 S51001A
## 33211 S51001D
## 33212 S51001S
## 33213 S51002A
## 33214 S51002D
## 33215 S51002S
## 33216 S51009A
## 33217 S51009D
## 33218 S51009S
## 33219 S51011A
## 33220 S51011D
## 33221 S51011S
## 33222 S51012A
## 33223 S51012D
## 33224 S51012S
## 33225 S51019A
## 33226 S51019D
## 33227 S51019S
## 33228 S51021A
## 33229 S51021D
## 33230 S51021S
## 33231 S51022A
## 33232 S51022D
## 33233 S51022S
## 33234 S51029A
## 33235 S51029D
## 33236 S51029S
## 33237 S51031A
## 33238 S51031D
## 33239 S51031S
## 33240 S51032A
## 33241 S51032D
## 33242 S51032S
## 33243 S51039A
## 33244 S51039D
## 33245 S51039S
## 33246 S51041A
## 33247 S51041D
## 33248 S51041S
## 33249 S51042A
## 33250 S51042D
## 33251 S51042S
## 33252 S51049A
## 33253 S51049D
## 33254 S51049S
## 33255 S51051A
## 33256 S51051D
## 33257 S51051S
## 33258 S51052A
## 33259 S51052D
## 33260 S51052S
## 33261 S51059A
## 33262 S51059D
## 33263 S51059S
## 33264 S51801A
## 33265 S51801D
## 33266 S51801S
## 33267 S51802A
## 33268 S51802D
## 33269 S51802S
## 33270 S51809A
## 33271 S51809D
## 33272 S51809S
## 33273 S51811A
## 33274 S51811D
## 33275 S51811S
## 33276 S51812A
## 33277 S51812D
## 33278 S51812S
## 33279 S51819A
## 33280 S51819D
## 33281 S51819S
## 33282 S51821A
## 33283 S51821D
## 33284 S51821S
## 33285 S51822A
## 33286 S51822D
## 33287 S51822S
## 33288 S51829A
## 33289 S51829D
## 33290 S51829S
## 33291 S51831A
## 33292 S51831D
## 33293 S51831S
## 33294 S51832A
## 33295 S51832D
## 33296 S51832S
## 33297 S51839A
## 33298 S51839D
## 33299 S51839S
## 33300 S51841A
## 33301 S51841D
## 33302 S51841S
## 33303 S51842A
## 33304 S51842D
## 33305 S51842S
## 33306 S51849A
## 33307 S51849D
## 33308 S51849S
## 33309 S51851A
## 33310 S51851D
## 33311 S51851S
## 33312 S51852A
## 33313 S51852D
## 33314 S51852S
## 33315 S51859A
## 33316 S51859D
## 33317 S51859S
## 33318 S52001A
## 33319 S52001B
## 33320 S52001C
## 33321 S52001D
## 33322 S52001E
## 33323 S52001F
## 33324 S52001G
## 33325 S52001H
## 33326 S52001J
## 33327 S52001K
## 33328 S52001M
## 33329 S52001N
## 33330 S52001P
## 33331 S52001Q
## 33332 S52001R
## 33333 S52001S
## 33334 S52002A
## 33335 S52002B
## 33336 S52002C
## 33337 S52002D
## 33338 S52002E
## 33339 S52002F
## 33340 S52002G
## 33341 S52002H
## 33342 S52002J
## 33343 S52002K
## 33344 S52002M
## 33345 S52002N
## 33346 S52002P
## 33347 S52002Q
## 33348 S52002R
## 33349 S52002S
## 33350 S52009A
## 33351 S52009B
## 33352 S52009C
## 33353 S52009D
## 33354 S52009E
## 33355 S52009F
## 33356 S52009G
## 33357 S52009H
## 33358 S52009J
## 33359 S52009K
## 33360 S52009M
## 33361 S52009N
## 33362 S52009P
## 33363 S52009Q
## 33364 S52009R
## 33365 S52009S
## 33366 S52011A
## 33367 S52011D
## 33368 S52011G
## 33369 S52011K
## 33370 S52011P
## 33371 S52011S
## 33372 S52012A
## 33373 S52012D
## 33374 S52012G
## 33375 S52012K
## 33376 S52012P
## 33377 S52012S
## 33378 S52019A
## 33379 S52019D
## 33380 S52019G
## 33381 S52019K
## 33382 S52019P
## 33383 S52019S
## 33384 S52021A
## 33385 S52021B
## 33386 S52021C
## 33387 S52021D
## 33388 S52021E
## 33389 S52021F
## 33390 S52021G
## 33391 S52021H
## 33392 S52021J
## 33393 S52021K
## 33394 S52021M
## 33395 S52021N
## 33396 S52021P
## 33397 S52021Q
## 33398 S52021R
## 33399 S52021S
## 33400 S52022A
## 33401 S52022B
## 33402 S52022C
## 33403 S52022D
## 33404 S52022E
## 33405 S52022F
## 33406 S52022G
## 33407 S52022H
## 33408 S52022J
## 33409 S52022K
## 33410 S52022M
## 33411 S52022N
## 33412 S52022P
## 33413 S52022Q
## 33414 S52022R
## 33415 S52022S
## 33416 S52023A
## 33417 S52023B
## 33418 S52023C
## 33419 S52023D
## 33420 S52023E
## 33421 S52023F
## 33422 S52023G
## 33423 S52023H
## 33424 S52023J
## 33425 S52023K
## 33426 S52023M
## 33427 S52023N
## 33428 S52023P
## 33429 S52023Q
## 33430 S52023R
## 33431 S52023S
## 33432 S52024A
## 33433 S52024B
## 33434 S52024C
## 33435 S52024D
## 33436 S52024E
## 33437 S52024F
## 33438 S52024G
## 33439 S52024H
## 33440 S52024J
## 33441 S52024K
## 33442 S52024M
## 33443 S52024N
## 33444 S52024P
## 33445 S52024Q
## 33446 S52024R
## 33447 S52024S
## 33448 S52025A
## 33449 S52025B
## 33450 S52025C
## 33451 S52025D
## 33452 S52025E
## 33453 S52025F
## 33454 S52025G
## 33455 S52025H
## 33456 S52025J
## 33457 S52025K
## 33458 S52025M
## 33459 S52025N
## 33460 S52025P
## 33461 S52025Q
## 33462 S52025R
## 33463 S52025S
## 33464 S52026A
## 33465 S52026B
## 33466 S52026C
## 33467 S52026D
## 33468 S52026E
## 33469 S52026F
## 33470 S52026G
## 33471 S52026H
## 33472 S52026J
## 33473 S52026K
## 33474 S52026M
## 33475 S52026N
## 33476 S52026P
## 33477 S52026Q
## 33478 S52026R
## 33479 S52026S
## 33480 S52031A
## 33481 S52031B
## 33482 S52031C
## 33483 S52031D
## 33484 S52031E
## 33485 S52031F
## 33486 S52031G
## 33487 S52031H
## 33488 S52031J
## 33489 S52031K
## 33490 S52031M
## 33491 S52031N
## 33492 S52031P
## 33493 S52031Q
## 33494 S52031R
## 33495 S52031S
## 33496 S52032A
## 33497 S52032B
## 33498 S52032C
## 33499 S52032D
## 33500 S52032E
## 33501 S52032F
## 33502 S52032G
## 33503 S52032H
## 33504 S52032J
## 33505 S52032K
## 33506 S52032M
## 33507 S52032N
## 33508 S52032P
## 33509 S52032Q
## 33510 S52032R
## 33511 S52032S
## 33512 S52033A
## 33513 S52033B
## 33514 S52033C
## 33515 S52033D
## 33516 S52033E
## 33517 S52033F
## 33518 S52033G
## 33519 S52033H
## 33520 S52033J
## 33521 S52033K
## 33522 S52033M
## 33523 S52033N
## 33524 S52033P
## 33525 S52033Q
## 33526 S52033R
## 33527 S52033S
## 33528 S52034A
## 33529 S52034B
## 33530 S52034C
## 33531 S52034D
## 33532 S52034E
## 33533 S52034F
## 33534 S52034G
## 33535 S52034H
## 33536 S52034J
## 33537 S52034K
## 33538 S52034M
## 33539 S52034N
## 33540 S52034P
## 33541 S52034Q
## 33542 S52034R
## 33543 S52034S
## 33544 S52035A
## 33545 S52035B
## 33546 S52035C
## 33547 S52035D
## 33548 S52035E
## 33549 S52035F
## 33550 S52035G
## 33551 S52035H
## 33552 S52035J
## 33553 S52035K
## 33554 S52035M
## 33555 S52035N
## 33556 S52035P
## 33557 S52035Q
## 33558 S52035R
## 33559 S52035S
## 33560 S52036A
## 33561 S52036B
## 33562 S52036C
## 33563 S52036D
## 33564 S52036E
## 33565 S52036F
## 33566 S52036G
## 33567 S52036H
## 33568 S52036J
## 33569 S52036K
## 33570 S52036M
## 33571 S52036N
## 33572 S52036P
## 33573 S52036Q
## 33574 S52036R
## 33575 S52036S
## 33576 S52041A
## 33577 S52041B
## 33578 S52041C
## 33579 S52041D
## 33580 S52041E
## 33581 S52041F
## 33582 S52041G
## 33583 S52041H
## 33584 S52041J
## 33585 S52041K
## 33586 S52041M
## 33587 S52041N
## 33588 S52041P
## 33589 S52041Q
## 33590 S52041R
## 33591 S52041S
## 33592 S52042A
## 33593 S52042B
## 33594 S52042C
## 33595 S52042D
## 33596 S52042E
## 33597 S52042F
## 33598 S52042G
## 33599 S52042H
## 33600 S52042J
## 33601 S52042K
## 33602 S52042M
## 33603 S52042N
## 33604 S52042P
## 33605 S52042Q
## 33606 S52042R
## 33607 S52042S
## 33608 S52043A
## 33609 S52043B
## 33610 S52043C
## 33611 S52043D
## 33612 S52043E
## 33613 S52043F
## 33614 S52043G
## 33615 S52043H
## 33616 S52043J
## 33617 S52043K
## 33618 S52043M
## 33619 S52043N
## 33620 S52043P
## 33621 S52043Q
## 33622 S52043R
## 33623 S52043S
## 33624 S52044A
## 33625 S52044B
## 33626 S52044C
## 33627 S52044D
## 33628 S52044E
## 33629 S52044F
## 33630 S52044G
## 33631 S52044H
## 33632 S52044J
## 33633 S52044K
## 33634 S52044M
## 33635 S52044N
## 33636 S52044P
## 33637 S52044Q
## 33638 S52044R
## 33639 S52044S
## 33640 S52045A
## 33641 S52045B
## 33642 S52045C
## 33643 S52045D
## 33644 S52045E
## 33645 S52045F
## 33646 S52045G
## 33647 S52045H
## 33648 S52045J
## 33649 S52045K
## 33650 S52045M
## 33651 S52045N
## 33652 S52045P
## 33653 S52045Q
## 33654 S52045R
## 33655 S52045S
## 33656 S52046A
## 33657 S52046B
## 33658 S52046C
## 33659 S52046D
## 33660 S52046E
## 33661 S52046F
## 33662 S52046G
## 33663 S52046H
## 33664 S52046J
## 33665 S52046K
## 33666 S52046M
## 33667 S52046N
## 33668 S52046P
## 33669 S52046Q
## 33670 S52046R
## 33671 S52046S
## 33672 S52091A
## 33673 S52091B
## 33674 S52091C
## 33675 S52091D
## 33676 S52091E
## 33677 S52091F
## 33678 S52091G
## 33679 S52091H
## 33680 S52091J
## 33681 S52091K
## 33682 S52091M
## 33683 S52091N
## 33684 S52091P
## 33685 S52091Q
## 33686 S52091R
## 33687 S52091S
## 33688 S52092A
## 33689 S52092B
## 33690 S52092C
## 33691 S52092D
## 33692 S52092E
## 33693 S52092F
## 33694 S52092G
## 33695 S52092H
## 33696 S52092J
## 33697 S52092K
## 33698 S52092M
## 33699 S52092N
## 33700 S52092P
## 33701 S52092Q
## 33702 S52092R
## 33703 S52092S
## 33704 S52099A
## 33705 S52099B
## 33706 S52099C
## 33707 S52099D
## 33708 S52099E
## 33709 S52099F
## 33710 S52099G
## 33711 S52099H
## 33712 S52099J
## 33713 S52099K
## 33714 S52099M
## 33715 S52099N
## 33716 S52099P
## 33717 S52099Q
## 33718 S52099R
## 33719 S52099S
## 33720 S52101A
## 33721 S52101B
## 33722 S52101C
## 33723 S52101D
## 33724 S52101E
## 33725 S52101F
## 33726 S52101G
## 33727 S52101H
## 33728 S52101J
## 33729 S52101K
## 33730 S52101M
## 33731 S52101N
## 33732 S52101P
## 33733 S52101Q
## 33734 S52101R
## 33735 S52101S
## 33736 S52102A
## 33737 S52102B
## 33738 S52102C
## 33739 S52102D
## 33740 S52102E
## 33741 S52102F
## 33742 S52102G
## 33743 S52102H
## 33744 S52102J
## 33745 S52102K
## 33746 S52102M
## 33747 S52102N
## 33748 S52102P
## 33749 S52102Q
## 33750 S52102R
## 33751 S52102S
## 33752 S52109A
## 33753 S52109B
## 33754 S52109C
## 33755 S52109D
## 33756 S52109E
## 33757 S52109F
## 33758 S52109G
## 33759 S52109H
## 33760 S52109J
## 33761 S52109K
## 33762 S52109M
## 33763 S52109N
## 33764 S52109P
## 33765 S52109Q
## 33766 S52109R
## 33767 S52109S
## 33768 S52111A
## 33769 S52111D
## 33770 S52111G
## 33771 S52111K
## 33772 S52111P
## 33773 S52111S
## 33774 S52112A
## 33775 S52112D
## 33776 S52112G
## 33777 S52112K
## 33778 S52112P
## 33779 S52112S
## 33780 S52119A
## 33781 S52119D
## 33782 S52119G
## 33783 S52119K
## 33784 S52119P
## 33785 S52119S
## 33786 S52121A
## 33787 S52121B
## 33788 S52121C
## 33789 S52121D
## 33790 S52121E
## 33791 S52121F
## 33792 S52121G
## 33793 S52121H
## 33794 S52121J
## 33795 S52121K
## 33796 S52121M
## 33797 S52121N
## 33798 S52121P
## 33799 S52121Q
## 33800 S52121R
## 33801 S52121S
## 33802 S52122A
## 33803 S52122B
## 33804 S52122C
## 33805 S52122D
## 33806 S52122E
## 33807 S52122F
## 33808 S52122G
## 33809 S52122H
## 33810 S52122J
## 33811 S52122K
## 33812 S52122M
## 33813 S52122N
## 33814 S52122P
## 33815 S52122Q
## 33816 S52122R
## 33817 S52122S
## 33818 S52123A
## 33819 S52123B
## 33820 S52123C
## 33821 S52123D
## 33822 S52123E
## 33823 S52123F
## 33824 S52123G
## 33825 S52123H
## 33826 S52123J
## 33827 S52123K
## 33828 S52123M
## 33829 S52123N
## 33830 S52123P
## 33831 S52123Q
## 33832 S52123R
## 33833 S52123S
## 33834 S52124A
## 33835 S52124B
## 33836 S52124C
## 33837 S52124D
## 33838 S52124E
## 33839 S52124F
## 33840 S52124G
## 33841 S52124H
## 33842 S52124J
## 33843 S52124K
## 33844 S52124M
## 33845 S52124N
## 33846 S52124P
## 33847 S52124Q
## 33848 S52124R
## 33849 S52124S
## 33850 S52125A
## 33851 S52125B
## 33852 S52125C
## 33853 S52125D
## 33854 S52125E
## 33855 S52125F
## 33856 S52125G
## 33857 S52125H
## 33858 S52125J
## 33859 S52125K
## 33860 S52125M
## 33861 S52125N
## 33862 S52125P
## 33863 S52125Q
## 33864 S52125R
## 33865 S52125S
## 33866 S52126A
## 33867 S52126B
## 33868 S52126C
## 33869 S52126D
## 33870 S52126E
## 33871 S52126F
## 33872 S52126G
## 33873 S52126H
## 33874 S52126J
## 33875 S52126K
## 33876 S52126M
## 33877 S52126N
## 33878 S52126P
## 33879 S52126Q
## 33880 S52126R
## 33881 S52126S
## 33882 S52131A
## 33883 S52131B
## 33884 S52131C
## 33885 S52131D
## 33886 S52131E
## 33887 S52131F
## 33888 S52131G
## 33889 S52131H
## 33890 S52131J
## 33891 S52131K
## 33892 S52131M
## 33893 S52131N
## 33894 S52131P
## 33895 S52131Q
## 33896 S52131R
## 33897 S52131S
## 33898 S52132A
## 33899 S52132B
## 33900 S52132C
## 33901 S52132D
## 33902 S52132E
## 33903 S52132F
## 33904 S52132G
## 33905 S52132H
## 33906 S52132J
## 33907 S52132K
## 33908 S52132M
## 33909 S52132N
## 33910 S52132P
## 33911 S52132Q
## 33912 S52132R
## 33913 S52132S
## 33914 S52133A
## 33915 S52133B
## 33916 S52133C
## 33917 S52133D
## 33918 S52133E
## 33919 S52133F
## 33920 S52133G
## 33921 S52133H
## 33922 S52133J
## 33923 S52133K
## 33924 S52133M
## 33925 S52133N
## 33926 S52133P
## 33927 S52133Q
## 33928 S52133R
## 33929 S52133S
## 33930 S52134A
## 33931 S52134B
## 33932 S52134C
## 33933 S52134D
## 33934 S52134E
## 33935 S52134F
## 33936 S52134G
## 33937 S52134H
## 33938 S52134J
## 33939 S52134K
## 33940 S52134M
## 33941 S52134N
## 33942 S52134P
## 33943 S52134Q
## 33944 S52134R
## 33945 S52134S
## 33946 S52135A
## 33947 S52135B
## 33948 S52135C
## 33949 S52135D
## 33950 S52135E
## 33951 S52135F
## 33952 S52135G
## 33953 S52135H
## 33954 S52135J
## 33955 S52135K
## 33956 S52135M
## 33957 S52135N
## 33958 S52135P
## 33959 S52135Q
## 33960 S52135R
## 33961 S52135S
## 33962 S52136A
## 33963 S52136B
## 33964 S52136C
## 33965 S52136D
## 33966 S52136E
## 33967 S52136F
## 33968 S52136G
## 33969 S52136H
## 33970 S52136J
## 33971 S52136K
## 33972 S52136M
## 33973 S52136N
## 33974 S52136P
## 33975 S52136Q
## 33976 S52136R
## 33977 S52136S
## 33978 S52181A
## 33979 S52181B
## 33980 S52181C
## 33981 S52181D
## 33982 S52181E
## 33983 S52181F
## 33984 S52181G
## 33985 S52181H
## 33986 S52181J
## 33987 S52181K
## 33988 S52181M
## 33989 S52181N
## 33990 S52181P
## 33991 S52181Q
## 33992 S52181R
## 33993 S52181S
## 33994 S52182A
## 33995 S52182B
## 33996 S52182C
## 33997 S52182D
## 33998 S52182E
## 33999 S52182F
## 34000 S52182G
## 34001 S52182H
## 34002 S52182J
## 34003 S52182K
## 34004 S52182M
## 34005 S52182N
## 34006 S52182P
## 34007 S52182Q
## 34008 S52182R
## 34009 S52182S
## 34010 S52189A
## 34011 S52189B
## 34012 S52189C
## 34013 S52189D
## 34014 S52189E
## 34015 S52189F
## 34016 S52189G
## 34017 S52189H
## 34018 S52189J
## 34019 S52189K
## 34020 S52189M
## 34021 S52189N
## 34022 S52189P
## 34023 S52189Q
## 34024 S52189R
## 34025 S52189S
## 34026 S52201A
## 34027 S52201B
## 34028 S52201C
## 34029 S52201D
## 34030 S52201E
## 34031 S52201F
## 34032 S52201G
## 34033 S52201H
## 34034 S52201J
## 34035 S52201K
## 34036 S52201M
## 34037 S52201N
## 34038 S52201P
## 34039 S52201Q
## 34040 S52201R
## 34041 S52201S
## 34042 S52202A
## 34043 S52202B
## 34044 S52202C
## 34045 S52202D
## 34046 S52202E
## 34047 S52202F
## 34048 S52202G
## 34049 S52202H
## 34050 S52202J
## 34051 S52202K
## 34052 S52202M
## 34053 S52202N
## 34054 S52202P
## 34055 S52202Q
## 34056 S52202R
## 34057 S52202S
## 34058 S52209A
## 34059 S52209B
## 34060 S52209C
## 34061 S52209D
## 34062 S52209E
## 34063 S52209F
## 34064 S52209G
## 34065 S52209H
## 34066 S52209J
## 34067 S52209K
## 34068 S52209M
## 34069 S52209N
## 34070 S52209P
## 34071 S52209Q
## 34072 S52209R
## 34073 S52209S
## 34074 S52211A
## 34075 S52211D
## 34076 S52211G
## 34077 S52211K
## 34078 S52211P
## 34079 S52211S
## 34080 S52212A
## 34081 S52212D
## 34082 S52212G
## 34083 S52212K
## 34084 S52212P
## 34085 S52212S
## 34086 S52219A
## 34087 S52219D
## 34088 S52219G
## 34089 S52219K
## 34090 S52219P
## 34091 S52219S
## 34092 S52221A
## 34093 S52221B
## 34094 S52221C
## 34095 S52221D
## 34096 S52221E
## 34097 S52221F
## 34098 S52221G
## 34099 S52221H
## 34100 S52221J
## 34101 S52221K
## 34102 S52221M
## 34103 S52221N
## 34104 S52221P
## 34105 S52221Q
## 34106 S52221R
## 34107 S52221S
## 34108 S52222A
## 34109 S52222B
## 34110 S52222C
## 34111 S52222D
## 34112 S52222E
## 34113 S52222F
## 34114 S52222G
## 34115 S52222H
## 34116 S52222J
## 34117 S52222K
## 34118 S52222M
## 34119 S52222N
## 34120 S52222P
## 34121 S52222Q
## 34122 S52222R
## 34123 S52222S
## 34124 S52223A
## 34125 S52223B
## 34126 S52223C
## 34127 S52223D
## 34128 S52223E
## 34129 S52223F
## 34130 S52223G
## 34131 S52223H
## 34132 S52223J
## 34133 S52223K
## 34134 S52223M
## 34135 S52223N
## 34136 S52223P
## 34137 S52223Q
## 34138 S52223R
## 34139 S52223S
## 34140 S52224A
## 34141 S52224B
## 34142 S52224C
## 34143 S52224D
## 34144 S52224E
## 34145 S52224F
## 34146 S52224G
## 34147 S52224H
## 34148 S52224J
## 34149 S52224K
## 34150 S52224M
## 34151 S52224N
## 34152 S52224P
## 34153 S52224Q
## 34154 S52224R
## 34155 S52224S
## 34156 S52225A
## 34157 S52225B
## 34158 S52225C
## 34159 S52225D
## 34160 S52225E
## 34161 S52225F
## 34162 S52225G
## 34163 S52225H
## 34164 S52225J
## 34165 S52225K
## 34166 S52225M
## 34167 S52225N
## 34168 S52225P
## 34169 S52225Q
## 34170 S52225R
## 34171 S52225S
## 34172 S52226A
## 34173 S52226B
## 34174 S52226C
## 34175 S52226D
## 34176 S52226E
## 34177 S52226F
## 34178 S52226G
## 34179 S52226H
## 34180 S52226J
## 34181 S52226K
## 34182 S52226M
## 34183 S52226N
## 34184 S52226P
## 34185 S52226Q
## 34186 S52226R
## 34187 S52226S
## 34188 S52231A
## 34189 S52231B
## 34190 S52231C
## 34191 S52231D
## 34192 S52231E
## 34193 S52231F
## 34194 S52231G
## 34195 S52231H
## 34196 S52231J
## 34197 S52231K
## 34198 S52231M
## 34199 S52231N
## 34200 S52231P
## 34201 S52231Q
## 34202 S52231R
## 34203 S52231S
## 34204 S52232A
## 34205 S52232B
## 34206 S52232C
## 34207 S52232D
## 34208 S52232E
## 34209 S52232F
## 34210 S52232G
## 34211 S52232H
## 34212 S52232J
## 34213 S52232K
## 34214 S52232M
## 34215 S52232N
## 34216 S52232P
## 34217 S52232Q
## 34218 S52232R
## 34219 S52232S
## 34220 S52233A
## 34221 S52233B
## 34222 S52233C
## 34223 S52233D
## 34224 S52233E
## 34225 S52233F
## 34226 S52233G
## 34227 S52233H
## 34228 S52233J
## 34229 S52233K
## 34230 S52233M
## 34231 S52233N
## 34232 S52233P
## 34233 S52233Q
## 34234 S52233R
## 34235 S52233S
## 34236 S52234A
## 34237 S52234B
## 34238 S52234C
## 34239 S52234D
## 34240 S52234E
## 34241 S52234F
## 34242 S52234G
## 34243 S52234H
## 34244 S52234J
## 34245 S52234K
## 34246 S52234M
## 34247 S52234N
## 34248 S52234P
## 34249 S52234Q
## 34250 S52234R
## 34251 S52234S
## 34252 S52235A
## 34253 S52235B
## 34254 S52235C
## 34255 S52235D
## 34256 S52235E
## 34257 S52235F
## 34258 S52235G
## 34259 S52235H
## 34260 S52235J
## 34261 S52235K
## 34262 S52235M
## 34263 S52235N
## 34264 S52235P
## 34265 S52235Q
## 34266 S52235R
## 34267 S52235S
## 34268 S52236A
## 34269 S52236B
## 34270 S52236C
## 34271 S52236D
## 34272 S52236E
## 34273 S52236F
## 34274 S52236G
## 34275 S52236H
## 34276 S52236J
## 34277 S52236K
## 34278 S52236M
## 34279 S52236N
## 34280 S52236P
## 34281 S52236Q
## 34282 S52236R
## 34283 S52236S
## 34284 S52241A
## 34285 S52241B
## 34286 S52241C
## 34287 S52241D
## 34288 S52241E
## 34289 S52241F
## 34290 S52241G
## 34291 S52241H
## 34292 S52241J
## 34293 S52241K
## 34294 S52241M
## 34295 S52241N
## 34296 S52241P
## 34297 S52241Q
## 34298 S52241R
## 34299 S52241S
## 34300 S52242A
## 34301 S52242B
## 34302 S52242C
## 34303 S52242D
## 34304 S52242E
## 34305 S52242F
## 34306 S52242G
## 34307 S52242H
## 34308 S52242J
## 34309 S52242K
## 34310 S52242M
## 34311 S52242N
## 34312 S52242P
## 34313 S52242Q
## 34314 S52242R
## 34315 S52242S
## 34316 S52243A
## 34317 S52243B
## 34318 S52243C
## 34319 S52243D
## 34320 S52243E
## 34321 S52243F
## 34322 S52243G
## 34323 S52243H
## 34324 S52243J
## 34325 S52243K
## 34326 S52243M
## 34327 S52243N
## 34328 S52243P
## 34329 S52243Q
## 34330 S52243R
## 34331 S52243S
## 34332 S52244A
## 34333 S52244B
## 34334 S52244C
## 34335 S52244D
## 34336 S52244E
## 34337 S52244F
## 34338 S52244G
## 34339 S52244H
## 34340 S52244J
## 34341 S52244K
## 34342 S52244M
## 34343 S52244N
## 34344 S52244P
## 34345 S52244Q
## 34346 S52244R
## 34347 S52244S
## 34348 S52245A
## 34349 S52245B
## 34350 S52245C
## 34351 S52245D
## 34352 S52245E
## 34353 S52245F
## 34354 S52245G
## 34355 S52245H
## 34356 S52245J
## 34357 S52245K
## 34358 S52245M
## 34359 S52245N
## 34360 S52245P
## 34361 S52245Q
## 34362 S52245R
## 34363 S52245S
## 34364 S52246A
## 34365 S52246B
## 34366 S52246C
## 34367 S52246D
## 34368 S52246E
## 34369 S52246F
## 34370 S52246G
## 34371 S52246H
## 34372 S52246J
## 34373 S52246K
## 34374 S52246M
## 34375 S52246N
## 34376 S52246P
## 34377 S52246Q
## 34378 S52246R
## 34379 S52246S
## 34380 S52251A
## 34381 S52251B
## 34382 S52251C
## 34383 S52251D
## 34384 S52251E
## 34385 S52251F
## 34386 S52251G
## 34387 S52251H
## 34388 S52251J
## 34389 S52251K
## 34390 S52251M
## 34391 S52251N
## 34392 S52251P
## 34393 S52251Q
## 34394 S52251R
## 34395 S52251S
## 34396 S52252A
## 34397 S52252B
## 34398 S52252C
## 34399 S52252D
## 34400 S52252E
## 34401 S52252F
## 34402 S52252G
## 34403 S52252H
## 34404 S52252J
## 34405 S52252K
## 34406 S52252M
## 34407 S52252N
## 34408 S52252P
## 34409 S52252Q
## 34410 S52252R
## 34411 S52252S
## 34412 S52253A
## 34413 S52253B
## 34414 S52253C
## 34415 S52253D
## 34416 S52253E
## 34417 S52253F
## 34418 S52253G
## 34419 S52253H
## 34420 S52253J
## 34421 S52253K
## 34422 S52253M
## 34423 S52253N
## 34424 S52253P
## 34425 S52253Q
## 34426 S52253R
## 34427 S52253S
## 34428 S52254A
## 34429 S52254B
## 34430 S52254C
## 34431 S52254D
## 34432 S52254E
## 34433 S52254F
## 34434 S52254G
## 34435 S52254H
## 34436 S52254J
## 34437 S52254K
## 34438 S52254M
## 34439 S52254N
## 34440 S52254P
## 34441 S52254Q
## 34442 S52254R
## 34443 S52254S
## 34444 S52255A
## 34445 S52255B
## 34446 S52255C
## 34447 S52255D
## 34448 S52255E
## 34449 S52255F
## 34450 S52255G
## 34451 S52255H
## 34452 S52255J
## 34453 S52255K
## 34454 S52255M
## 34455 S52255N
## 34456 S52255P
## 34457 S52255Q
## 34458 S52255R
## 34459 S52255S
## 34460 S52256A
## 34461 S52256B
## 34462 S52256C
## 34463 S52256D
## 34464 S52256E
## 34465 S52256F
## 34466 S52256G
## 34467 S52256H
## 34468 S52256J
## 34469 S52256K
## 34470 S52256M
## 34471 S52256N
## 34472 S52256P
## 34473 S52256Q
## 34474 S52256R
## 34475 S52256S
## 34476 S52261A
## 34477 S52261B
## 34478 S52261C
## 34479 S52261D
## 34480 S52261E
## 34481 S52261F
## 34482 S52261G
## 34483 S52261H
## 34484 S52261J
## 34485 S52261K
## 34486 S52261M
## 34487 S52261N
## 34488 S52261P
## 34489 S52261Q
## 34490 S52261R
## 34491 S52261S
## 34492 S52262A
## 34493 S52262B
## 34494 S52262C
## 34495 S52262D
## 34496 S52262E
## 34497 S52262F
## 34498 S52262G
## 34499 S52262H
## 34500 S52262J
## 34501 S52262K
## 34502 S52262M
## 34503 S52262N
## 34504 S52262P
## 34505 S52262Q
## 34506 S52262R
## 34507 S52262S
## 34508 S52263A
## 34509 S52263B
## 34510 S52263C
## 34511 S52263D
## 34512 S52263E
## 34513 S52263F
## 34514 S52263G
## 34515 S52263H
## 34516 S52263J
## 34517 S52263K
## 34518 S52263M
## 34519 S52263N
## 34520 S52263P
## 34521 S52263Q
## 34522 S52263R
## 34523 S52263S
## 34524 S52264A
## 34525 S52264B
## 34526 S52264C
## 34527 S52264D
## 34528 S52264E
## 34529 S52264F
## 34530 S52264G
## 34531 S52264H
## 34532 S52264J
## 34533 S52264K
## 34534 S52264M
## 34535 S52264N
## 34536 S52264P
## 34537 S52264Q
## 34538 S52264R
## 34539 S52264S
## 34540 S52265A
## 34541 S52265B
## 34542 S52265C
## 34543 S52265D
## 34544 S52265E
## 34545 S52265F
## 34546 S52265G
## 34547 S52265H
## 34548 S52265J
## 34549 S52265K
## 34550 S52265M
## 34551 S52265N
## 34552 S52265P
## 34553 S52265Q
## 34554 S52265R
## 34555 S52265S
## 34556 S52266A
## 34557 S52266B
## 34558 S52266C
## 34559 S52266D
## 34560 S52266E
## 34561 S52266F
## 34562 S52266G
## 34563 S52266H
## 34564 S52266J
## 34565 S52266K
## 34566 S52266M
## 34567 S52266N
## 34568 S52266P
## 34569 S52266Q
## 34570 S52266R
## 34571 S52266S
## 34572 S52271A
## 34573 S52271B
## 34574 S52271C
## 34575 S52271D
## 34576 S52271E
## 34577 S52271F
## 34578 S52271G
## 34579 S52271H
## 34580 S52271J
## 34581 S52271K
## 34582 S52271M
## 34583 S52271N
## 34584 S52271P
## 34585 S52271Q
## 34586 S52271R
## 34587 S52271S
## 34588 S52272A
## 34589 S52272B
## 34590 S52272C
## 34591 S52272D
## 34592 S52272E
## 34593 S52272F
## 34594 S52272G
## 34595 S52272H
## 34596 S52272J
## 34597 S52272K
## 34598 S52272M
## 34599 S52272N
## 34600 S52272P
## 34601 S52272Q
## 34602 S52272R
## 34603 S52272S
## 34604 S52279A
## 34605 S52279B
## 34606 S52279C
## 34607 S52279D
## 34608 S52279E
## 34609 S52279F
## 34610 S52279G
## 34611 S52279H
## 34612 S52279J
## 34613 S52279K
## 34614 S52279M
## 34615 S52279N
## 34616 S52279P
## 34617 S52279Q
## 34618 S52279R
## 34619 S52279S
## 34620 S52281A
## 34621 S52281B
## 34622 S52281C
## 34623 S52281D
## 34624 S52281E
## 34625 S52281F
## 34626 S52281G
## 34627 S52281H
## 34628 S52281J
## 34629 S52281K
## 34630 S52281M
## 34631 S52281N
## 34632 S52281P
## 34633 S52281Q
## 34634 S52281R
## 34635 S52281S
## 34636 S52282A
## 34637 S52282B
## 34638 S52282C
## 34639 S52282D
## 34640 S52282E
## 34641 S52282F
## 34642 S52282G
## 34643 S52282H
## 34644 S52282J
## 34645 S52282K
## 34646 S52282M
## 34647 S52282N
## 34648 S52282P
## 34649 S52282Q
## 34650 S52282R
## 34651 S52282S
## 34652 S52283A
## 34653 S52283B
## 34654 S52283C
## 34655 S52283D
## 34656 S52283E
## 34657 S52283F
## 34658 S52283G
## 34659 S52283H
## 34660 S52283J
## 34661 S52283K
## 34662 S52283M
## 34663 S52283N
## 34664 S52283P
## 34665 S52283Q
## 34666 S52283R
## 34667 S52283S
## 34668 S52291A
## 34669 S52291B
## 34670 S52291C
## 34671 S52291D
## 34672 S52291E
## 34673 S52291F
## 34674 S52291G
## 34675 S52291H
## 34676 S52291J
## 34677 S52291K
## 34678 S52291M
## 34679 S52291N
## 34680 S52291P
## 34681 S52291Q
## 34682 S52291R
## 34683 S52291S
## 34684 S52292A
## 34685 S52292B
## 34686 S52292C
## 34687 S52292D
## 34688 S52292E
## 34689 S52292F
## 34690 S52292G
## 34691 S52292H
## 34692 S52292J
## 34693 S52292K
## 34694 S52292M
## 34695 S52292N
## 34696 S52292P
## 34697 S52292Q
## 34698 S52292R
## 34699 S52292S
## 34700 S52299A
## 34701 S52299B
## 34702 S52299C
## 34703 S52299D
## 34704 S52299E
## 34705 S52299F
## 34706 S52299G
## 34707 S52299H
## 34708 S52299J
## 34709 S52299K
## 34710 S52299M
## 34711 S52299N
## 34712 S52299P
## 34713 S52299Q
## 34714 S52299R
## 34715 S52299S
## 34716 S52301A
## 34717 S52301B
## 34718 S52301C
## 34719 S52301D
## 34720 S52301E
## 34721 S52301F
## 34722 S52301G
## 34723 S52301H
## 34724 S52301J
## 34725 S52301K
## 34726 S52301M
## 34727 S52301N
## 34728 S52301P
## 34729 S52301Q
## 34730 S52301R
## 34731 S52301S
## 34732 S52302A
## 34733 S52302B
## 34734 S52302C
## 34735 S52302D
## 34736 S52302E
## 34737 S52302F
## 34738 S52302G
## 34739 S52302H
## 34740 S52302J
## 34741 S52302K
## 34742 S52302M
## 34743 S52302N
## 34744 S52302P
## 34745 S52302Q
## 34746 S52302R
## 34747 S52302S
## 34748 S52309A
## 34749 S52309B
## 34750 S52309C
## 34751 S52309D
## 34752 S52309E
## 34753 S52309F
## 34754 S52309G
## 34755 S52309H
## 34756 S52309J
## 34757 S52309K
## 34758 S52309M
## 34759 S52309N
## 34760 S52309P
## 34761 S52309Q
## 34762 S52309R
## 34763 S52309S
## 34764 S52311A
## 34765 S52311D
## 34766 S52311G
## 34767 S52311K
## 34768 S52311P
## 34769 S52311S
## 34770 S52312A
## 34771 S52312D
## 34772 S52312G
## 34773 S52312K
## 34774 S52312P
## 34775 S52312S
## 34776 S52319A
## 34777 S52319D
## 34778 S52319G
## 34779 S52319K
## 34780 S52319P
## 34781 S52319S
## 34782 S52321A
## 34783 S52321B
## 34784 S52321C
## 34785 S52321D
## 34786 S52321E
## 34787 S52321F
## 34788 S52321G
## 34789 S52321H
## 34790 S52321J
## 34791 S52321K
## 34792 S52321M
## 34793 S52321N
## 34794 S52321P
## 34795 S52321Q
## 34796 S52321R
## 34797 S52321S
## 34798 S52322A
## 34799 S52322B
## 34800 S52322C
## 34801 S52322D
## 34802 S52322E
## 34803 S52322F
## 34804 S52322G
## 34805 S52322H
## 34806 S52322J
## 34807 S52322K
## 34808 S52322M
## 34809 S52322N
## 34810 S52322P
## 34811 S52322Q
## 34812 S52322R
## 34813 S52322S
## 34814 S52323A
## 34815 S52323B
## 34816 S52323C
## 34817 S52323D
## 34818 S52323E
## 34819 S52323F
## 34820 S52323G
## 34821 S52323H
## 34822 S52323J
## 34823 S52323K
## 34824 S52323M
## 34825 S52323N
## 34826 S52323P
## 34827 S52323Q
## 34828 S52323R
## 34829 S52323S
## 34830 S52324A
## 34831 S52324B
## 34832 S52324C
## 34833 S52324D
## 34834 S52324E
## 34835 S52324F
## 34836 S52324G
## 34837 S52324H
## 34838 S52324J
## 34839 S52324K
## 34840 S52324M
## 34841 S52324N
## 34842 S52324P
## 34843 S52324Q
## 34844 S52324R
## 34845 S52324S
## 34846 S52325A
## 34847 S52325B
## 34848 S52325C
## 34849 S52325D
## 34850 S52325E
## 34851 S52325F
## 34852 S52325G
## 34853 S52325H
## 34854 S52325J
## 34855 S52325K
## 34856 S52325M
## 34857 S52325N
## 34858 S52325P
## 34859 S52325Q
## 34860 S52325R
## 34861 S52325S
## 34862 S52326A
## 34863 S52326B
## 34864 S52326C
## 34865 S52326D
## 34866 S52326E
## 34867 S52326F
## 34868 S52326G
## 34869 S52326H
## 34870 S52326J
## 34871 S52326K
## 34872 S52326M
## 34873 S52326N
## 34874 S52326P
## 34875 S52326Q
## 34876 S52326R
## 34877 S52326S
## 34878 S52331A
## 34879 S52331B
## 34880 S52331C
## 34881 S52331D
## 34882 S52331E
## 34883 S52331F
## 34884 S52331G
## 34885 S52331H
## 34886 S52331J
## 34887 S52331K
## 34888 S52331M
## 34889 S52331N
## 34890 S52331P
## 34891 S52331Q
## 34892 S52331R
## 34893 S52331S
## 34894 S52332A
## 34895 S52332B
## 34896 S52332C
## 34897 S52332D
## 34898 S52332E
## 34899 S52332F
## 34900 S52332G
## 34901 S52332H
## 34902 S52332J
## 34903 S52332K
## 34904 S52332M
## 34905 S52332N
## 34906 S52332P
## 34907 S52332Q
## 34908 S52332R
## 34909 S52332S
## 34910 S52333A
## 34911 S52333B
## 34912 S52333C
## 34913 S52333D
## 34914 S52333E
## 34915 S52333F
## 34916 S52333G
## 34917 S52333H
## 34918 S52333J
## 34919 S52333K
## 34920 S52333M
## 34921 S52333N
## 34922 S52333P
## 34923 S52333Q
## 34924 S52333R
## 34925 S52333S
## 34926 S52334A
## 34927 S52334B
## 34928 S52334C
## 34929 S52334D
## 34930 S52334E
## 34931 S52334F
## 34932 S52334G
## 34933 S52334H
## 34934 S52334J
## 34935 S52334K
## 34936 S52334M
## 34937 S52334N
## 34938 S52334P
## 34939 S52334Q
## 34940 S52334R
## 34941 S52334S
## 34942 S52335A
## 34943 S52335B
## 34944 S52335C
## 34945 S52335D
## 34946 S52335E
## 34947 S52335F
## 34948 S52335G
## 34949 S52335H
## 34950 S52335J
## 34951 S52335K
## 34952 S52335M
## 34953 S52335N
## 34954 S52335P
## 34955 S52335Q
## 34956 S52335R
## 34957 S52335S
## 34958 S52336A
## 34959 S52336B
## 34960 S52336C
## 34961 S52336D
## 34962 S52336E
## 34963 S52336F
## 34964 S52336G
## 34965 S52336H
## 34966 S52336J
## 34967 S52336K
## 34968 S52336M
## 34969 S52336N
## 34970 S52336P
## 34971 S52336Q
## 34972 S52336R
## 34973 S52336S
## 34974 S52341A
## 34975 S52341B
## 34976 S52341C
## 34977 S52341D
## 34978 S52341E
## 34979 S52341F
## 34980 S52341G
## 34981 S52341H
## 34982 S52341J
## 34983 S52341K
## 34984 S52341M
## 34985 S52341N
## 34986 S52341P
## 34987 S52341Q
## 34988 S52341R
## 34989 S52341S
## 34990 S52342A
## 34991 S52342B
## 34992 S52342C
## 34993 S52342D
## 34994 S52342E
## 34995 S52342F
## 34996 S52342G
## 34997 S52342H
## 34998 S52342J
## 34999 S52342K
## 35000 S52342M
## 35001 S52342N
## 35002 S52342P
## 35003 S52342Q
## 35004 S52342R
## 35005 S52342S
## 35006 S52343A
## 35007 S52343B
## 35008 S52343C
## 35009 S52343D
## 35010 S52343E
## 35011 S52343F
## 35012 S52343G
## 35013 S52343H
## 35014 S52343J
## 35015 S52343K
## 35016 S52343M
## 35017 S52343N
## 35018 S52343P
## 35019 S52343Q
## 35020 S52343R
## 35021 S52343S
## 35022 S52344A
## 35023 S52344B
## 35024 S52344C
## 35025 S52344D
## 35026 S52344E
## 35027 S52344F
## 35028 S52344G
## 35029 S52344H
## 35030 S52344J
## 35031 S52344K
## 35032 S52344M
## 35033 S52344N
## 35034 S52344P
## 35035 S52344Q
## 35036 S52344R
## 35037 S52344S
## 35038 S52345A
## 35039 S52345B
## 35040 S52345C
## 35041 S52345D
## 35042 S52345E
## 35043 S52345F
## 35044 S52345G
## 35045 S52345H
## 35046 S52345J
## 35047 S52345K
## 35048 S52345M
## 35049 S52345N
## 35050 S52345P
## 35051 S52345Q
## 35052 S52345R
## 35053 S52345S
## 35054 S52346A
## 35055 S52346B
## 35056 S52346C
## 35057 S52346D
## 35058 S52346E
## 35059 S52346F
## 35060 S52346G
## 35061 S52346H
## 35062 S52346J
## 35063 S52346K
## 35064 S52346M
## 35065 S52346N
## 35066 S52346P
## 35067 S52346Q
## 35068 S52346R
## 35069 S52346S
## 35070 S52351A
## 35071 S52351B
## 35072 S52351C
## 35073 S52351D
## 35074 S52351E
## 35075 S52351F
## 35076 S52351G
## 35077 S52351H
## 35078 S52351J
## 35079 S52351K
## 35080 S52351M
## 35081 S52351N
## 35082 S52351P
## 35083 S52351Q
## 35084 S52351R
## 35085 S52351S
## 35086 S52352A
## 35087 S52352B
## 35088 S52352C
## 35089 S52352D
## 35090 S52352E
## 35091 S52352F
## 35092 S52352G
## 35093 S52352H
## 35094 S52352J
## 35095 S52352K
## 35096 S52352M
## 35097 S52352N
## 35098 S52352P
## 35099 S52352Q
## 35100 S52352R
## 35101 S52352S
## 35102 S52353A
## 35103 S52353B
## 35104 S52353C
## 35105 S52353D
## 35106 S52353E
## 35107 S52353F
## 35108 S52353G
## 35109 S52353H
## 35110 S52353J
## 35111 S52353K
## 35112 S52353M
## 35113 S52353N
## 35114 S52353P
## 35115 S52353Q
## 35116 S52353R
## 35117 S52353S
## 35118 S52354A
## 35119 S52354B
## 35120 S52354C
## 35121 S52354D
## 35122 S52354E
## 35123 S52354F
## 35124 S52354G
## 35125 S52354H
## 35126 S52354J
## 35127 S52354K
## 35128 S52354M
## 35129 S52354N
## 35130 S52354P
## 35131 S52354Q
## 35132 S52354R
## 35133 S52354S
## 35134 S52355A
## 35135 S52355B
## 35136 S52355C
## 35137 S52355D
## 35138 S52355E
## 35139 S52355F
## 35140 S52355G
## 35141 S52355H
## 35142 S52355J
## 35143 S52355K
## 35144 S52355M
## 35145 S52355N
## 35146 S52355P
## 35147 S52355Q
## 35148 S52355R
## 35149 S52355S
## 35150 S52356A
## 35151 S52356B
## 35152 S52356C
## 35153 S52356D
## 35154 S52356E
## 35155 S52356F
## 35156 S52356G
## 35157 S52356H
## 35158 S52356J
## 35159 S52356K
## 35160 S52356M
## 35161 S52356N
## 35162 S52356P
## 35163 S52356Q
## 35164 S52356R
## 35165 S52356S
## 35166 S52361A
## 35167 S52361B
## 35168 S52361C
## 35169 S52361D
## 35170 S52361E
## 35171 S52361F
## 35172 S52361G
## 35173 S52361H
## 35174 S52361J
## 35175 S52361K
## 35176 S52361M
## 35177 S52361N
## 35178 S52361P
## 35179 S52361Q
## 35180 S52361R
## 35181 S52361S
## 35182 S52362A
## 35183 S52362B
## 35184 S52362C
## 35185 S52362D
## 35186 S52362E
## 35187 S52362F
## 35188 S52362G
## 35189 S52362H
## 35190 S52362J
## 35191 S52362K
## 35192 S52362M
## 35193 S52362N
## 35194 S52362P
## 35195 S52362Q
## 35196 S52362R
## 35197 S52362S
## 35198 S52363A
## 35199 S52363B
## 35200 S52363C
## 35201 S52363D
## 35202 S52363E
## 35203 S52363F
## 35204 S52363G
## 35205 S52363H
## 35206 S52363J
## 35207 S52363K
## 35208 S52363M
## 35209 S52363N
## 35210 S52363P
## 35211 S52363Q
## 35212 S52363R
## 35213 S52363S
## 35214 S52364A
## 35215 S52364B
## 35216 S52364C
## 35217 S52364D
## 35218 S52364E
## 35219 S52364F
## 35220 S52364G
## 35221 S52364H
## 35222 S52364J
## 35223 S52364K
## 35224 S52364M
## 35225 S52364N
## 35226 S52364P
## 35227 S52364Q
## 35228 S52364R
## 35229 S52364S
## 35230 S52365A
## 35231 S52365B
## 35232 S52365C
## 35233 S52365D
## 35234 S52365E
## 35235 S52365F
## 35236 S52365G
## 35237 S52365H
## 35238 S52365J
## 35239 S52365K
## 35240 S52365M
## 35241 S52365N
## 35242 S52365P
## 35243 S52365Q
## 35244 S52365R
## 35245 S52365S
## 35246 S52366A
## 35247 S52366B
## 35248 S52366C
## 35249 S52366D
## 35250 S52366E
## 35251 S52366F
## 35252 S52366G
## 35253 S52366H
## 35254 S52366J
## 35255 S52366K
## 35256 S52366M
## 35257 S52366N
## 35258 S52366P
## 35259 S52366Q
## 35260 S52366R
## 35261 S52366S
## 35262 S52371A
## 35263 S52371B
## 35264 S52371C
## 35265 S52371D
## 35266 S52371E
## 35267 S52371F
## 35268 S52371G
## 35269 S52371H
## 35270 S52371J
## 35271 S52371K
## 35272 S52371M
## 35273 S52371N
## 35274 S52371P
## 35275 S52371Q
## 35276 S52371R
## 35277 S52371S
## 35278 S52372A
## 35279 S52372B
## 35280 S52372C
## 35281 S52372D
## 35282 S52372E
## 35283 S52372F
## 35284 S52372G
## 35285 S52372H
## 35286 S52372J
## 35287 S52372K
## 35288 S52372M
## 35289 S52372N
## 35290 S52372P
## 35291 S52372Q
## 35292 S52372R
## 35293 S52372S
## 35294 S52379A
## 35295 S52379B
## 35296 S52379C
## 35297 S52379D
## 35298 S52379E
## 35299 S52379F
## 35300 S52379G
## 35301 S52379H
## 35302 S52379J
## 35303 S52379K
## 35304 S52379M
## 35305 S52379N
## 35306 S52379P
## 35307 S52379Q
## 35308 S52379R
## 35309 S52379S
## 35310 S52381A
## 35311 S52381B
## 35312 S52381C
## 35313 S52381D
## 35314 S52381E
## 35315 S52381F
## 35316 S52381G
## 35317 S52381H
## 35318 S52381J
## 35319 S52381K
## 35320 S52381M
## 35321 S52381N
## 35322 S52381P
## 35323 S52381Q
## 35324 S52381R
## 35325 S52381S
## 35326 S52382A
## 35327 S52382B
## 35328 S52382C
## 35329 S52382D
## 35330 S52382E
## 35331 S52382F
## 35332 S52382G
## 35333 S52382H
## 35334 S52382J
## 35335 S52382K
## 35336 S52382M
## 35337 S52382N
## 35338 S52382P
## 35339 S52382Q
## 35340 S52382R
## 35341 S52382S
## 35342 S52389A
## 35343 S52389B
## 35344 S52389C
## 35345 S52389D
## 35346 S52389E
## 35347 S52389F
## 35348 S52389G
## 35349 S52389H
## 35350 S52389J
## 35351 S52389K
## 35352 S52389M
## 35353 S52389N
## 35354 S52389P
## 35355 S52389Q
## 35356 S52389R
## 35357 S52389S
## 35358 S52391A
## 35359 S52391B
## 35360 S52391C
## 35361 S52391D
## 35362 S52391E
## 35363 S52391F
## 35364 S52391G
## 35365 S52391H
## 35366 S52391J
## 35367 S52391K
## 35368 S52391M
## 35369 S52391N
## 35370 S52391P
## 35371 S52391Q
## 35372 S52391R
## 35373 S52391S
## 35374 S52392A
## 35375 S52392B
## 35376 S52392C
## 35377 S52392D
## 35378 S52392E
## 35379 S52392F
## 35380 S52392G
## 35381 S52392H
## 35382 S52392J
## 35383 S52392K
## 35384 S52392M
## 35385 S52392N
## 35386 S52392P
## 35387 S52392Q
## 35388 S52392R
## 35389 S52392S
## 35390 S52399A
## 35391 S52399B
## 35392 S52399C
## 35393 S52399D
## 35394 S52399E
## 35395 S52399F
## 35396 S52399G
## 35397 S52399H
## 35398 S52399J
## 35399 S52399K
## 35400 S52399M
## 35401 S52399N
## 35402 S52399P
## 35403 S52399Q
## 35404 S52399R
## 35405 S52399S
## 35406 S52501A
## 35407 S52501B
## 35408 S52501C
## 35409 S52501D
## 35410 S52501E
## 35411 S52501F
## 35412 S52501G
## 35413 S52501H
## 35414 S52501J
## 35415 S52501K
## 35416 S52501M
## 35417 S52501N
## 35418 S52501P
## 35419 S52501Q
## 35420 S52501R
## 35421 S52501S
## 35422 S52502A
## 35423 S52502B
## 35424 S52502C
## 35425 S52502D
## 35426 S52502E
## 35427 S52502F
## 35428 S52502G
## 35429 S52502H
## 35430 S52502J
## 35431 S52502K
## 35432 S52502M
## 35433 S52502N
## 35434 S52502P
## 35435 S52502Q
## 35436 S52502R
## 35437 S52502S
## 35438 S52509A
## 35439 S52509B
## 35440 S52509C
## 35441 S52509D
## 35442 S52509E
## 35443 S52509F
## 35444 S52509G
## 35445 S52509H
## 35446 S52509J
## 35447 S52509K
## 35448 S52509M
## 35449 S52509N
## 35450 S52509P
## 35451 S52509Q
## 35452 S52509R
## 35453 S52509S
## 35454 S52511A
## 35455 S52511B
## 35456 S52511C
## 35457 S52511D
## 35458 S52511E
## 35459 S52511F
## 35460 S52511G
## 35461 S52511H
## 35462 S52511J
## 35463 S52511K
## 35464 S52511M
## 35465 S52511N
## 35466 S52511P
## 35467 S52511Q
## 35468 S52511R
## 35469 S52511S
## 35470 S52512A
## 35471 S52512B
## 35472 S52512C
## 35473 S52512D
## 35474 S52512E
## 35475 S52512F
## 35476 S52512G
## 35477 S52512H
## 35478 S52512J
## 35479 S52512K
## 35480 S52512M
## 35481 S52512N
## 35482 S52512P
## 35483 S52512Q
## 35484 S52512R
## 35485 S52512S
## 35486 S52513A
## 35487 S52513B
## 35488 S52513C
## 35489 S52513D
## 35490 S52513E
## 35491 S52513F
## 35492 S52513G
## 35493 S52513H
## 35494 S52513J
## 35495 S52513K
## 35496 S52513M
## 35497 S52513N
## 35498 S52513P
## 35499 S52513Q
## 35500 S52513R
## 35501 S52513S
## 35502 S52514A
## 35503 S52514B
## 35504 S52514C
## 35505 S52514D
## 35506 S52514E
## 35507 S52514F
## 35508 S52514G
## 35509 S52514H
## 35510 S52514J
## 35511 S52514K
## 35512 S52514M
## 35513 S52514N
## 35514 S52514P
## 35515 S52514Q
## 35516 S52514R
## 35517 S52514S
## 35518 S52515A
## 35519 S52515B
## 35520 S52515C
## 35521 S52515D
## 35522 S52515E
## 35523 S52515F
## 35524 S52515G
## 35525 S52515H
## 35526 S52515J
## 35527 S52515K
## 35528 S52515M
## 35529 S52515N
## 35530 S52515P
## 35531 S52515Q
## 35532 S52515R
## 35533 S52515S
## 35534 S52516A
## 35535 S52516B
## 35536 S52516C
## 35537 S52516D
## 35538 S52516E
## 35539 S52516F
## 35540 S52516G
## 35541 S52516H
## 35542 S52516J
## 35543 S52516K
## 35544 S52516M
## 35545 S52516N
## 35546 S52516P
## 35547 S52516Q
## 35548 S52516R
## 35549 S52516S
## 35550 S52521A
## 35551 S52521D
## 35552 S52521G
## 35553 S52521K
## 35554 S52521P
## 35555 S52521S
## 35556 S52522A
## 35557 S52522D
## 35558 S52522G
## 35559 S52522K
## 35560 S52522P
## 35561 S52522S
## 35562 S52529A
## 35563 S52529D
## 35564 S52529G
## 35565 S52529K
## 35566 S52529P
## 35567 S52529S
## 35568 S52531A
## 35569 S52531B
## 35570 S52531C
## 35571 S52531D
## 35572 S52531E
## 35573 S52531F
## 35574 S52531G
## 35575 S52531H
## 35576 S52531J
## 35577 S52531K
## 35578 S52531M
## 35579 S52531N
## 35580 S52531P
## 35581 S52531Q
## 35582 S52531R
## 35583 S52531S
## 35584 S52532A
## 35585 S52532B
## 35586 S52532C
## 35587 S52532D
## 35588 S52532E
## 35589 S52532F
## 35590 S52532G
## 35591 S52532H
## 35592 S52532J
## 35593 S52532K
## 35594 S52532M
## 35595 S52532N
## 35596 S52532P
## 35597 S52532Q
## 35598 S52532R
## 35599 S52532S
## 35600 S52539A
## 35601 S52539B
## 35602 S52539C
## 35603 S52539D
## 35604 S52539E
## 35605 S52539F
## 35606 S52539G
## 35607 S52539H
## 35608 S52539J
## 35609 S52539K
## 35610 S52539M
## 35611 S52539N
## 35612 S52539P
## 35613 S52539Q
## 35614 S52539R
## 35615 S52539S
## 35616 S52541A
## 35617 S52541B
## 35618 S52541C
## 35619 S52541D
## 35620 S52541E
## 35621 S52541F
## 35622 S52541G
## 35623 S52541H
## 35624 S52541J
## 35625 S52541K
## 35626 S52541M
## 35627 S52541N
## 35628 S52541P
## 35629 S52541Q
## 35630 S52541R
## 35631 S52541S
## 35632 S52542A
## 35633 S52542B
## 35634 S52542C
## 35635 S52542D
## 35636 S52542E
## 35637 S52542F
## 35638 S52542G
## 35639 S52542H
## 35640 S52542J
## 35641 S52542K
## 35642 S52542M
## 35643 S52542N
## 35644 S52542P
## 35645 S52542Q
## 35646 S52542R
## 35647 S52542S
## 35648 S52549A
## 35649 S52549B
## 35650 S52549C
## 35651 S52549D
## 35652 S52549E
## 35653 S52549F
## 35654 S52549G
## 35655 S52549H
## 35656 S52549J
## 35657 S52549K
## 35658 S52549M
## 35659 S52549N
## 35660 S52549P
## 35661 S52549Q
## 35662 S52549R
## 35663 S52549S
## 35664 S52551A
## 35665 S52551B
## 35666 S52551C
## 35667 S52551D
## 35668 S52551E
## 35669 S52551F
## 35670 S52551G
## 35671 S52551H
## 35672 S52551J
## 35673 S52551K
## 35674 S52551M
## 35675 S52551N
## 35676 S52551P
## 35677 S52551Q
## 35678 S52551R
## 35679 S52551S
## 35680 S52552A
## 35681 S52552B
## 35682 S52552C
## 35683 S52552D
## 35684 S52552E
## 35685 S52552F
## 35686 S52552G
## 35687 S52552H
## 35688 S52552J
## 35689 S52552K
## 35690 S52552M
## 35691 S52552N
## 35692 S52552P
## 35693 S52552Q
## 35694 S52552R
## 35695 S52552S
## 35696 S52559A
## 35697 S52559B
## 35698 S52559C
## 35699 S52559D
## 35700 S52559E
## 35701 S52559F
## 35702 S52559G
## 35703 S52559H
## 35704 S52559J
## 35705 S52559K
## 35706 S52559M
## 35707 S52559N
## 35708 S52559P
## 35709 S52559Q
## 35710 S52559R
## 35711 S52559S
## 35712 S52561A
## 35713 S52561B
## 35714 S52561C
## 35715 S52561D
## 35716 S52561E
## 35717 S52561F
## 35718 S52561G
## 35719 S52561H
## 35720 S52561J
## 35721 S52561K
## 35722 S52561M
## 35723 S52561N
## 35724 S52561P
## 35725 S52561Q
## 35726 S52561R
## 35727 S52561S
## 35728 S52562A
## 35729 S52562B
## 35730 S52562C
## 35731 S52562D
## 35732 S52562E
## 35733 S52562F
## 35734 S52562G
## 35735 S52562H
## 35736 S52562J
## 35737 S52562K
## 35738 S52562M
## 35739 S52562N
## 35740 S52562P
## 35741 S52562Q
## 35742 S52562R
## 35743 S52562S
## 35744 S52569A
## 35745 S52569B
## 35746 S52569C
## 35747 S52569D
## 35748 S52569E
## 35749 S52569F
## 35750 S52569G
## 35751 S52569H
## 35752 S52569J
## 35753 S52569K
## 35754 S52569M
## 35755 S52569N
## 35756 S52569P
## 35757 S52569Q
## 35758 S52569R
## 35759 S52569S
## 35760 S52571A
## 35761 S52571B
## 35762 S52571C
## 35763 S52571D
## 35764 S52571E
## 35765 S52571F
## 35766 S52571G
## 35767 S52571H
## 35768 S52571J
## 35769 S52571K
## 35770 S52571M
## 35771 S52571N
## 35772 S52571P
## 35773 S52571Q
## 35774 S52571R
## 35775 S52571S
## 35776 S52572A
## 35777 S52572B
## 35778 S52572C
## 35779 S52572D
## 35780 S52572E
## 35781 S52572F
## 35782 S52572G
## 35783 S52572H
## 35784 S52572J
## 35785 S52572K
## 35786 S52572M
## 35787 S52572N
## 35788 S52572P
## 35789 S52572Q
## 35790 S52572R
## 35791 S52572S
## 35792 S52579A
## 35793 S52579B
## 35794 S52579C
## 35795 S52579D
## 35796 S52579E
## 35797 S52579F
## 35798 S52579G
## 35799 S52579H
## 35800 S52579J
## 35801 S52579K
## 35802 S52579M
## 35803 S52579N
## 35804 S52579P
## 35805 S52579Q
## 35806 S52579R
## 35807 S52579S
## 35808 S52591A
## 35809 S52591B
## 35810 S52591C
## 35811 S52591D
## 35812 S52591E
## 35813 S52591F
## 35814 S52591G
## 35815 S52591H
## 35816 S52591J
## 35817 S52591K
## 35818 S52591M
## 35819 S52591N
## 35820 S52591P
## 35821 S52591Q
## 35822 S52591R
## 35823 S52591S
## 35824 S52592A
## 35825 S52592B
## 35826 S52592C
## 35827 S52592D
## 35828 S52592E
## 35829 S52592F
## 35830 S52592G
## 35831 S52592H
## 35832 S52592J
## 35833 S52592K
## 35834 S52592M
## 35835 S52592N
## 35836 S52592P
## 35837 S52592Q
## 35838 S52592R
## 35839 S52592S
## 35840 S52599A
## 35841 S52599B
## 35842 S52599C
## 35843 S52599D
## 35844 S52599E
## 35845 S52599F
## 35846 S52599G
## 35847 S52599H
## 35848 S52599J
## 35849 S52599K
## 35850 S52599M
## 35851 S52599N
## 35852 S52599P
## 35853 S52599Q
## 35854 S52599R
## 35855 S52599S
## 35856 S52601A
## 35857 S52601B
## 35858 S52601C
## 35859 S52601D
## 35860 S52601E
## 35861 S52601F
## 35862 S52601G
## 35863 S52601H
## 35864 S52601J
## 35865 S52601K
## 35866 S52601M
## 35867 S52601N
## 35868 S52601P
## 35869 S52601Q
## 35870 S52601R
## 35871 S52601S
## 35872 S52602A
## 35873 S52602B
## 35874 S52602C
## 35875 S52602D
## 35876 S52602E
## 35877 S52602F
## 35878 S52602G
## 35879 S52602H
## 35880 S52602J
## 35881 S52602K
## 35882 S52602M
## 35883 S52602N
## 35884 S52602P
## 35885 S52602Q
## 35886 S52602R
## 35887 S52602S
## 35888 S52609A
## 35889 S52609B
## 35890 S52609C
## 35891 S52609D
## 35892 S52609E
## 35893 S52609F
## 35894 S52609G
## 35895 S52609H
## 35896 S52609J
## 35897 S52609K
## 35898 S52609M
## 35899 S52609N
## 35900 S52609P
## 35901 S52609Q
## 35902 S52609R
## 35903 S52609S
## 35904 S52611A
## 35905 S52611B
## 35906 S52611C
## 35907 S52611D
## 35908 S52611E
## 35909 S52611F
## 35910 S52611G
## 35911 S52611H
## 35912 S52611J
## 35913 S52611K
## 35914 S52611M
## 35915 S52611N
## 35916 S52611P
## 35917 S52611Q
## 35918 S52611R
## 35919 S52611S
## 35920 S52612A
## 35921 S52612B
## 35922 S52612C
## 35923 S52612D
## 35924 S52612E
## 35925 S52612F
## 35926 S52612G
## 35927 S52612H
## 35928 S52612J
## 35929 S52612K
## 35930 S52612M
## 35931 S52612N
## 35932 S52612P
## 35933 S52612Q
## 35934 S52612R
## 35935 S52612S
## 35936 S52613A
## 35937 S52613B
## 35938 S52613C
## 35939 S52613D
## 35940 S52613E
## 35941 S52613F
## 35942 S52613G
## 35943 S52613H
## 35944 S52613J
## 35945 S52613K
## 35946 S52613M
## 35947 S52613N
## 35948 S52613P
## 35949 S52613Q
## 35950 S52613R
## 35951 S52613S
## 35952 S52614A
## 35953 S52614B
## 35954 S52614C
## 35955 S52614D
## 35956 S52614E
## 35957 S52614F
## 35958 S52614G
## 35959 S52614H
## 35960 S52614J
## 35961 S52614K
## 35962 S52614M
## 35963 S52614N
## 35964 S52614P
## 35965 S52614Q
## 35966 S52614R
## 35967 S52614S
## 35968 S52615A
## 35969 S52615B
## 35970 S52615C
## 35971 S52615D
## 35972 S52615E
## 35973 S52615F
## 35974 S52615G
## 35975 S52615H
## 35976 S52615J
## 35977 S52615K
## 35978 S52615M
## 35979 S52615N
## 35980 S52615P
## 35981 S52615Q
## 35982 S52615R
## 35983 S52615S
## 35984 S52616A
## 35985 S52616B
## 35986 S52616C
## 35987 S52616D
## 35988 S52616E
## 35989 S52616F
## 35990 S52616G
## 35991 S52616H
## 35992 S52616J
## 35993 S52616K
## 35994 S52616M
## 35995 S52616N
## 35996 S52616P
## 35997 S52616Q
## 35998 S52616R
## 35999 S52616S
## 36000 S52621A
## 36001 S52621D
## 36002 S52621G
## 36003 S52621K
## 36004 S52621P
## 36005 S52621S
## 36006 S52622A
## 36007 S52622D
## 36008 S52622G
## 36009 S52622K
## 36010 S52622P
## 36011 S52622S
## 36012 S52629A
## 36013 S52629D
## 36014 S52629G
## 36015 S52629K
## 36016 S52629P
## 36017 S52629S
## 36018 S52691A
## 36019 S52691B
## 36020 S52691C
## 36021 S52691D
## 36022 S52691E
## 36023 S52691F
## 36024 S52691G
## 36025 S52691H
## 36026 S52691J
## 36027 S52691K
## 36028 S52691M
## 36029 S52691N
## 36030 S52691P
## 36031 S52691Q
## 36032 S52691R
## 36033 S52691S
## 36034 S52692A
## 36035 S52692B
## 36036 S52692C
## 36037 S52692D
## 36038 S52692E
## 36039 S52692F
## 36040 S52692G
## 36041 S52692H
## 36042 S52692J
## 36043 S52692K
## 36044 S52692M
## 36045 S52692N
## 36046 S52692P
## 36047 S52692Q
## 36048 S52692R
## 36049 S52692S
## 36050 S52699A
## 36051 S52699B
## 36052 S52699C
## 36053 S52699D
## 36054 S52699E
## 36055 S52699F
## 36056 S52699G
## 36057 S52699H
## 36058 S52699J
## 36059 S52699K
## 36060 S52699M
## 36061 S52699N
## 36062 S52699P
## 36063 S52699Q
## 36064 S52699R
## 36065 S52699S
## 36066 S5290XA
## 36067 S5290XB
## 36068 S5290XC
## 36069 S5290XD
## 36070 S5290XE
## 36071 S5290XF
## 36072 S5290XG
## 36073 S5290XH
## 36074 S5290XJ
## 36075 S5290XK
## 36076 S5290XM
## 36077 S5290XN
## 36078 S5290XP
## 36079 S5290XQ
## 36080 S5290XR
## 36081 S5290XS
## 36082 S5291XA
## 36083 S5291XB
## 36084 S5291XC
## 36085 S5291XD
## 36086 S5291XE
## 36087 S5291XF
## 36088 S5291XG
## 36089 S5291XH
## 36090 S5291XJ
## 36091 S5291XK
## 36092 S5291XM
## 36093 S5291XN
## 36094 S5291XP
## 36095 S5291XQ
## 36096 S5291XR
## 36097 S5291XS
## 36098 S5292XA
## 36099 S5292XB
## 36100 S5292XC
## 36101 S5292XD
## 36102 S5292XE
## 36103 S5292XF
## 36104 S5292XG
## 36105 S5292XH
## 36106 S5292XJ
## 36107 S5292XK
## 36108 S5292XM
## 36109 S5292XN
## 36110 S5292XP
## 36111 S5292XQ
## 36112 S5292XR
## 36113 S5292XS
## 36114 S53001A
## 36115 S53001D
## 36116 S53001S
## 36117 S53002A
## 36118 S53002D
## 36119 S53002S
## 36120 S53003A
## 36121 S53003D
## 36122 S53003S
## 36123 S53004A
## 36124 S53004D
## 36125 S53004S
## 36126 S53005A
## 36127 S53005D
## 36128 S53005S
## 36129 S53006A
## 36130 S53006D
## 36131 S53006S
## 36132 S53011A
## 36133 S53011D
## 36134 S53011S
## 36135 S53012A
## 36136 S53012D
## 36137 S53012S
## 36138 S53013A
## 36139 S53013D
## 36140 S53013S
## 36141 S53014A
## 36142 S53014D
## 36143 S53014S
## 36144 S53015A
## 36145 S53015D
## 36146 S53015S
## 36147 S53016A
## 36148 S53016D
## 36149 S53016S
## 36150 S53021A
## 36151 S53021D
## 36152 S53021S
## 36153 S53022A
## 36154 S53022D
## 36155 S53022S
## 36156 S53023A
## 36157 S53023D
## 36158 S53023S
## 36159 S53024A
## 36160 S53024D
## 36161 S53024S
## 36162 S53025A
## 36163 S53025D
## 36164 S53025S
## 36165 S53026A
## 36166 S53026D
## 36167 S53026S
## 36168 S53031A
## 36169 S53031D
## 36170 S53031S
## 36171 S53032A
## 36172 S53032D
## 36173 S53032S
## 36174 S53033A
## 36175 S53033D
## 36176 S53033S
## 36177 S53091A
## 36178 S53091D
## 36179 S53091S
## 36180 S53092A
## 36181 S53092D
## 36182 S53092S
## 36183 S53093A
## 36184 S53093D
## 36185 S53093S
## 36186 S53094A
## 36187 S53094D
## 36188 S53094S
## 36189 S53095A
## 36190 S53095D
## 36191 S53095S
## 36192 S53096A
## 36193 S53096D
## 36194 S53096S
## 36195 S53101A
## 36196 S53101D
## 36197 S53101S
## 36198 S53102A
## 36199 S53102D
## 36200 S53102S
## 36201 S53103A
## 36202 S53103D
## 36203 S53103S
## 36204 S53104A
## 36205 S53104D
## 36206 S53104S
## 36207 S53105A
## 36208 S53105D
## 36209 S53105S
## 36210 S53106A
## 36211 S53106D
## 36212 S53106S
## 36213 S53111A
## 36214 S53111D
## 36215 S53111S
## 36216 S53112A
## 36217 S53112D
## 36218 S53112S
## 36219 S53113A
## 36220 S53113D
## 36221 S53113S
## 36222 S53114A
## 36223 S53114D
## 36224 S53114S
## 36225 S53115A
## 36226 S53115D
## 36227 S53115S
## 36228 S53116A
## 36229 S53116D
## 36230 S53116S
## 36231 S53121A
## 36232 S53121D
## 36233 S53121S
## 36234 S53122A
## 36235 S53122D
## 36236 S53122S
## 36237 S53123A
## 36238 S53123D
## 36239 S53123S
## 36240 S53124A
## 36241 S53124D
## 36242 S53124S
## 36243 S53125A
## 36244 S53125D
## 36245 S53125S
## 36246 S53126A
## 36247 S53126D
## 36248 S53126S
## 36249 S53131A
## 36250 S53131D
## 36251 S53131S
## 36252 S53132A
## 36253 S53132D
## 36254 S53132S
## 36255 S53133A
## 36256 S53133D
## 36257 S53133S
## 36258 S53134A
## 36259 S53134D
## 36260 S53134S
## 36261 S53135A
## 36262 S53135D
## 36263 S53135S
## 36264 S53136A
## 36265 S53136D
## 36266 S53136S
## 36267 S53141A
## 36268 S53141D
## 36269 S53141S
## 36270 S53142A
## 36271 S53142D
## 36272 S53142S
## 36273 S53143A
## 36274 S53143D
## 36275 S53143S
## 36276 S53144A
## 36277 S53144D
## 36278 S53144S
## 36279 S53145A
## 36280 S53145D
## 36281 S53145S
## 36282 S53146A
## 36283 S53146D
## 36284 S53146S
## 36285 S53191A
## 36286 S53191D
## 36287 S53191S
## 36288 S53192A
## 36289 S53192D
## 36290 S53192S
## 36291 S53193A
## 36292 S53193D
## 36293 S53193S
## 36294 S53194A
## 36295 S53194D
## 36296 S53194S
## 36297 S53195A
## 36298 S53195D
## 36299 S53195S
## 36300 S53196A
## 36301 S53196D
## 36302 S53196S
## 36303 S5320XA
## 36304 S5320XD
## 36305 S5320XS
## 36306 S5321XA
## 36307 S5321XD
## 36308 S5321XS
## 36309 S5322XA
## 36310 S5322XD
## 36311 S5322XS
## 36312 S5330XA
## 36313 S5330XD
## 36314 S5330XS
## 36315 S5331XA
## 36316 S5331XD
## 36317 S5331XS
## 36318 S5332XA
## 36319 S5332XD
## 36320 S5332XS
## 36321 S53401A
## 36322 S53401D
## 36323 S53401S
## 36324 S53402A
## 36325 S53402D
## 36326 S53402S
## 36327 S53409A
## 36328 S53409D
## 36329 S53409S
## 36330 S53411A
## 36331 S53411D
## 36332 S53411S
## 36333 S53412A
## 36334 S53412D
## 36335 S53412S
## 36336 S53419A
## 36337 S53419D
## 36338 S53419S
## 36339 S53421A
## 36340 S53421D
## 36341 S53421S
## 36342 S53422A
## 36343 S53422D
## 36344 S53422S
## 36345 S53429A
## 36346 S53429D
## 36347 S53429S
## 36348 S53431A
## 36349 S53431D
## 36350 S53431S
## 36351 S53432A
## 36352 S53432D
## 36353 S53432S
## 36354 S53439A
## 36355 S53439D
## 36356 S53439S
## 36357 S53441A
## 36358 S53441D
## 36359 S53441S
## 36360 S53442A
## 36361 S53442D
## 36362 S53442S
## 36363 S53449A
## 36364 S53449D
## 36365 S53449S
## 36366 S53491A
## 36367 S53491D
## 36368 S53491S
## 36369 S53492A
## 36370 S53492D
## 36371 S53492S
## 36372 S53499A
## 36373 S53499D
## 36374 S53499S
## 36375 S5400XA
## 36376 S5400XD
## 36377 S5400XS
## 36378 S5401XA
## 36379 S5401XD
## 36380 S5401XS
## 36381 S5402XA
## 36382 S5402XD
## 36383 S5402XS
## 36384 S5410XA
## 36385 S5410XD
## 36386 S5410XS
## 36387 S5411XA
## 36388 S5411XD
## 36389 S5411XS
## 36390 S5412XA
## 36391 S5412XD
## 36392 S5412XS
## 36393 S5420XA
## 36394 S5420XD
## 36395 S5420XS
## 36396 S5421XA
## 36397 S5421XD
## 36398 S5421XS
## 36399 S5422XA
## 36400 S5422XD
## 36401 S5422XS
## 36402 S5430XA
## 36403 S5430XD
## 36404 S5430XS
## 36405 S5431XA
## 36406 S5431XD
## 36407 S5431XS
## 36408 S5432XA
## 36409 S5432XD
## 36410 S5432XS
## 36411 S548X1A
## 36412 S548X1D
## 36413 S548X1S
## 36414 S548X2A
## 36415 S548X2D
## 36416 S548X2S
## 36417 S548X9A
## 36418 S548X9D
## 36419 S548X9S
## 36420 S5490XA
## 36421 S5490XD
## 36422 S5490XS
## 36423 S5491XA
## 36424 S5491XD
## 36425 S5491XS
## 36426 S5492XA
## 36427 S5492XD
## 36428 S5492XS
## 36429 S55001A
## 36430 S55001D
## 36431 S55001S
## 36432 S55002A
## 36433 S55002D
## 36434 S55002S
## 36435 S55009A
## 36436 S55009D
## 36437 S55009S
## 36438 S55011A
## 36439 S55011D
## 36440 S55011S
## 36441 S55012A
## 36442 S55012D
## 36443 S55012S
## 36444 S55019A
## 36445 S55019D
## 36446 S55019S
## 36447 S55091A
## 36448 S55091D
## 36449 S55091S
## 36450 S55092A
## 36451 S55092D
## 36452 S55092S
## 36453 S55099A
## 36454 S55099D
## 36455 S55099S
## 36456 S55101A
## 36457 S55101D
## 36458 S55101S
## 36459 S55102A
## 36460 S55102D
## 36461 S55102S
## 36462 S55109A
## 36463 S55109D
## 36464 S55109S
## 36465 S55111A
## 36466 S55111D
## 36467 S55111S
## 36468 S55112A
## 36469 S55112D
## 36470 S55112S
## 36471 S55119A
## 36472 S55119D
## 36473 S55119S
## 36474 S55191A
## 36475 S55191D
## 36476 S55191S
## 36477 S55192A
## 36478 S55192D
## 36479 S55192S
## 36480 S55199A
## 36481 S55199D
## 36482 S55199S
## 36483 S55201A
## 36484 S55201D
## 36485 S55201S
## 36486 S55202A
## 36487 S55202D
## 36488 S55202S
## 36489 S55209A
## 36490 S55209D
## 36491 S55209S
## 36492 S55211A
## 36493 S55211D
## 36494 S55211S
## 36495 S55212A
## 36496 S55212D
## 36497 S55212S
## 36498 S55219A
## 36499 S55219D
## 36500 S55219S
## 36501 S55291A
## 36502 S55291D
## 36503 S55291S
## 36504 S55292A
## 36505 S55292D
## 36506 S55292S
## 36507 S55299A
## 36508 S55299D
## 36509 S55299S
## 36510 S55801A
## 36511 S55801D
## 36512 S55801S
## 36513 S55802A
## 36514 S55802D
## 36515 S55802S
## 36516 S55809A
## 36517 S55809D
## 36518 S55809S
## 36519 S55811A
## 36520 S55811D
## 36521 S55811S
## 36522 S55812A
## 36523 S55812D
## 36524 S55812S
## 36525 S55819A
## 36526 S55819D
## 36527 S55819S
## 36528 S55891A
## 36529 S55891D
## 36530 S55891S
## 36531 S55892A
## 36532 S55892D
## 36533 S55892S
## 36534 S55899A
## 36535 S55899D
## 36536 S55899S
## 36537 S55901A
## 36538 S55901D
## 36539 S55901S
## 36540 S55902A
## 36541 S55902D
## 36542 S55902S
## 36543 S55909A
## 36544 S55909D
## 36545 S55909S
## 36546 S55911A
## 36547 S55911D
## 36548 S55911S
## 36549 S55912A
## 36550 S55912D
## 36551 S55912S
## 36552 S55919A
## 36553 S55919D
## 36554 S55919S
## 36555 S55991A
## 36556 S55991D
## 36557 S55991S
## 36558 S55992A
## 36559 S55992D
## 36560 S55992S
## 36561 S55999A
## 36562 S55999D
## 36563 S55999S
## 36564 S56001A
## 36565 S56001D
## 36566 S56001S
## 36567 S56002A
## 36568 S56002D
## 36569 S56002S
## 36570 S56009A
## 36571 S56009D
## 36572 S56009S
## 36573 S56011A
## 36574 S56011D
## 36575 S56011S
## 36576 S56012A
## 36577 S56012D
## 36578 S56012S
## 36579 S56019A
## 36580 S56019D
## 36581 S56019S
## 36582 S56021A
## 36583 S56021D
## 36584 S56021S
## 36585 S56022A
## 36586 S56022D
## 36587 S56022S
## 36588 S56029A
## 36589 S56029D
## 36590 S56029S
## 36591 S56091A
## 36592 S56091D
## 36593 S56091S
## 36594 S56092A
## 36595 S56092D
## 36596 S56092S
## 36597 S56099A
## 36598 S56099D
## 36599 S56099S
## 36600 S56101A
## 36601 S56101D
## 36602 S56101S
## 36603 S56102A
## 36604 S56102D
## 36605 S56102S
## 36606 S56103A
## 36607 S56103D
## 36608 S56103S
## 36609 S56104A
## 36610 S56104D
## 36611 S56104S
## 36612 S56105A
## 36613 S56105D
## 36614 S56105S
## 36615 S56106A
## 36616 S56106D
## 36617 S56106S
## 36618 S56107A
## 36619 S56107D
## 36620 S56107S
## 36621 S56108A
## 36622 S56108D
## 36623 S56108S
## 36624 S56109A
## 36625 S56109D
## 36626 S56109S
## 36627 S56111A
## 36628 S56111D
## 36629 S56111S
## 36630 S56112A
## 36631 S56112D
## 36632 S56112S
## 36633 S56113A
## 36634 S56113D
## 36635 S56113S
## 36636 S56114A
## 36637 S56114D
## 36638 S56114S
## 36639 S56115A
## 36640 S56115D
## 36641 S56115S
## 36642 S56116A
## 36643 S56116D
## 36644 S56116S
## 36645 S56117A
## 36646 S56117D
## 36647 S56117S
## 36648 S56118A
## 36649 S56118D
## 36650 S56118S
## 36651 S56119A
## 36652 S56119D
## 36653 S56119S
## 36654 S56121A
## 36655 S56121D
## 36656 S56121S
## 36657 S56122A
## 36658 S56122D
## 36659 S56122S
## 36660 S56123A
## 36661 S56123D
## 36662 S56123S
## 36663 S56124A
## 36664 S56124D
## 36665 S56124S
## 36666 S56125A
## 36667 S56125D
## 36668 S56125S
## 36669 S56126A
## 36670 S56126D
## 36671 S56126S
## 36672 S56127A
## 36673 S56127D
## 36674 S56127S
## 36675 S56128A
## 36676 S56128D
## 36677 S56128S
## 36678 S56129A
## 36679 S56129D
## 36680 S56129S
## 36681 S56191A
## 36682 S56191D
## 36683 S56191S
## 36684 S56192A
## 36685 S56192D
## 36686 S56192S
## 36687 S56193A
## 36688 S56193D
## 36689 S56193S
## 36690 S56194A
## 36691 S56194D
## 36692 S56194S
## 36693 S56195A
## 36694 S56195D
## 36695 S56195S
## 36696 S56196A
## 36697 S56196D
## 36698 S56196S
## 36699 S56197A
## 36700 S56197D
## 36701 S56197S
## 36702 S56198A
## 36703 S56198D
## 36704 S56198S
## 36705 S56199A
## 36706 S56199D
## 36707 S56199S
## 36708 S56201A
## 36709 S56201D
## 36710 S56201S
## 36711 S56202A
## 36712 S56202D
## 36713 S56202S
## 36714 S56209A
## 36715 S56209D
## 36716 S56209S
## 36717 S56211A
## 36718 S56211D
## 36719 S56211S
## 36720 S56212A
## 36721 S56212D
## 36722 S56212S
## 36723 S56219A
## 36724 S56219D
## 36725 S56219S
## 36726 S56221A
## 36727 S56221D
## 36728 S56221S
## 36729 S56222A
## 36730 S56222D
## 36731 S56222S
## 36732 S56229A
## 36733 S56229D
## 36734 S56229S
## 36735 S56291A
## 36736 S56291D
## 36737 S56291S
## 36738 S56292A
## 36739 S56292D
## 36740 S56292S
## 36741 S56299A
## 36742 S56299D
## 36743 S56299S
## 36744 S56301A
## 36745 S56301D
## 36746 S56301S
## 36747 S56302A
## 36748 S56302D
## 36749 S56302S
## 36750 S56309A
## 36751 S56309D
## 36752 S56309S
## 36753 S56311A
## 36754 S56311D
## 36755 S56311S
## 36756 S56312A
## 36757 S56312D
## 36758 S56312S
## 36759 S56319A
## 36760 S56319D
## 36761 S56319S
## 36762 S56321A
## 36763 S56321D
## 36764 S56321S
## 36765 S56322A
## 36766 S56322D
## 36767 S56322S
## 36768 S56329A
## 36769 S56329D
## 36770 S56329S
## 36771 S56391A
## 36772 S56391D
## 36773 S56391S
## 36774 S56392A
## 36775 S56392D
## 36776 S56392S
## 36777 S56399A
## 36778 S56399D
## 36779 S56399S
## 36780 S56401A
## 36781 S56401D
## 36782 S56401S
## 36783 S56402A
## 36784 S56402D
## 36785 S56402S
## 36786 S56403A
## 36787 S56403D
## 36788 S56403S
## 36789 S56404A
## 36790 S56404D
## 36791 S56404S
## 36792 S56405A
## 36793 S56405D
## 36794 S56405S
## 36795 S56406A
## 36796 S56406D
## 36797 S56406S
## 36798 S56407A
## 36799 S56407D
## 36800 S56407S
## 36801 S56408A
## 36802 S56408D
## 36803 S56408S
## 36804 S56409A
## 36805 S56409D
## 36806 S56409S
## 36807 S56411A
## 36808 S56411D
## 36809 S56411S
## 36810 S56412A
## 36811 S56412D
## 36812 S56412S
## 36813 S56413A
## 36814 S56413D
## 36815 S56413S
## 36816 S56414A
## 36817 S56414D
## 36818 S56414S
## 36819 S56415A
## 36820 S56415D
## 36821 S56415S
## 36822 S56416A
## 36823 S56416D
## 36824 S56416S
## 36825 S56417A
## 36826 S56417D
## 36827 S56417S
## 36828 S56418A
## 36829 S56418D
## 36830 S56418S
## 36831 S56419A
## 36832 S56419D
## 36833 S56419S
## 36834 S56421A
## 36835 S56421D
## 36836 S56421S
## 36837 S56422A
## 36838 S56422D
## 36839 S56422S
## 36840 S56423A
## 36841 S56423D
## 36842 S56423S
## 36843 S56424A
## 36844 S56424D
## 36845 S56424S
## 36846 S56425A
## 36847 S56425D
## 36848 S56425S
## 36849 S56426A
## 36850 S56426D
## 36851 S56426S
## 36852 S56427A
## 36853 S56427D
## 36854 S56427S
## 36855 S56428A
## 36856 S56428D
## 36857 S56428S
## 36858 S56429A
## 36859 S56429D
## 36860 S56429S
## 36861 S56491A
## 36862 S56491D
## 36863 S56491S
## 36864 S56492A
## 36865 S56492D
## 36866 S56492S
## 36867 S56493A
## 36868 S56493D
## 36869 S56493S
## 36870 S56494A
## 36871 S56494D
## 36872 S56494S
## 36873 S56495A
## 36874 S56495D
## 36875 S56495S
## 36876 S56496A
## 36877 S56496D
## 36878 S56496S
## 36879 S56497A
## 36880 S56497D
## 36881 S56497S
## 36882 S56498A
## 36883 S56498D
## 36884 S56498S
## 36885 S56499A
## 36886 S56499D
## 36887 S56499S
## 36888 S56501A
## 36889 S56501D
## 36890 S56501S
## 36891 S56502A
## 36892 S56502D
## 36893 S56502S
## 36894 S56509A
## 36895 S56509D
## 36896 S56509S
## 36897 S56511A
## 36898 S56511D
## 36899 S56511S
## 36900 S56512A
## 36901 S56512D
## 36902 S56512S
## 36903 S56519A
## 36904 S56519D
## 36905 S56519S
## 36906 S56521A
## 36907 S56521D
## 36908 S56521S
## 36909 S56522A
## 36910 S56522D
## 36911 S56522S
## 36912 S56529A
## 36913 S56529D
## 36914 S56529S
## 36915 S56591A
## 36916 S56591D
## 36917 S56591S
## 36918 S56592A
## 36919 S56592D
## 36920 S56592S
## 36921 S56599A
## 36922 S56599D
## 36923 S56599S
## 36924 S56801A
## 36925 S56801D
## 36926 S56801S
## 36927 S56802A
## 36928 S56802D
## 36929 S56802S
## 36930 S56809A
## 36931 S56809D
## 36932 S56809S
## 36933 S56811A
## 36934 S56811D
## 36935 S56811S
## 36936 S56812A
## 36937 S56812D
## 36938 S56812S
## 36939 S56819A
## 36940 S56819D
## 36941 S56819S
## 36942 S56821A
## 36943 S56821D
## 36944 S56821S
## 36945 S56822A
## 36946 S56822D
## 36947 S56822S
## 36948 S56829A
## 36949 S56829D
## 36950 S56829S
## 36951 S56891A
## 36952 S56891D
## 36953 S56891S
## 36954 S56892A
## 36955 S56892D
## 36956 S56892S
## 36957 S56899A
## 36958 S56899D
## 36959 S56899S
## 36960 S56901A
## 36961 S56901D
## 36962 S56901S
## 36963 S56902A
## 36964 S56902D
## 36965 S56902S
## 36966 S56909A
## 36967 S56909D
## 36968 S56909S
## 36969 S56911A
## 36970 S56911D
## 36971 S56911S
## 36972 S56912A
## 36973 S56912D
## 36974 S56912S
## 36975 S56919A
## 36976 S56919D
## 36977 S56919S
## 36978 S56921A
## 36979 S56921D
## 36980 S56921S
## 36981 S56922A
## 36982 S56922D
## 36983 S56922S
## 36984 S56929A
## 36985 S56929D
## 36986 S56929S
## 36987 S56991A
## 36988 S56991D
## 36989 S56991S
## 36990 S56992A
## 36991 S56992D
## 36992 S56992S
## 36993 S56999A
## 36994 S56999D
## 36995 S56999S
## 36996 S5700XA
## 36997 S5700XD
## 36998 S5700XS
## 36999 S5701XA
## 37000 S5701XD
## 37001 S5701XS
## 37002 S5702XA
## 37003 S5702XD
## 37004 S5702XS
## 37005 S5780XA
## 37006 S5780XD
## 37007 S5780XS
## 37008 S5781XA
## 37009 S5781XD
## 37010 S5781XS
## 37011 S5782XA
## 37012 S5782XD
## 37013 S5782XS
## 37014 S58011A
## 37015 S58011D
## 37016 S58011S
## 37017 S58012A
## 37018 S58012D
## 37019 S58012S
## 37020 S58019A
## 37021 S58019D
## 37022 S58019S
## 37023 S58021A
## 37024 S58021D
## 37025 S58021S
## 37026 S58022A
## 37027 S58022D
## 37028 S58022S
## 37029 S58029A
## 37030 S58029D
## 37031 S58029S
## 37032 S58111A
## 37033 S58111D
## 37034 S58111S
## 37035 S58112A
## 37036 S58112D
## 37037 S58112S
## 37038 S58119A
## 37039 S58119D
## 37040 S58119S
## 37041 S58121A
## 37042 S58121D
## 37043 S58121S
## 37044 S58122A
## 37045 S58122D
## 37046 S58122S
## 37047 S58129A
## 37048 S58129D
## 37049 S58129S
## 37050 S58911A
## 37051 S58911D
## 37052 S58911S
## 37053 S58912A
## 37054 S58912D
## 37055 S58912S
## 37056 S58919A
## 37057 S58919D
## 37058 S58919S
## 37059 S58921A
## 37060 S58921D
## 37061 S58921S
## 37062 S58922A
## 37063 S58922D
## 37064 S58922S
## 37065 S58929A
## 37066 S58929D
## 37067 S58929S
## 37068 S59001A
## 37069 S59001D
## 37070 S59001G
## 37071 S59001K
## 37072 S59001P
## 37073 S59001S
## 37074 S59002A
## 37075 S59002D
## 37076 S59002G
## 37077 S59002K
## 37078 S59002P
## 37079 S59002S
## 37080 S59009A
## 37081 S59009D
## 37082 S59009G
## 37083 S59009K
## 37084 S59009P
## 37085 S59009S
## 37086 S59011A
## 37087 S59011D
## 37088 S59011G
## 37089 S59011K
## 37090 S59011P
## 37091 S59011S
## 37092 S59012A
## 37093 S59012D
## 37094 S59012G
## 37095 S59012K
## 37096 S59012P
## 37097 S59012S
## 37098 S59019A
## 37099 S59019D
## 37100 S59019G
## 37101 S59019K
## 37102 S59019P
## 37103 S59019S
## 37104 S59021A
## 37105 S59021D
## 37106 S59021G
## 37107 S59021K
## 37108 S59021P
## 37109 S59021S
## 37110 S59022A
## 37111 S59022D
## 37112 S59022G
## 37113 S59022K
## 37114 S59022P
## 37115 S59022S
## 37116 S59029A
## 37117 S59029D
## 37118 S59029G
## 37119 S59029K
## 37120 S59029P
## 37121 S59029S
## 37122 S59031A
## 37123 S59031D
## 37124 S59031G
## 37125 S59031K
## 37126 S59031P
## 37127 S59031S
## 37128 S59032A
## 37129 S59032D
## 37130 S59032G
## 37131 S59032K
## 37132 S59032P
## 37133 S59032S
## 37134 S59039A
## 37135 S59039D
## 37136 S59039G
## 37137 S59039K
## 37138 S59039P
## 37139 S59039S
## 37140 S59041A
## 37141 S59041D
## 37142 S59041G
## 37143 S59041K
## 37144 S59041P
## 37145 S59041S
## 37146 S59042A
## 37147 S59042D
## 37148 S59042G
## 37149 S59042K
## 37150 S59042P
## 37151 S59042S
## 37152 S59049A
## 37153 S59049D
## 37154 S59049G
## 37155 S59049K
## 37156 S59049P
## 37157 S59049S
## 37158 S59091A
## 37159 S59091D
## 37160 S59091G
## 37161 S59091K
## 37162 S59091P
## 37163 S59091S
## 37164 S59092A
## 37165 S59092D
## 37166 S59092G
## 37167 S59092K
## 37168 S59092P
## 37169 S59092S
## 37170 S59099A
## 37171 S59099D
## 37172 S59099G
## 37173 S59099K
## 37174 S59099P
## 37175 S59099S
## 37176 S59101A
## 37177 S59101D
## 37178 S59101G
## 37179 S59101K
## 37180 S59101P
## 37181 S59101S
## 37182 S59102A
## 37183 S59102D
## 37184 S59102G
## 37185 S59102K
## 37186 S59102P
## 37187 S59102S
## 37188 S59109A
## 37189 S59109D
## 37190 S59109G
## 37191 S59109K
## 37192 S59109P
## 37193 S59109S
## 37194 S59111A
## 37195 S59111D
## 37196 S59111G
## 37197 S59111K
## 37198 S59111P
## 37199 S59111S
## 37200 S59112A
## 37201 S59112D
## 37202 S59112G
## 37203 S59112K
## 37204 S59112P
## 37205 S59112S
## 37206 S59119A
## 37207 S59119D
## 37208 S59119G
## 37209 S59119K
## 37210 S59119P
## 37211 S59119S
## 37212 S59121A
## 37213 S59121D
## 37214 S59121G
## 37215 S59121K
## 37216 S59121P
## 37217 S59121S
## 37218 S59122A
## 37219 S59122D
## 37220 S59122G
## 37221 S59122K
## 37222 S59122P
## 37223 S59122S
## 37224 S59129A
## 37225 S59129D
## 37226 S59129G
## 37227 S59129K
## 37228 S59129P
## 37229 S59129S
## 37230 S59131A
## 37231 S59131D
## 37232 S59131G
## 37233 S59131K
## 37234 S59131P
## 37235 S59131S
## 37236 S59132A
## 37237 S59132D
## 37238 S59132G
## 37239 S59132K
## 37240 S59132P
## 37241 S59132S
## 37242 S59139A
## 37243 S59139D
## 37244 S59139G
## 37245 S59139K
## 37246 S59139P
## 37247 S59139S
## 37248 S59141A
## 37249 S59141D
## 37250 S59141G
## 37251 S59141K
## 37252 S59141P
## 37253 S59141S
## 37254 S59142A
## 37255 S59142D
## 37256 S59142G
## 37257 S59142K
## 37258 S59142P
## 37259 S59142S
## 37260 S59149A
## 37261 S59149D
## 37262 S59149G
## 37263 S59149K
## 37264 S59149P
## 37265 S59149S
## 37266 S59191A
## 37267 S59191D
## 37268 S59191G
## 37269 S59191K
## 37270 S59191P
## 37271 S59191S
## 37272 S59192A
## 37273 S59192D
## 37274 S59192G
## 37275 S59192K
## 37276 S59192P
## 37277 S59192S
## 37278 S59199A
## 37279 S59199D
## 37280 S59199G
## 37281 S59199K
## 37282 S59199P
## 37283 S59199S
## 37284 S59201A
## 37285 S59201D
## 37286 S59201G
## 37287 S59201K
## 37288 S59201P
## 37289 S59201S
## 37290 S59202A
## 37291 S59202D
## 37292 S59202G
## 37293 S59202K
## 37294 S59202P
## 37295 S59202S
## 37296 S59209A
## 37297 S59209D
## 37298 S59209G
## 37299 S59209K
## 37300 S59209P
## 37301 S59209S
## 37302 S59211A
## 37303 S59211D
## 37304 S59211G
## 37305 S59211K
## 37306 S59211P
## 37307 S59211S
## 37308 S59212A
## 37309 S59212D
## 37310 S59212G
## 37311 S59212K
## 37312 S59212P
## 37313 S59212S
## 37314 S59219A
## 37315 S59219D
## 37316 S59219G
## 37317 S59219K
## 37318 S59219P
## 37319 S59219S
## 37320 S59221A
## 37321 S59221D
## 37322 S59221G
## 37323 S59221K
## 37324 S59221P
## 37325 S59221S
## 37326 S59222A
## 37327 S59222D
## 37328 S59222G
## 37329 S59222K
## 37330 S59222P
## 37331 S59222S
## 37332 S59229A
## 37333 S59229D
## 37334 S59229G
## 37335 S59229K
## 37336 S59229P
## 37337 S59229S
## 37338 S59231A
## 37339 S59231D
## 37340 S59231G
## 37341 S59231K
## 37342 S59231P
## 37343 S59231S
## 37344 S59232A
## 37345 S59232D
## 37346 S59232G
## 37347 S59232K
## 37348 S59232P
## 37349 S59232S
## 37350 S59239A
## 37351 S59239D
## 37352 S59239G
## 37353 S59239K
## 37354 S59239P
## 37355 S59239S
## 37356 S59241A
## 37357 S59241D
## 37358 S59241G
## 37359 S59241K
## 37360 S59241P
## 37361 S59241S
## 37362 S59242A
## 37363 S59242D
## 37364 S59242G
## 37365 S59242K
## 37366 S59242P
## 37367 S59242S
## 37368 S59249A
## 37369 S59249D
## 37370 S59249G
## 37371 S59249K
## 37372 S59249P
## 37373 S59249S
## 37374 S59291A
## 37375 S59291D
## 37376 S59291G
## 37377 S59291K
## 37378 S59291P
## 37379 S59291S
## 37380 S59292A
## 37381 S59292D
## 37382 S59292G
## 37383 S59292K
## 37384 S59292P
## 37385 S59292S
## 37386 S59299A
## 37387 S59299D
## 37388 S59299G
## 37389 S59299K
## 37390 S59299P
## 37391 S59299S
## 37392 S59801A
## 37393 S59801D
## 37394 S59801S
## 37395 S59802A
## 37396 S59802D
## 37397 S59802S
## 37398 S59809A
## 37399 S59809D
## 37400 S59809S
## 37401 S59811A
## 37402 S59811D
## 37403 S59811S
## 37404 S59812A
## 37405 S59812D
## 37406 S59812S
## 37407 S59819A
## 37408 S59819D
## 37409 S59819S
## 37410 S59901A
## 37411 S59901D
## 37412 S59901S
## 37413 S59902A
## 37414 S59902D
## 37415 S59902S
## 37416 S59909A
## 37417 S59909D
## 37418 S59909S
## 37419 S59911A
## 37420 S59911D
## 37421 S59911S
## 37422 S59912A
## 37423 S59912D
## 37424 S59912S
## 37425 S59919A
## 37426 S59919D
## 37427 S59919S
## 37428 S6000XA
## 37429 S6000XD
## 37430 S6000XS
## 37431 S60011A
## 37432 S60011D
## 37433 S60011S
## 37434 S60012A
## 37435 S60012D
## 37436 S60012S
## 37437 S60019A
## 37438 S60019D
## 37439 S60019S
## 37440 S60021A
## 37441 S60021D
## 37442 S60021S
## 37443 S60022A
## 37444 S60022D
## 37445 S60022S
## 37446 S60029A
## 37447 S60029D
## 37448 S60029S
## 37449 S60031A
## 37450 S60031D
## 37451 S60031S
## 37452 S60032A
## 37453 S60032D
## 37454 S60032S
## 37455 S60039A
## 37456 S60039D
## 37457 S60039S
## 37458 S60041A
## 37459 S60041D
## 37460 S60041S
## 37461 S60042A
## 37462 S60042D
## 37463 S60042S
## 37464 S60049A
## 37465 S60049D
## 37466 S60049S
## 37467 S60051A
## 37468 S60051D
## 37469 S60051S
## 37470 S60052A
## 37471 S60052D
## 37472 S60052S
## 37473 S60059A
## 37474 S60059D
## 37475 S60059S
## 37476 S6010XA
## 37477 S6010XD
## 37478 S6010XS
## 37479 S60111A
## 37480 S60111D
## 37481 S60111S
## 37482 S60112A
## 37483 S60112D
## 37484 S60112S
## 37485 S60119A
## 37486 S60119D
## 37487 S60119S
## 37488 S60121A
## 37489 S60121D
## 37490 S60121S
## 37491 S60122A
## 37492 S60122D
## 37493 S60122S
## 37494 S60129A
## 37495 S60129D
## 37496 S60129S
## 37497 S60131A
## 37498 S60131D
## 37499 S60131S
## 37500 S60132A
## 37501 S60132D
## 37502 S60132S
## 37503 S60139A
## 37504 S60139D
## 37505 S60139S
## 37506 S60141A
## 37507 S60141D
## 37508 S60141S
## 37509 S60142A
## 37510 S60142D
## 37511 S60142S
## 37512 S60149A
## 37513 S60149D
## 37514 S60149S
## 37515 S60151A
## 37516 S60151D
## 37517 S60151S
## 37518 S60152A
## 37519 S60152D
## 37520 S60152S
## 37521 S60159A
## 37522 S60159D
## 37523 S60159S
## 37524 S60211A
## 37525 S60211D
## 37526 S60211S
## 37527 S60212A
## 37528 S60212D
## 37529 S60212S
## 37530 S60219A
## 37531 S60219D
## 37532 S60219S
## 37533 S60221A
## 37534 S60221D
## 37535 S60221S
## 37536 S60222A
## 37537 S60222D
## 37538 S60222S
## 37539 S60229A
## 37540 S60229D
## 37541 S60229S
## 37542 S60311A
## 37543 S60311D
## 37544 S60311S
## 37545 S60312A
## 37546 S60312D
## 37547 S60312S
## 37548 S60319A
## 37549 S60319D
## 37550 S60319S
## 37551 S60321A
## 37552 S60321D
## 37553 S60321S
## 37554 S60322A
## 37555 S60322D
## 37556 S60322S
## 37557 S60329A
## 37558 S60329D
## 37559 S60329S
## 37560 S60341A
## 37561 S60341D
## 37562 S60341S
## 37563 S60342A
## 37564 S60342D
## 37565 S60342S
## 37566 S60349A
## 37567 S60349D
## 37568 S60349S
## 37569 S60351A
## 37570 S60351D
## 37571 S60351S
## 37572 S60352A
## 37573 S60352D
## 37574 S60352S
## 37575 S60359A
## 37576 S60359D
## 37577 S60359S
## 37578 S60361A
## 37579 S60361D
## 37580 S60361S
## 37581 S60362A
## 37582 S60362D
## 37583 S60362S
## 37584 S60369A
## 37585 S60369D
## 37586 S60369S
## 37587 S60371A
## 37588 S60371D
## 37589 S60371S
## 37590 S60372A
## 37591 S60372D
## 37592 S60372S
## 37593 S60379A
## 37594 S60379D
## 37595 S60379S
## 37596 S60391A
## 37597 S60391D
## 37598 S60391S
## 37599 S60392A
## 37600 S60392D
## 37601 S60392S
## 37602 S60399A
## 37603 S60399D
## 37604 S60399S
## 37605 S60410A
## 37606 S60410D
## 37607 S60410S
## 37608 S60411A
## 37609 S60411D
## 37610 S60411S
## 37611 S60412A
## 37612 S60412D
## 37613 S60412S
## 37614 S60413A
## 37615 S60413D
## 37616 S60413S
## 37617 S60414A
## 37618 S60414D
## 37619 S60414S
## 37620 S60415A
## 37621 S60415D
## 37622 S60415S
## 37623 S60416A
## 37624 S60416D
## 37625 S60416S
## 37626 S60417A
## 37627 S60417D
## 37628 S60417S
## 37629 S60418A
## 37630 S60418D
## 37631 S60418S
## 37632 S60419A
## 37633 S60419D
## 37634 S60419S
## 37635 S60420A
## 37636 S60420D
## 37637 S60420S
## 37638 S60421A
## 37639 S60421D
## 37640 S60421S
## 37641 S60422A
## 37642 S60422D
## 37643 S60422S
## 37644 S60423A
## 37645 S60423D
## 37646 S60423S
## 37647 S60424A
## 37648 S60424D
## 37649 S60424S
## 37650 S60425A
## 37651 S60425D
## 37652 S60425S
## 37653 S60426A
## 37654 S60426D
## 37655 S60426S
## 37656 S60427A
## 37657 S60427D
## 37658 S60427S
## 37659 S60428A
## 37660 S60428D
## 37661 S60428S
## 37662 S60429A
## 37663 S60429D
## 37664 S60429S
## 37665 S60440A
## 37666 S60440D
## 37667 S60440S
## 37668 S60441A
## 37669 S60441D
## 37670 S60441S
## 37671 S60442A
## 37672 S60442D
## 37673 S60442S
## 37674 S60443A
## 37675 S60443D
## 37676 S60443S
## 37677 S60444A
## 37678 S60444D
## 37679 S60444S
## 37680 S60445A
## 37681 S60445D
## 37682 S60445S
## 37683 S60446A
## 37684 S60446D
## 37685 S60446S
## 37686 S60447A
## 37687 S60447D
## 37688 S60447S
## 37689 S60448A
## 37690 S60448D
## 37691 S60448S
## 37692 S60449A
## 37693 S60449D
## 37694 S60449S
## 37695 S60450A
## 37696 S60450D
## 37697 S60450S
## 37698 S60451A
## 37699 S60451D
## 37700 S60451S
## 37701 S60452A
## 37702 S60452D
## 37703 S60452S
## 37704 S60453A
## 37705 S60453D
## 37706 S60453S
## 37707 S60454A
## 37708 S60454D
## 37709 S60454S
## 37710 S60455A
## 37711 S60455D
## 37712 S60455S
## 37713 S60456A
## 37714 S60456D
## 37715 S60456S
## 37716 S60457A
## 37717 S60457D
## 37718 S60457S
## 37719 S60458A
## 37720 S60458D
## 37721 S60458S
## 37722 S60459A
## 37723 S60459D
## 37724 S60459S
## 37725 S60460A
## 37726 S60460D
## 37727 S60460S
## 37728 S60461A
## 37729 S60461D
## 37730 S60461S
## 37731 S60462A
## 37732 S60462D
## 37733 S60462S
## 37734 S60463A
## 37735 S60463D
## 37736 S60463S
## 37737 S60464A
## 37738 S60464D
## 37739 S60464S
## 37740 S60465A
## 37741 S60465D
## 37742 S60465S
## 37743 S60466A
## 37744 S60466D
## 37745 S60466S
## 37746 S60467A
## 37747 S60467D
## 37748 S60467S
## 37749 S60468A
## 37750 S60468D
## 37751 S60468S
## 37752 S60469A
## 37753 S60469D
## 37754 S60469S
## 37755 S60470A
## 37756 S60470D
## 37757 S60470S
## 37758 S60471A
## 37759 S60471D
## 37760 S60471S
## 37761 S60472A
## 37762 S60472D
## 37763 S60472S
## 37764 S60473A
## 37765 S60473D
## 37766 S60473S
## 37767 S60474A
## 37768 S60474D
## 37769 S60474S
## 37770 S60475A
## 37771 S60475D
## 37772 S60475S
## 37773 S60476A
## 37774 S60476D
## 37775 S60476S
## 37776 S60477A
## 37777 S60477D
## 37778 S60477S
## 37779 S60478A
## 37780 S60478D
## 37781 S60478S
## 37782 S60479A
## 37783 S60479D
## 37784 S60479S
## 37785 S60511A
## 37786 S60511D
## 37787 S60511S
## 37788 S60512A
## 37789 S60512D
## 37790 S60512S
## 37791 S60519A
## 37792 S60519D
## 37793 S60519S
## 37794 S60521A
## 37795 S60521D
## 37796 S60521S
## 37797 S60522A
## 37798 S60522D
## 37799 S60522S
## 37800 S60529A
## 37801 S60529D
## 37802 S60529S
## 37803 S60541A
## 37804 S60541D
## 37805 S60541S
## 37806 S60542A
## 37807 S60542D
## 37808 S60542S
## 37809 S60549A
## 37810 S60549D
## 37811 S60549S
## 37812 S60551A
## 37813 S60551D
## 37814 S60551S
## 37815 S60552A
## 37816 S60552D
## 37817 S60552S
## 37818 S60559A
## 37819 S60559D
## 37820 S60559S
## 37821 S60561A
## 37822 S60561D
## 37823 S60561S
## 37824 S60562A
## 37825 S60562D
## 37826 S60562S
## 37827 S60569A
## 37828 S60569D
## 37829 S60569S
## 37830 S60571A
## 37831 S60571D
## 37832 S60571S
## 37833 S60572A
## 37834 S60572D
## 37835 S60572S
## 37836 S60579A
## 37837 S60579D
## 37838 S60579S
## 37839 S60811A
## 37840 S60811D
## 37841 S60811S
## 37842 S60812A
## 37843 S60812D
## 37844 S60812S
## 37845 S60819A
## 37846 S60819D
## 37847 S60819S
## 37848 S60821A
## 37849 S60821D
## 37850 S60821S
## 37851 S60822A
## 37852 S60822D
## 37853 S60822S
## 37854 S60829A
## 37855 S60829D
## 37856 S60829S
## 37857 S60841A
## 37858 S60841D
## 37859 S60841S
## 37860 S60842A
## 37861 S60842D
## 37862 S60842S
## 37863 S60849A
## 37864 S60849D
## 37865 S60849S
## 37866 S60851A
## 37867 S60851D
## 37868 S60851S
## 37869 S60852A
## 37870 S60852D
## 37871 S60852S
## 37872 S60859A
## 37873 S60859D
## 37874 S60859S
## 37875 S60861A
## 37876 S60861D
## 37877 S60861S
## 37878 S60862A
## 37879 S60862D
## 37880 S60862S
## 37881 S60869A
## 37882 S60869D
## 37883 S60869S
## 37884 S60871A
## 37885 S60871D
## 37886 S60871S
## 37887 S60872A
## 37888 S60872D
## 37889 S60872S
## 37890 S60879A
## 37891 S60879D
## 37892 S60879S
## 37893 S60911A
## 37894 S60911D
## 37895 S60911S
## 37896 S60912A
## 37897 S60912D
## 37898 S60912S
## 37899 S60919A
## 37900 S60919D
## 37901 S60919S
## 37902 S60921A
## 37903 S60921D
## 37904 S60921S
## 37905 S60922A
## 37906 S60922D
## 37907 S60922S
## 37908 S60929A
## 37909 S60929D
## 37910 S60929S
## 37911 S60931A
## 37912 S60931D
## 37913 S60931S
## 37914 S60932A
## 37915 S60932D
## 37916 S60932S
## 37917 S60939A
## 37918 S60939D
## 37919 S60939S
## 37920 S60940A
## 37921 S60940D
## 37922 S60940S
## 37923 S60941A
## 37924 S60941D
## 37925 S60941S
## 37926 S60942A
## 37927 S60942D
## 37928 S60942S
## 37929 S60943A
## 37930 S60943D
## 37931 S60943S
## 37932 S60944A
## 37933 S60944D
## 37934 S60944S
## 37935 S60945A
## 37936 S60945D
## 37937 S60945S
## 37938 S60946A
## 37939 S60946D
## 37940 S60946S
## 37941 S60947A
## 37942 S60947D
## 37943 S60947S
## 37944 S60948A
## 37945 S60948D
## 37946 S60948S
## 37947 S60949A
## 37948 S60949D
## 37949 S60949S
## 37950 S61001A
## 37951 S61001D
## 37952 S61001S
## 37953 S61002A
## 37954 S61002D
## 37955 S61002S
## 37956 S61009A
## 37957 S61009D
## 37958 S61009S
## 37959 S61011A
## 37960 S61011D
## 37961 S61011S
## 37962 S61012A
## 37963 S61012D
## 37964 S61012S
## 37965 S61019A
## 37966 S61019D
## 37967 S61019S
## 37968 S61021A
## 37969 S61021D
## 37970 S61021S
## 37971 S61022A
## 37972 S61022D
## 37973 S61022S
## 37974 S61029A
## 37975 S61029D
## 37976 S61029S
## 37977 S61031A
## 37978 S61031D
## 37979 S61031S
## 37980 S61032A
## 37981 S61032D
## 37982 S61032S
## 37983 S61039A
## 37984 S61039D
## 37985 S61039S
## 37986 S61041A
## 37987 S61041D
## 37988 S61041S
## 37989 S61042A
## 37990 S61042D
## 37991 S61042S
## 37992 S61049A
## 37993 S61049D
## 37994 S61049S
## 37995 S61051A
## 37996 S61051D
## 37997 S61051S
## 37998 S61052A
## 37999 S61052D
## 38000 S61052S
## 38001 S61059A
## 38002 S61059D
## 38003 S61059S
## 38004 S61101A
## 38005 S61101D
## 38006 S61101S
## 38007 S61102A
## 38008 S61102D
## 38009 S61102S
## 38010 S61109A
## 38011 S61109D
## 38012 S61109S
## 38013 S61111A
## 38014 S61111D
## 38015 S61111S
## 38016 S61112A
## 38017 S61112D
## 38018 S61112S
## 38019 S61119A
## 38020 S61119D
## 38021 S61119S
## 38022 S61121A
## 38023 S61121D
## 38024 S61121S
## 38025 S61122A
## 38026 S61122D
## 38027 S61122S
## 38028 S61129A
## 38029 S61129D
## 38030 S61129S
## 38031 S61131A
## 38032 S61131D
## 38033 S61131S
## 38034 S61132A
## 38035 S61132D
## 38036 S61132S
## 38037 S61139A
## 38038 S61139D
## 38039 S61139S
## 38040 S61141A
## 38041 S61141D
## 38042 S61141S
## 38043 S61142A
## 38044 S61142D
## 38045 S61142S
## 38046 S61149A
## 38047 S61149D
## 38048 S61149S
## 38049 S61151A
## 38050 S61151D
## 38051 S61151S
## 38052 S61152A
## 38053 S61152D
## 38054 S61152S
## 38055 S61159A
## 38056 S61159D
## 38057 S61159S
## 38058 S61200A
## 38059 S61200D
## 38060 S61200S
## 38061 S61201A
## 38062 S61201D
## 38063 S61201S
## 38064 S61202A
## 38065 S61202D
## 38066 S61202S
## 38067 S61203A
## 38068 S61203D
## 38069 S61203S
## 38070 S61204A
## 38071 S61204D
## 38072 S61204S
## 38073 S61205A
## 38074 S61205D
## 38075 S61205S
## 38076 S61206A
## 38077 S61206D
## 38078 S61206S
## 38079 S61207A
## 38080 S61207D
## 38081 S61207S
## 38082 S61208A
## 38083 S61208D
## 38084 S61208S
## 38085 S61209A
## 38086 S61209D
## 38087 S61209S
## 38088 S61210A
## 38089 S61210D
## 38090 S61210S
## 38091 S61211A
## 38092 S61211D
## 38093 S61211S
## 38094 S61212A
## 38095 S61212D
## 38096 S61212S
## 38097 S61213A
## 38098 S61213D
## 38099 S61213S
## 38100 S61214A
## 38101 S61214D
## 38102 S61214S
## 38103 S61215A
## 38104 S61215D
## 38105 S61215S
## 38106 S61216A
## 38107 S61216D
## 38108 S61216S
## 38109 S61217A
## 38110 S61217D
## 38111 S61217S
## 38112 S61218A
## 38113 S61218D
## 38114 S61218S
## 38115 S61219A
## 38116 S61219D
## 38117 S61219S
## 38118 S61220A
## 38119 S61220D
## 38120 S61220S
## 38121 S61221A
## 38122 S61221D
## 38123 S61221S
## 38124 S61222A
## 38125 S61222D
## 38126 S61222S
## 38127 S61223A
## 38128 S61223D
## 38129 S61223S
## 38130 S61224A
## 38131 S61224D
## 38132 S61224S
## 38133 S61225A
## 38134 S61225D
## 38135 S61225S
## 38136 S61226A
## 38137 S61226D
## 38138 S61226S
## 38139 S61227A
## 38140 S61227D
## 38141 S61227S
## 38142 S61228A
## 38143 S61228D
## 38144 S61228S
## 38145 S61229A
## 38146 S61229D
## 38147 S61229S
## 38148 S61230A
## 38149 S61230D
## 38150 S61230S
## 38151 S61231A
## 38152 S61231D
## 38153 S61231S
## 38154 S61232A
## 38155 S61232D
## 38156 S61232S
## 38157 S61233A
## 38158 S61233D
## 38159 S61233S
## 38160 S61234A
## 38161 S61234D
## 38162 S61234S
## 38163 S61235A
## 38164 S61235D
## 38165 S61235S
## 38166 S61236A
## 38167 S61236D
## 38168 S61236S
## 38169 S61237A
## 38170 S61237D
## 38171 S61237S
## 38172 S61238A
## 38173 S61238D
## 38174 S61238S
## 38175 S61239A
## 38176 S61239D
## 38177 S61239S
## 38178 S61240A
## 38179 S61240D
## 38180 S61240S
## 38181 S61241A
## 38182 S61241D
## 38183 S61241S
## 38184 S61242A
## 38185 S61242D
## 38186 S61242S
## 38187 S61243A
## 38188 S61243D
## 38189 S61243S
## 38190 S61244A
## 38191 S61244D
## 38192 S61244S
## 38193 S61245A
## 38194 S61245D
## 38195 S61245S
## 38196 S61246A
## 38197 S61246D
## 38198 S61246S
## 38199 S61247A
## 38200 S61247D
## 38201 S61247S
## 38202 S61248A
## 38203 S61248D
## 38204 S61248S
## 38205 S61249A
## 38206 S61249D
## 38207 S61249S
## 38208 S61250A
## 38209 S61250D
## 38210 S61250S
## 38211 S61251A
## 38212 S61251D
## 38213 S61251S
## 38214 S61252A
## 38215 S61252D
## 38216 S61252S
## 38217 S61253A
## 38218 S61253D
## 38219 S61253S
## 38220 S61254A
## 38221 S61254D
## 38222 S61254S
## 38223 S61255A
## 38224 S61255D
## 38225 S61255S
## 38226 S61256A
## 38227 S61256D
## 38228 S61256S
## 38229 S61257A
## 38230 S61257D
## 38231 S61257S
## 38232 S61258A
## 38233 S61258D
## 38234 S61258S
## 38235 S61259A
## 38236 S61259D
## 38237 S61259S
## 38238 S61300A
## 38239 S61300D
## 38240 S61300S
## 38241 S61301A
## 38242 S61301D
## 38243 S61301S
## 38244 S61302A
## 38245 S61302D
## 38246 S61302S
## 38247 S61303A
## 38248 S61303D
## 38249 S61303S
## 38250 S61304A
## 38251 S61304D
## 38252 S61304S
## 38253 S61305A
## 38254 S61305D
## 38255 S61305S
## 38256 S61306A
## 38257 S61306D
## 38258 S61306S
## 38259 S61307A
## 38260 S61307D
## 38261 S61307S
## 38262 S61308A
## 38263 S61308D
## 38264 S61308S
## 38265 S61309A
## 38266 S61309D
## 38267 S61309S
## 38268 S61310A
## 38269 S61310D
## 38270 S61310S
## 38271 S61311A
## 38272 S61311D
## 38273 S61311S
## 38274 S61312A
## 38275 S61312D
## 38276 S61312S
## 38277 S61313A
## 38278 S61313D
## 38279 S61313S
## 38280 S61314A
## 38281 S61314D
## 38282 S61314S
## 38283 S61315A
## 38284 S61315D
## 38285 S61315S
## 38286 S61316A
## 38287 S61316D
## 38288 S61316S
## 38289 S61317A
## 38290 S61317D
## 38291 S61317S
## 38292 S61318A
## 38293 S61318D
## 38294 S61318S
## 38295 S61319A
## 38296 S61319D
## 38297 S61319S
## 38298 S61320A
## 38299 S61320D
## 38300 S61320S
## 38301 S61321A
## 38302 S61321D
## 38303 S61321S
## 38304 S61322A
## 38305 S61322D
## 38306 S61322S
## 38307 S61323A
## 38308 S61323D
## 38309 S61323S
## 38310 S61324A
## 38311 S61324D
## 38312 S61324S
## 38313 S61325A
## 38314 S61325D
## 38315 S61325S
## 38316 S61326A
## 38317 S61326D
## 38318 S61326S
## 38319 S61327A
## 38320 S61327D
## 38321 S61327S
## 38322 S61328A
## 38323 S61328D
## 38324 S61328S
## 38325 S61329A
## 38326 S61329D
## 38327 S61329S
## 38328 S61330A
## 38329 S61330D
## 38330 S61330S
## 38331 S61331A
## 38332 S61331D
## 38333 S61331S
## 38334 S61332A
## 38335 S61332D
## 38336 S61332S
## 38337 S61333A
## 38338 S61333D
## 38339 S61333S
## 38340 S61334A
## 38341 S61334D
## 38342 S61334S
## 38343 S61335A
## 38344 S61335D
## 38345 S61335S
## 38346 S61336A
## 38347 S61336D
## 38348 S61336S
## 38349 S61337A
## 38350 S61337D
## 38351 S61337S
## 38352 S61338A
## 38353 S61338D
## 38354 S61338S
## 38355 S61339A
## 38356 S61339D
## 38357 S61339S
## 38358 S61340A
## 38359 S61340D
## 38360 S61340S
## 38361 S61341A
## 38362 S61341D
## 38363 S61341S
## 38364 S61342A
## 38365 S61342D
## 38366 S61342S
## 38367 S61343A
## 38368 S61343D
## 38369 S61343S
## 38370 S61344A
## 38371 S61344D
## 38372 S61344S
## 38373 S61345A
## 38374 S61345D
## 38375 S61345S
## 38376 S61346A
## 38377 S61346D
## 38378 S61346S
## 38379 S61347A
## 38380 S61347D
## 38381 S61347S
## 38382 S61348A
## 38383 S61348D
## 38384 S61348S
## 38385 S61349A
## 38386 S61349D
## 38387 S61349S
## 38388 S61350A
## 38389 S61350D
## 38390 S61350S
## 38391 S61351A
## 38392 S61351D
## 38393 S61351S
## 38394 S61352A
## 38395 S61352D
## 38396 S61352S
## 38397 S61353A
## 38398 S61353D
## 38399 S61353S
## 38400 S61354A
## 38401 S61354D
## 38402 S61354S
## 38403 S61355A
## 38404 S61355D
## 38405 S61355S
## 38406 S61356A
## 38407 S61356D
## 38408 S61356S
## 38409 S61357A
## 38410 S61357D
## 38411 S61357S
## 38412 S61358A
## 38413 S61358D
## 38414 S61358S
## 38415 S61359A
## 38416 S61359D
## 38417 S61359S
## 38418 S61401A
## 38419 S61401D
## 38420 S61401S
## 38421 S61402A
## 38422 S61402D
## 38423 S61402S
## 38424 S61409A
## 38425 S61409D
## 38426 S61409S
## 38427 S61411A
## 38428 S61411D
## 38429 S61411S
## 38430 S61412A
## 38431 S61412D
## 38432 S61412S
## 38433 S61419A
## 38434 S61419D
## 38435 S61419S
## 38436 S61421A
## 38437 S61421D
## 38438 S61421S
## 38439 S61422A
## 38440 S61422D
## 38441 S61422S
## 38442 S61429A
## 38443 S61429D
## 38444 S61429S
## 38445 S61431A
## 38446 S61431D
## 38447 S61431S
## 38448 S61432A
## 38449 S61432D
## 38450 S61432S
## 38451 S61439A
## 38452 S61439D
## 38453 S61439S
## 38454 S61441A
## 38455 S61441D
## 38456 S61441S
## 38457 S61442A
## 38458 S61442D
## 38459 S61442S
## 38460 S61449A
## 38461 S61449D
## 38462 S61449S
## 38463 S61451A
## 38464 S61451D
## 38465 S61451S
## 38466 S61452A
## 38467 S61452D
## 38468 S61452S
## 38469 S61459A
## 38470 S61459D
## 38471 S61459S
## 38472 S61501A
## 38473 S61501D
## 38474 S61501S
## 38475 S61502A
## 38476 S61502D
## 38477 S61502S
## 38478 S61509A
## 38479 S61509D
## 38480 S61509S
## 38481 S61511A
## 38482 S61511D
## 38483 S61511S
## 38484 S61512A
## 38485 S61512D
## 38486 S61512S
## 38487 S61519A
## 38488 S61519D
## 38489 S61519S
## 38490 S61521A
## 38491 S61521D
## 38492 S61521S
## 38493 S61522A
## 38494 S61522D
## 38495 S61522S
## 38496 S61529A
## 38497 S61529D
## 38498 S61529S
## 38499 S61531A
## 38500 S61531D
## 38501 S61531S
## 38502 S61532A
## 38503 S61532D
## 38504 S61532S
## 38505 S61539A
## 38506 S61539D
## 38507 S61539S
## 38508 S61541A
## 38509 S61541D
## 38510 S61541S
## 38511 S61542A
## 38512 S61542D
## 38513 S61542S
## 38514 S61549A
## 38515 S61549D
## 38516 S61549S
## 38517 S61551A
## 38518 S61551D
## 38519 S61551S
## 38520 S61552A
## 38521 S61552D
## 38522 S61552S
## 38523 S61559A
## 38524 S61559D
## 38525 S61559S
## 38526 S62001A
## 38527 S62001B
## 38528 S62001D
## 38529 S62001G
## 38530 S62001K
## 38531 S62001P
## 38532 S62001S
## 38533 S62002A
## 38534 S62002B
## 38535 S62002D
## 38536 S62002G
## 38537 S62002K
## 38538 S62002P
## 38539 S62002S
## 38540 S62009A
## 38541 S62009B
## 38542 S62009D
## 38543 S62009G
## 38544 S62009K
## 38545 S62009P
## 38546 S62009S
## 38547 S62011A
## 38548 S62011B
## 38549 S62011D
## 38550 S62011G
## 38551 S62011K
## 38552 S62011P
## 38553 S62011S
## 38554 S62012A
## 38555 S62012B
## 38556 S62012D
## 38557 S62012G
## 38558 S62012K
## 38559 S62012P
## 38560 S62012S
## 38561 S62013A
## 38562 S62013B
## 38563 S62013D
## 38564 S62013G
## 38565 S62013K
## 38566 S62013P
## 38567 S62013S
## 38568 S62014A
## 38569 S62014B
## 38570 S62014D
## 38571 S62014G
## 38572 S62014K
## 38573 S62014P
## 38574 S62014S
## 38575 S62015A
## 38576 S62015B
## 38577 S62015D
## 38578 S62015G
## 38579 S62015K
## 38580 S62015P
## 38581 S62015S
## 38582 S62016A
## 38583 S62016B
## 38584 S62016D
## 38585 S62016G
## 38586 S62016K
## 38587 S62016P
## 38588 S62016S
## 38589 S62021A
## 38590 S62021B
## 38591 S62021D
## 38592 S62021G
## 38593 S62021K
## 38594 S62021P
## 38595 S62021S
## 38596 S62022A
## 38597 S62022B
## 38598 S62022D
## 38599 S62022G
## 38600 S62022K
## 38601 S62022P
## 38602 S62022S
## 38603 S62023A
## 38604 S62023B
## 38605 S62023D
## 38606 S62023G
## 38607 S62023K
## 38608 S62023P
## 38609 S62023S
## 38610 S62024A
## 38611 S62024B
## 38612 S62024D
## 38613 S62024G
## 38614 S62024K
## 38615 S62024P
## 38616 S62024S
## 38617 S62025A
## 38618 S62025B
## 38619 S62025D
## 38620 S62025G
## 38621 S62025K
## 38622 S62025P
## 38623 S62025S
## 38624 S62026A
## 38625 S62026B
## 38626 S62026D
## 38627 S62026G
## 38628 S62026K
## 38629 S62026P
## 38630 S62026S
## 38631 S62031A
## 38632 S62031B
## 38633 S62031D
## 38634 S62031G
## 38635 S62031K
## 38636 S62031P
## 38637 S62031S
## 38638 S62032A
## 38639 S62032B
## 38640 S62032D
## 38641 S62032G
## 38642 S62032K
## 38643 S62032P
## 38644 S62032S
## 38645 S62033A
## 38646 S62033B
## 38647 S62033D
## 38648 S62033G
## 38649 S62033K
## 38650 S62033P
## 38651 S62033S
## 38652 S62034A
## 38653 S62034B
## 38654 S62034D
## 38655 S62034G
## 38656 S62034K
## 38657 S62034P
## 38658 S62034S
## 38659 S62035A
## 38660 S62035B
## 38661 S62035D
## 38662 S62035G
## 38663 S62035K
## 38664 S62035P
## 38665 S62035S
## 38666 S62036A
## 38667 S62036B
## 38668 S62036D
## 38669 S62036G
## 38670 S62036K
## 38671 S62036P
## 38672 S62036S
## 38673 S62101A
## 38674 S62101B
## 38675 S62101D
## 38676 S62101G
## 38677 S62101K
## 38678 S62101P
## 38679 S62101S
## 38680 S62102A
## 38681 S62102B
## 38682 S62102D
## 38683 S62102G
## 38684 S62102K
## 38685 S62102P
## 38686 S62102S
## 38687 S62109A
## 38688 S62109B
## 38689 S62109D
## 38690 S62109G
## 38691 S62109K
## 38692 S62109P
## 38693 S62109S
## 38694 S62111A
## 38695 S62111B
## 38696 S62111D
## 38697 S62111G
## 38698 S62111K
## 38699 S62111P
## 38700 S62111S
## 38701 S62112A
## 38702 S62112B
## 38703 S62112D
## 38704 S62112G
## 38705 S62112K
## 38706 S62112P
## 38707 S62112S
## 38708 S62113A
## 38709 S62113B
## 38710 S62113D
## 38711 S62113G
## 38712 S62113K
## 38713 S62113P
## 38714 S62113S
## 38715 S62114A
## 38716 S62114B
## 38717 S62114D
## 38718 S62114G
## 38719 S62114K
## 38720 S62114P
## 38721 S62114S
## 38722 S62115A
## 38723 S62115B
## 38724 S62115D
## 38725 S62115G
## 38726 S62115K
## 38727 S62115P
## 38728 S62115S
## 38729 S62116A
## 38730 S62116B
## 38731 S62116D
## 38732 S62116G
## 38733 S62116K
## 38734 S62116P
## 38735 S62116S
## 38736 S62121A
## 38737 S62121B
## 38738 S62121D
## 38739 S62121G
## 38740 S62121K
## 38741 S62121P
## 38742 S62121S
## 38743 S62122A
## 38744 S62122B
## 38745 S62122D
## 38746 S62122G
## 38747 S62122K
## 38748 S62122P
## 38749 S62122S
## 38750 S62123A
## 38751 S62123B
## 38752 S62123D
## 38753 S62123G
## 38754 S62123K
## 38755 S62123P
## 38756 S62123S
## 38757 S62124A
## 38758 S62124B
## 38759 S62124D
## 38760 S62124G
## 38761 S62124K
## 38762 S62124P
## 38763 S62124S
## 38764 S62125A
## 38765 S62125B
## 38766 S62125D
## 38767 S62125G
## 38768 S62125K
## 38769 S62125P
## 38770 S62125S
## 38771 S62126A
## 38772 S62126B
## 38773 S62126D
## 38774 S62126G
## 38775 S62126K
## 38776 S62126P
## 38777 S62126S
## 38778 S62131A
## 38779 S62131B
## 38780 S62131D
## 38781 S62131G
## 38782 S62131K
## 38783 S62131P
## 38784 S62131S
## 38785 S62132A
## 38786 S62132B
## 38787 S62132D
## 38788 S62132G
## 38789 S62132K
## 38790 S62132P
## 38791 S62132S
## 38792 S62133A
## 38793 S62133B
## 38794 S62133D
## 38795 S62133G
## 38796 S62133K
## 38797 S62133P
## 38798 S62133S
## 38799 S62134A
## 38800 S62134B
## 38801 S62134D
## 38802 S62134G
## 38803 S62134K
## 38804 S62134P
## 38805 S62134S
## 38806 S62135A
## 38807 S62135B
## 38808 S62135D
## 38809 S62135G
## 38810 S62135K
## 38811 S62135P
## 38812 S62135S
## 38813 S62136A
## 38814 S62136B
## 38815 S62136D
## 38816 S62136G
## 38817 S62136K
## 38818 S62136P
## 38819 S62136S
## 38820 S62141A
## 38821 S62141B
## 38822 S62141D
## 38823 S62141G
## 38824 S62141K
## 38825 S62141P
## 38826 S62141S
## 38827 S62142A
## 38828 S62142B
## 38829 S62142D
## 38830 S62142G
## 38831 S62142K
## 38832 S62142P
## 38833 S62142S
## 38834 S62143A
## 38835 S62143B
## 38836 S62143D
## 38837 S62143G
## 38838 S62143K
## 38839 S62143P
## 38840 S62143S
## 38841 S62144A
## 38842 S62144B
## 38843 S62144D
## 38844 S62144G
## 38845 S62144K
## 38846 S62144P
## 38847 S62144S
## 38848 S62145A
## 38849 S62145B
## 38850 S62145D
## 38851 S62145G
## 38852 S62145K
## 38853 S62145P
## 38854 S62145S
## 38855 S62146A
## 38856 S62146B
## 38857 S62146D
## 38858 S62146G
## 38859 S62146K
## 38860 S62146P
## 38861 S62146S
## 38862 S62151A
## 38863 S62151B
## 38864 S62151D
## 38865 S62151G
## 38866 S62151K
## 38867 S62151P
## 38868 S62151S
## 38869 S62152A
## 38870 S62152B
## 38871 S62152D
## 38872 S62152G
## 38873 S62152K
## 38874 S62152P
## 38875 S62152S
## 38876 S62153A
## 38877 S62153B
## 38878 S62153D
## 38879 S62153G
## 38880 S62153K
## 38881 S62153P
## 38882 S62153S
## 38883 S62154A
## 38884 S62154B
## 38885 S62154D
## 38886 S62154G
## 38887 S62154K
## 38888 S62154P
## 38889 S62154S
## 38890 S62155A
## 38891 S62155B
## 38892 S62155D
## 38893 S62155G
## 38894 S62155K
## 38895 S62155P
## 38896 S62155S
## 38897 S62156A
## 38898 S62156B
## 38899 S62156D
## 38900 S62156G
## 38901 S62156K
## 38902 S62156P
## 38903 S62156S
## 38904 S62161A
## 38905 S62161B
## 38906 S62161D
## 38907 S62161G
## 38908 S62161K
## 38909 S62161P
## 38910 S62161S
## 38911 S62162A
## 38912 S62162B
## 38913 S62162D
## 38914 S62162G
## 38915 S62162K
## 38916 S62162P
## 38917 S62162S
## 38918 S62163A
## 38919 S62163B
## 38920 S62163D
## 38921 S62163G
## 38922 S62163K
## 38923 S62163P
## 38924 S62163S
## 38925 S62164A
## 38926 S62164B
## 38927 S62164D
## 38928 S62164G
## 38929 S62164K
## 38930 S62164P
## 38931 S62164S
## 38932 S62165A
## 38933 S62165B
## 38934 S62165D
## 38935 S62165G
## 38936 S62165K
## 38937 S62165P
## 38938 S62165S
## 38939 S62166A
## 38940 S62166B
## 38941 S62166D
## 38942 S62166G
## 38943 S62166K
## 38944 S62166P
## 38945 S62166S
## 38946 S62171A
## 38947 S62171B
## 38948 S62171D
## 38949 S62171G
## 38950 S62171K
## 38951 S62171P
## 38952 S62171S
## 38953 S62172A
## 38954 S62172B
## 38955 S62172D
## 38956 S62172G
## 38957 S62172K
## 38958 S62172P
## 38959 S62172S
## 38960 S62173A
## 38961 S62173B
## 38962 S62173D
## 38963 S62173G
## 38964 S62173K
## 38965 S62173P
## 38966 S62173S
## 38967 S62174A
## 38968 S62174B
## 38969 S62174D
## 38970 S62174G
## 38971 S62174K
## 38972 S62174P
## 38973 S62174S
## 38974 S62175A
## 38975 S62175B
## 38976 S62175D
## 38977 S62175G
## 38978 S62175K
## 38979 S62175P
## 38980 S62175S
## 38981 S62176A
## 38982 S62176B
## 38983 S62176D
## 38984 S62176G
## 38985 S62176K
## 38986 S62176P
## 38987 S62176S
## 38988 S62181A
## 38989 S62181B
## 38990 S62181D
## 38991 S62181G
## 38992 S62181K
## 38993 S62181P
## 38994 S62181S
## 38995 S62182A
## 38996 S62182B
## 38997 S62182D
## 38998 S62182G
## 38999 S62182K
## 39000 S62182P
## 39001 S62182S
## 39002 S62183A
## 39003 S62183B
## 39004 S62183D
## 39005 S62183G
## 39006 S62183K
## 39007 S62183P
## 39008 S62183S
## 39009 S62184A
## 39010 S62184B
## 39011 S62184D
## 39012 S62184G
## 39013 S62184K
## 39014 S62184P
## 39015 S62184S
## 39016 S62185A
## 39017 S62185B
## 39018 S62185D
## 39019 S62185G
## 39020 S62185K
## 39021 S62185P
## 39022 S62185S
## 39023 S62186A
## 39024 S62186B
## 39025 S62186D
## 39026 S62186G
## 39027 S62186K
## 39028 S62186P
## 39029 S62186S
## 39030 S62201A
## 39031 S62201B
## 39032 S62201D
## 39033 S62201G
## 39034 S62201K
## 39035 S62201P
## 39036 S62201S
## 39037 S62202A
## 39038 S62202B
## 39039 S62202D
## 39040 S62202G
## 39041 S62202K
## 39042 S62202P
## 39043 S62202S
## 39044 S62209A
## 39045 S62209B
## 39046 S62209D
## 39047 S62209G
## 39048 S62209K
## 39049 S62209P
## 39050 S62209S
## 39051 S62211A
## 39052 S62211B
## 39053 S62211D
## 39054 S62211G
## 39055 S62211K
## 39056 S62211P
## 39057 S62211S
## 39058 S62212A
## 39059 S62212B
## 39060 S62212D
## 39061 S62212G
## 39062 S62212K
## 39063 S62212P
## 39064 S62212S
## 39065 S62213A
## 39066 S62213B
## 39067 S62213D
## 39068 S62213G
## 39069 S62213K
## 39070 S62213P
## 39071 S62213S
## 39072 S62221A
## 39073 S62221B
## 39074 S62221D
## 39075 S62221G
## 39076 S62221K
## 39077 S62221P
## 39078 S62221S
## 39079 S62222A
## 39080 S62222B
## 39081 S62222D
## 39082 S62222G
## 39083 S62222K
## 39084 S62222P
## 39085 S62222S
## 39086 S62223A
## 39087 S62223B
## 39088 S62223D
## 39089 S62223G
## 39090 S62223K
## 39091 S62223P
## 39092 S62223S
## 39093 S62224A
## 39094 S62224B
## 39095 S62224D
## 39096 S62224G
## 39097 S62224K
## 39098 S62224P
## 39099 S62224S
## 39100 S62225A
## 39101 S62225B
## 39102 S62225D
## 39103 S62225G
## 39104 S62225K
## 39105 S62225P
## 39106 S62225S
## 39107 S62226A
## 39108 S62226B
## 39109 S62226D
## 39110 S62226G
## 39111 S62226K
## 39112 S62226P
## 39113 S62226S
## 39114 S62231A
## 39115 S62231B
## 39116 S62231D
## 39117 S62231G
## 39118 S62231K
## 39119 S62231P
## 39120 S62231S
## 39121 S62232A
## 39122 S62232B
## 39123 S62232D
## 39124 S62232G
## 39125 S62232K
## 39126 S62232P
## 39127 S62232S
## 39128 S62233A
## 39129 S62233B
## 39130 S62233D
## 39131 S62233G
## 39132 S62233K
## 39133 S62233P
## 39134 S62233S
## 39135 S62234A
## 39136 S62234B
## 39137 S62234D
## 39138 S62234G
## 39139 S62234K
## 39140 S62234P
## 39141 S62234S
## 39142 S62235A
## 39143 S62235B
## 39144 S62235D
## 39145 S62235G
## 39146 S62235K
## 39147 S62235P
## 39148 S62235S
## 39149 S62236A
## 39150 S62236B
## 39151 S62236D
## 39152 S62236G
## 39153 S62236K
## 39154 S62236P
## 39155 S62236S
## 39156 S62241A
## 39157 S62241B
## 39158 S62241D
## 39159 S62241G
## 39160 S62241K
## 39161 S62241P
## 39162 S62241S
## 39163 S62242A
## 39164 S62242B
## 39165 S62242D
## 39166 S62242G
## 39167 S62242K
## 39168 S62242P
## 39169 S62242S
## 39170 S62243A
## 39171 S62243B
## 39172 S62243D
## 39173 S62243G
## 39174 S62243K
## 39175 S62243P
## 39176 S62243S
## 39177 S62244A
## 39178 S62244B
## 39179 S62244D
## 39180 S62244G
## 39181 S62244K
## 39182 S62244P
## 39183 S62244S
## 39184 S62245A
## 39185 S62245B
## 39186 S62245D
## 39187 S62245G
## 39188 S62245K
## 39189 S62245P
## 39190 S62245S
## 39191 S62246A
## 39192 S62246B
## 39193 S62246D
## 39194 S62246G
## 39195 S62246K
## 39196 S62246P
## 39197 S62246S
## 39198 S62251A
## 39199 S62251B
## 39200 S62251D
## 39201 S62251G
## 39202 S62251K
## 39203 S62251P
## 39204 S62251S
## 39205 S62252A
## 39206 S62252B
## 39207 S62252D
## 39208 S62252G
## 39209 S62252K
## 39210 S62252P
## 39211 S62252S
## 39212 S62253A
## 39213 S62253B
## 39214 S62253D
## 39215 S62253G
## 39216 S62253K
## 39217 S62253P
## 39218 S62253S
## 39219 S62254A
## 39220 S62254B
## 39221 S62254D
## 39222 S62254G
## 39223 S62254K
## 39224 S62254P
## 39225 S62254S
## 39226 S62255A
## 39227 S62255B
## 39228 S62255D
## 39229 S62255G
## 39230 S62255K
## 39231 S62255P
## 39232 S62255S
## 39233 S62256A
## 39234 S62256B
## 39235 S62256D
## 39236 S62256G
## 39237 S62256K
## 39238 S62256P
## 39239 S62256S
## 39240 S62291A
## 39241 S62291B
## 39242 S62291D
## 39243 S62291G
## 39244 S62291K
## 39245 S62291P
## 39246 S62291S
## 39247 S62292A
## 39248 S62292B
## 39249 S62292D
## 39250 S62292G
## 39251 S62292K
## 39252 S62292P
## 39253 S62292S
## 39254 S62299A
## 39255 S62299B
## 39256 S62299D
## 39257 S62299G
## 39258 S62299K
## 39259 S62299P
## 39260 S62299S
## 39261 S62300A
## 39262 S62300B
## 39263 S62300D
## 39264 S62300G
## 39265 S62300K
## 39266 S62300P
## 39267 S62300S
## 39268 S62301A
## 39269 S62301B
## 39270 S62301D
## 39271 S62301G
## 39272 S62301K
## 39273 S62301P
## 39274 S62301S
## 39275 S62302A
## 39276 S62302B
## 39277 S62302D
## 39278 S62302G
## 39279 S62302K
## 39280 S62302P
## 39281 S62302S
## 39282 S62303A
## 39283 S62303B
## 39284 S62303D
## 39285 S62303G
## 39286 S62303K
## 39287 S62303P
## 39288 S62303S
## 39289 S62304A
## 39290 S62304B
## 39291 S62304D
## 39292 S62304G
## 39293 S62304K
## 39294 S62304P
## 39295 S62304S
## 39296 S62305A
## 39297 S62305B
## 39298 S62305D
## 39299 S62305G
## 39300 S62305K
## 39301 S62305P
## 39302 S62305S
## 39303 S62306A
## 39304 S62306B
## 39305 S62306D
## 39306 S62306G
## 39307 S62306K
## 39308 S62306P
## 39309 S62306S
## 39310 S62307A
## 39311 S62307B
## 39312 S62307D
## 39313 S62307G
## 39314 S62307K
## 39315 S62307P
## 39316 S62307S
## 39317 S62308A
## 39318 S62308B
## 39319 S62308D
## 39320 S62308G
## 39321 S62308K
## 39322 S62308P
## 39323 S62308S
## 39324 S62309A
## 39325 S62309B
## 39326 S62309D
## 39327 S62309G
## 39328 S62309K
## 39329 S62309P
## 39330 S62309S
## 39331 S62310A
## 39332 S62310B
## 39333 S62310D
## 39334 S62310G
## 39335 S62310K
## 39336 S62310P
## 39337 S62310S
## 39338 S62311A
## 39339 S62311B
## 39340 S62311D
## 39341 S62311G
## 39342 S62311K
## 39343 S62311P
## 39344 S62311S
## 39345 S62312A
## 39346 S62312B
## 39347 S62312D
## 39348 S62312G
## 39349 S62312K
## 39350 S62312P
## 39351 S62312S
## 39352 S62313A
## 39353 S62313B
## 39354 S62313D
## 39355 S62313G
## 39356 S62313K
## 39357 S62313P
## 39358 S62313S
## 39359 S62314A
## 39360 S62314B
## 39361 S62314D
## 39362 S62314G
## 39363 S62314K
## 39364 S62314P
## 39365 S62314S
## 39366 S62315A
## 39367 S62315B
## 39368 S62315D
## 39369 S62315G
## 39370 S62315K
## 39371 S62315P
## 39372 S62315S
## 39373 S62316A
## 39374 S62316B
## 39375 S62316D
## 39376 S62316G
## 39377 S62316K
## 39378 S62316P
## 39379 S62316S
## 39380 S62317A
## 39381 S62317B
## 39382 S62317D
## 39383 S62317G
## 39384 S62317K
## 39385 S62317P
## 39386 S62317S
## 39387 S62318A
## 39388 S62318B
## 39389 S62318D
## 39390 S62318G
## 39391 S62318K
## 39392 S62318P
## 39393 S62318S
## 39394 S62319A
## 39395 S62319B
## 39396 S62319D
## 39397 S62319G
## 39398 S62319K
## 39399 S62319P
## 39400 S62319S
## 39401 S62320A
## 39402 S62320B
## 39403 S62320D
## 39404 S62320G
## 39405 S62320K
## 39406 S62320P
## 39407 S62320S
## 39408 S62321A
## 39409 S62321B
## 39410 S62321D
## 39411 S62321G
## 39412 S62321K
## 39413 S62321P
## 39414 S62321S
## 39415 S62322A
## 39416 S62322B
## 39417 S62322D
## 39418 S62322G
## 39419 S62322K
## 39420 S62322P
## 39421 S62322S
## 39422 S62323A
## 39423 S62323B
## 39424 S62323D
## 39425 S62323G
## 39426 S62323K
## 39427 S62323P
## 39428 S62323S
## 39429 S62324A
## 39430 S62324B
## 39431 S62324D
## 39432 S62324G
## 39433 S62324K
## 39434 S62324P
## 39435 S62324S
## 39436 S62325A
## 39437 S62325B
## 39438 S62325D
## 39439 S62325G
## 39440 S62325K
## 39441 S62325P
## 39442 S62325S
## 39443 S62326A
## 39444 S62326B
## 39445 S62326D
## 39446 S62326G
## 39447 S62326K
## 39448 S62326P
## 39449 S62326S
## 39450 S62327A
## 39451 S62327B
## 39452 S62327D
## 39453 S62327G
## 39454 S62327K
## 39455 S62327P
## 39456 S62327S
## 39457 S62328A
## 39458 S62328B
## 39459 S62328D
## 39460 S62328G
## 39461 S62328K
## 39462 S62328P
## 39463 S62328S
## 39464 S62329A
## 39465 S62329B
## 39466 S62329D
## 39467 S62329G
## 39468 S62329K
## 39469 S62329P
## 39470 S62329S
## 39471 S62330A
## 39472 S62330B
## 39473 S62330D
## 39474 S62330G
## 39475 S62330K
## 39476 S62330P
## 39477 S62330S
## 39478 S62331A
## 39479 S62331B
## 39480 S62331D
## 39481 S62331G
## 39482 S62331K
## 39483 S62331P
## 39484 S62331S
## 39485 S62332A
## 39486 S62332B
## 39487 S62332D
## 39488 S62332G
## 39489 S62332K
## 39490 S62332P
## 39491 S62332S
## 39492 S62333A
## 39493 S62333B
## 39494 S62333D
## 39495 S62333G
## 39496 S62333K
## 39497 S62333P
## 39498 S62333S
## 39499 S62334A
## 39500 S62334B
## 39501 S62334D
## 39502 S62334G
## 39503 S62334K
## 39504 S62334P
## 39505 S62334S
## 39506 S62335A
## 39507 S62335B
## 39508 S62335D
## 39509 S62335G
## 39510 S62335K
## 39511 S62335P
## 39512 S62335S
## 39513 S62336A
## 39514 S62336B
## 39515 S62336D
## 39516 S62336G
## 39517 S62336K
## 39518 S62336P
## 39519 S62336S
## 39520 S62337A
## 39521 S62337B
## 39522 S62337D
## 39523 S62337G
## 39524 S62337K
## 39525 S62337P
## 39526 S62337S
## 39527 S62338A
## 39528 S62338B
## 39529 S62338D
## 39530 S62338G
## 39531 S62338K
## 39532 S62338P
## 39533 S62338S
## 39534 S62339A
## 39535 S62339B
## 39536 S62339D
## 39537 S62339G
## 39538 S62339K
## 39539 S62339P
## 39540 S62339S
## 39541 S62340A
## 39542 S62340B
## 39543 S62340D
## 39544 S62340G
## 39545 S62340K
## 39546 S62340P
## 39547 S62340S
## 39548 S62341A
## 39549 S62341B
## 39550 S62341D
## 39551 S62341G
## 39552 S62341K
## 39553 S62341P
## 39554 S62341S
## 39555 S62342A
## 39556 S62342B
## 39557 S62342D
## 39558 S62342G
## 39559 S62342K
## 39560 S62342P
## 39561 S62342S
## 39562 S62343A
## 39563 S62343B
## 39564 S62343D
## 39565 S62343G
## 39566 S62343K
## 39567 S62343P
## 39568 S62343S
## 39569 S62344A
## 39570 S62344B
## 39571 S62344D
## 39572 S62344G
## 39573 S62344K
## 39574 S62344P
## 39575 S62344S
## 39576 S62345A
## 39577 S62345B
## 39578 S62345D
## 39579 S62345G
## 39580 S62345K
## 39581 S62345P
## 39582 S62345S
## 39583 S62346A
## 39584 S62346B
## 39585 S62346D
## 39586 S62346G
## 39587 S62346K
## 39588 S62346P
## 39589 S62346S
## 39590 S62347A
## 39591 S62347B
## 39592 S62347D
## 39593 S62347G
## 39594 S62347K
## 39595 S62347P
## 39596 S62347S
## 39597 S62348A
## 39598 S62348B
## 39599 S62348D
## 39600 S62348G
## 39601 S62348K
## 39602 S62348P
## 39603 S62348S
## 39604 S62349A
## 39605 S62349B
## 39606 S62349D
## 39607 S62349G
## 39608 S62349K
## 39609 S62349P
## 39610 S62349S
## 39611 S62350A
## 39612 S62350B
## 39613 S62350D
## 39614 S62350G
## 39615 S62350K
## 39616 S62350P
## 39617 S62350S
## 39618 S62351A
## 39619 S62351B
## 39620 S62351D
## 39621 S62351G
## 39622 S62351K
## 39623 S62351P
## 39624 S62351S
## 39625 S62352A
## 39626 S62352B
## 39627 S62352D
## 39628 S62352G
## 39629 S62352K
## 39630 S62352P
## 39631 S62352S
## 39632 S62353A
## 39633 S62353B
## 39634 S62353D
## 39635 S62353G
## 39636 S62353K
## 39637 S62353P
## 39638 S62353S
## 39639 S62354A
## 39640 S62354B
## 39641 S62354D
## 39642 S62354G
## 39643 S62354K
## 39644 S62354P
## 39645 S62354S
## 39646 S62355A
## 39647 S62355B
## 39648 S62355D
## 39649 S62355G
## 39650 S62355K
## 39651 S62355P
## 39652 S62355S
## 39653 S62356A
## 39654 S62356B
## 39655 S62356D
## 39656 S62356G
## 39657 S62356K
## 39658 S62356P
## 39659 S62356S
## 39660 S62357A
## 39661 S62357B
## 39662 S62357D
## 39663 S62357G
## 39664 S62357K
## 39665 S62357P
## 39666 S62357S
## 39667 S62358A
## 39668 S62358B
## 39669 S62358D
## 39670 S62358G
## 39671 S62358K
## 39672 S62358P
## 39673 S62358S
## 39674 S62359A
## 39675 S62359B
## 39676 S62359D
## 39677 S62359G
## 39678 S62359K
## 39679 S62359P
## 39680 S62359S
## 39681 S62360A
## 39682 S62360B
## 39683 S62360D
## 39684 S62360G
## 39685 S62360K
## 39686 S62360P
## 39687 S62360S
## 39688 S62361A
## 39689 S62361B
## 39690 S62361D
## 39691 S62361G
## 39692 S62361K
## 39693 S62361P
## 39694 S62361S
## 39695 S62362A
## 39696 S62362B
## 39697 S62362D
## 39698 S62362G
## 39699 S62362K
## 39700 S62362P
## 39701 S62362S
## 39702 S62363A
## 39703 S62363B
## 39704 S62363D
## 39705 S62363G
## 39706 S62363K
## 39707 S62363P
## 39708 S62363S
## 39709 S62364A
## 39710 S62364B
## 39711 S62364D
## 39712 S62364G
## 39713 S62364K
## 39714 S62364P
## 39715 S62364S
## 39716 S62365A
## 39717 S62365B
## 39718 S62365D
## 39719 S62365G
## 39720 S62365K
## 39721 S62365P
## 39722 S62365S
## 39723 S62366A
## 39724 S62366B
## 39725 S62366D
## 39726 S62366G
## 39727 S62366K
## 39728 S62366P
## 39729 S62366S
## 39730 S62367A
## 39731 S62367B
## 39732 S62367D
## 39733 S62367G
## 39734 S62367K
## 39735 S62367P
## 39736 S62367S
## 39737 S62368A
## 39738 S62368B
## 39739 S62368D
## 39740 S62368G
## 39741 S62368K
## 39742 S62368P
## 39743 S62368S
## 39744 S62369A
## 39745 S62369B
## 39746 S62369D
## 39747 S62369G
## 39748 S62369K
## 39749 S62369P
## 39750 S62369S
## 39751 S62390A
## 39752 S62390B
## 39753 S62390D
## 39754 S62390G
## 39755 S62390K
## 39756 S62390P
## 39757 S62390S
## 39758 S62391A
## 39759 S62391B
## 39760 S62391D
## 39761 S62391G
## 39762 S62391K
## 39763 S62391P
## 39764 S62391S
## 39765 S62392A
## 39766 S62392B
## 39767 S62392D
## 39768 S62392G
## 39769 S62392K
## 39770 S62392P
## 39771 S62392S
## 39772 S62393A
## 39773 S62393B
## 39774 S62393D
## 39775 S62393G
## 39776 S62393K
## 39777 S62393P
## 39778 S62393S
## 39779 S62394A
## 39780 S62394B
## 39781 S62394D
## 39782 S62394G
## 39783 S62394K
## 39784 S62394P
## 39785 S62394S
## 39786 S62395A
## 39787 S62395B
## 39788 S62395D
## 39789 S62395G
## 39790 S62395K
## 39791 S62395P
## 39792 S62395S
## 39793 S62396A
## 39794 S62396B
## 39795 S62396D
## 39796 S62396G
## 39797 S62396K
## 39798 S62396P
## 39799 S62396S
## 39800 S62397A
## 39801 S62397B
## 39802 S62397D
## 39803 S62397G
## 39804 S62397K
## 39805 S62397P
## 39806 S62397S
## 39807 S62398A
## 39808 S62398B
## 39809 S62398D
## 39810 S62398G
## 39811 S62398K
## 39812 S62398P
## 39813 S62398S
## 39814 S62399A
## 39815 S62399B
## 39816 S62399D
## 39817 S62399G
## 39818 S62399K
## 39819 S62399P
## 39820 S62399S
## 39821 S62501A
## 39822 S62501B
## 39823 S62501D
## 39824 S62501G
## 39825 S62501K
## 39826 S62501P
## 39827 S62501S
## 39828 S62502A
## 39829 S62502B
## 39830 S62502D
## 39831 S62502G
## 39832 S62502K
## 39833 S62502P
## 39834 S62502S
## 39835 S62509A
## 39836 S62509B
## 39837 S62509D
## 39838 S62509G
## 39839 S62509K
## 39840 S62509P
## 39841 S62509S
## 39842 S62511A
## 39843 S62511B
## 39844 S62511D
## 39845 S62511G
## 39846 S62511K
## 39847 S62511P
## 39848 S62511S
## 39849 S62512A
## 39850 S62512B
## 39851 S62512D
## 39852 S62512G
## 39853 S62512K
## 39854 S62512P
## 39855 S62512S
## 39856 S62513A
## 39857 S62513B
## 39858 S62513D
## 39859 S62513G
## 39860 S62513K
## 39861 S62513P
## 39862 S62513S
## 39863 S62514A
## 39864 S62514B
## 39865 S62514D
## 39866 S62514G
## 39867 S62514K
## 39868 S62514P
## 39869 S62514S
## 39870 S62515A
## 39871 S62515B
## 39872 S62515D
## 39873 S62515G
## 39874 S62515K
## 39875 S62515P
## 39876 S62515S
## 39877 S62516A
## 39878 S62516B
## 39879 S62516D
## 39880 S62516G
## 39881 S62516K
## 39882 S62516P
## 39883 S62516S
## 39884 S62521A
## 39885 S62521B
## 39886 S62521D
## 39887 S62521G
## 39888 S62521K
## 39889 S62521P
## 39890 S62521S
## 39891 S62522A
## 39892 S62522B
## 39893 S62522D
## 39894 S62522G
## 39895 S62522K
## 39896 S62522P
## 39897 S62522S
## 39898 S62523A
## 39899 S62523B
## 39900 S62523D
## 39901 S62523G
## 39902 S62523K
## 39903 S62523P
## 39904 S62523S
## 39905 S62524A
## 39906 S62524B
## 39907 S62524D
## 39908 S62524G
## 39909 S62524K
## 39910 S62524P
## 39911 S62524S
## 39912 S62525A
## 39913 S62525B
## 39914 S62525D
## 39915 S62525G
## 39916 S62525K
## 39917 S62525P
## 39918 S62525S
## 39919 S62526A
## 39920 S62526B
## 39921 S62526D
## 39922 S62526G
## 39923 S62526K
## 39924 S62526P
## 39925 S62526S
## 39926 S62600A
## 39927 S62600B
## 39928 S62600D
## 39929 S62600G
## 39930 S62600K
## 39931 S62600P
## 39932 S62600S
## 39933 S62601A
## 39934 S62601B
## 39935 S62601D
## 39936 S62601G
## 39937 S62601K
## 39938 S62601P
## 39939 S62601S
## 39940 S62602A
## 39941 S62602B
## 39942 S62602D
## 39943 S62602G
## 39944 S62602K
## 39945 S62602P
## 39946 S62602S
## 39947 S62603A
## 39948 S62603B
## 39949 S62603D
## 39950 S62603G
## 39951 S62603K
## 39952 S62603P
## 39953 S62603S
## 39954 S62604A
## 39955 S62604B
## 39956 S62604D
## 39957 S62604G
## 39958 S62604K
## 39959 S62604P
## 39960 S62604S
## 39961 S62605A
## 39962 S62605B
## 39963 S62605D
## 39964 S62605G
## 39965 S62605K
## 39966 S62605P
## 39967 S62605S
## 39968 S62606A
## 39969 S62606B
## 39970 S62606D
## 39971 S62606G
## 39972 S62606K
## 39973 S62606P
## 39974 S62606S
## 39975 S62607A
## 39976 S62607B
## 39977 S62607D
## 39978 S62607G
## 39979 S62607K
## 39980 S62607P
## 39981 S62607S
## 39982 S62608A
## 39983 S62608B
## 39984 S62608D
## 39985 S62608G
## 39986 S62608K
## 39987 S62608P
## 39988 S62608S
## 39989 S62609A
## 39990 S62609B
## 39991 S62609D
## 39992 S62609G
## 39993 S62609K
## 39994 S62609P
## 39995 S62609S
## 39996 S62610A
## 39997 S62610B
## 39998 S62610D
## 39999 S62610G
## 40000 S62610K
## 40001 S62610P
## 40002 S62610S
## 40003 S62611A
## 40004 S62611B
## 40005 S62611D
## 40006 S62611G
## 40007 S62611K
## 40008 S62611P
## 40009 S62611S
## 40010 S62612A
## 40011 S62612B
## 40012 S62612D
## 40013 S62612G
## 40014 S62612K
## 40015 S62612P
## 40016 S62612S
## 40017 S62613A
## 40018 S62613B
## 40019 S62613D
## 40020 S62613G
## 40021 S62613K
## 40022 S62613P
## 40023 S62613S
## 40024 S62614A
## 40025 S62614B
## 40026 S62614D
## 40027 S62614G
## 40028 S62614K
## 40029 S62614P
## 40030 S62614S
## 40031 S62615A
## 40032 S62615B
## 40033 S62615D
## 40034 S62615G
## 40035 S62615K
## 40036 S62615P
## 40037 S62615S
## 40038 S62616A
## 40039 S62616B
## 40040 S62616D
## 40041 S62616G
## 40042 S62616K
## 40043 S62616P
## 40044 S62616S
## 40045 S62617A
## 40046 S62617B
## 40047 S62617D
## 40048 S62617G
## 40049 S62617K
## 40050 S62617P
## 40051 S62617S
## 40052 S62618A
## 40053 S62618B
## 40054 S62618D
## 40055 S62618G
## 40056 S62618K
## 40057 S62618P
## 40058 S62618S
## 40059 S62619A
## 40060 S62619B
## 40061 S62619D
## 40062 S62619G
## 40063 S62619K
## 40064 S62619P
## 40065 S62619S
## 40066 S62620A
## 40067 S62620B
## 40068 S62620D
## 40069 S62620G
## 40070 S62620K
## 40071 S62620P
## 40072 S62620S
## 40073 S62621A
## 40074 S62621B
## 40075 S62621D
## 40076 S62621G
## 40077 S62621K
## 40078 S62621P
## 40079 S62621S
## 40080 S62622A
## 40081 S62622B
## 40082 S62622D
## 40083 S62622G
## 40084 S62622K
## 40085 S62622P
## 40086 S62622S
## 40087 S62623A
## 40088 S62623B
## 40089 S62623D
## 40090 S62623G
## 40091 S62623K
## 40092 S62623P
## 40093 S62623S
## 40094 S62624A
## 40095 S62624B
## 40096 S62624D
## 40097 S62624G
## 40098 S62624K
## 40099 S62624P
## 40100 S62624S
## 40101 S62625A
## 40102 S62625B
## 40103 S62625D
## 40104 S62625G
## 40105 S62625K
## 40106 S62625P
## 40107 S62625S
## 40108 S62626A
## 40109 S62626B
## 40110 S62626D
## 40111 S62626G
## 40112 S62626K
## 40113 S62626P
## 40114 S62626S
## 40115 S62627A
## 40116 S62627B
## 40117 S62627D
## 40118 S62627G
## 40119 S62627K
## 40120 S62627P
## 40121 S62627S
## 40122 S62628A
## 40123 S62628B
## 40124 S62628D
## 40125 S62628G
## 40126 S62628K
## 40127 S62628P
## 40128 S62628S
## 40129 S62629A
## 40130 S62629B
## 40131 S62629D
## 40132 S62629G
## 40133 S62629K
## 40134 S62629P
## 40135 S62629S
## 40136 S62630A
## 40137 S62630B
## 40138 S62630D
## 40139 S62630G
## 40140 S62630K
## 40141 S62630P
## 40142 S62630S
## 40143 S62631A
## 40144 S62631B
## 40145 S62631D
## 40146 S62631G
## 40147 S62631K
## 40148 S62631P
## 40149 S62631S
## 40150 S62632A
## 40151 S62632B
## 40152 S62632D
## 40153 S62632G
## 40154 S62632K
## 40155 S62632P
## 40156 S62632S
## 40157 S62633A
## 40158 S62633B
## 40159 S62633D
## 40160 S62633G
## 40161 S62633K
## 40162 S62633P
## 40163 S62633S
## 40164 S62634A
## 40165 S62634B
## 40166 S62634D
## 40167 S62634G
## 40168 S62634K
## 40169 S62634P
## 40170 S62634S
## 40171 S62635A
## 40172 S62635B
## 40173 S62635D
## 40174 S62635G
## 40175 S62635K
## 40176 S62635P
## 40177 S62635S
## 40178 S62636A
## 40179 S62636B
## 40180 S62636D
## 40181 S62636G
## 40182 S62636K
## 40183 S62636P
## 40184 S62636S
## 40185 S62637A
## 40186 S62637B
## 40187 S62637D
## 40188 S62637G
## 40189 S62637K
## 40190 S62637P
## 40191 S62637S
## 40192 S62638A
## 40193 S62638B
## 40194 S62638D
## 40195 S62638G
## 40196 S62638K
## 40197 S62638P
## 40198 S62638S
## 40199 S62639A
## 40200 S62639B
## 40201 S62639D
## 40202 S62639G
## 40203 S62639K
## 40204 S62639P
## 40205 S62639S
## 40206 S62640A
## 40207 S62640B
## 40208 S62640D
## 40209 S62640G
## 40210 S62640K
## 40211 S62640P
## 40212 S62640S
## 40213 S62641A
## 40214 S62641B
## 40215 S62641D
## 40216 S62641G
## 40217 S62641K
## 40218 S62641P
## 40219 S62641S
## 40220 S62642A
## 40221 S62642B
## 40222 S62642D
## 40223 S62642G
## 40224 S62642K
## 40225 S62642P
## 40226 S62642S
## 40227 S62643A
## 40228 S62643B
## 40229 S62643D
## 40230 S62643G
## 40231 S62643K
## 40232 S62643P
## 40233 S62643S
## 40234 S62644A
## 40235 S62644B
## 40236 S62644D
## 40237 S62644G
## 40238 S62644K
## 40239 S62644P
## 40240 S62644S
## 40241 S62645A
## 40242 S62645B
## 40243 S62645D
## 40244 S62645G
## 40245 S62645K
## 40246 S62645P
## 40247 S62645S
## 40248 S62646A
## 40249 S62646B
## 40250 S62646D
## 40251 S62646G
## 40252 S62646K
## 40253 S62646P
## 40254 S62646S
## 40255 S62647A
## 40256 S62647B
## 40257 S62647D
## 40258 S62647G
## 40259 S62647K
## 40260 S62647P
## 40261 S62647S
## 40262 S62648A
## 40263 S62648B
## 40264 S62648D
## 40265 S62648G
## 40266 S62648K
## 40267 S62648P
## 40268 S62648S
## 40269 S62649A
## 40270 S62649B
## 40271 S62649D
## 40272 S62649G
## 40273 S62649K
## 40274 S62649P
## 40275 S62649S
## 40276 S62650A
## 40277 S62650B
## 40278 S62650D
## 40279 S62650G
## 40280 S62650K
## 40281 S62650P
## 40282 S62650S
## 40283 S62651A
## 40284 S62651B
## 40285 S62651D
## 40286 S62651G
## 40287 S62651K
## 40288 S62651P
## 40289 S62651S
## 40290 S62652A
## 40291 S62652B
## 40292 S62652D
## 40293 S62652G
## 40294 S62652K
## 40295 S62652P
## 40296 S62652S
## 40297 S62653A
## 40298 S62653B
## 40299 S62653D
## 40300 S62653G
## 40301 S62653K
## 40302 S62653P
## 40303 S62653S
## 40304 S62654A
## 40305 S62654B
## 40306 S62654D
## 40307 S62654G
## 40308 S62654K
## 40309 S62654P
## 40310 S62654S
## 40311 S62655A
## 40312 S62655B
## 40313 S62655D
## 40314 S62655G
## 40315 S62655K
## 40316 S62655P
## 40317 S62655S
## 40318 S62656A
## 40319 S62656B
## 40320 S62656D
## 40321 S62656G
## 40322 S62656K
## 40323 S62656P
## 40324 S62656S
## 40325 S62657A
## 40326 S62657B
## 40327 S62657D
## 40328 S62657G
## 40329 S62657K
## 40330 S62657P
## 40331 S62657S
## 40332 S62658A
## 40333 S62658B
## 40334 S62658D
## 40335 S62658G
## 40336 S62658K
## 40337 S62658P
## 40338 S62658S
## 40339 S62659A
## 40340 S62659B
## 40341 S62659D
## 40342 S62659G
## 40343 S62659K
## 40344 S62659P
## 40345 S62659S
## 40346 S62660A
## 40347 S62660B
## 40348 S62660D
## 40349 S62660G
## 40350 S62660K
## 40351 S62660P
## 40352 S62660S
## 40353 S62661A
## 40354 S62661B
## 40355 S62661D
## 40356 S62661G
## 40357 S62661K
## 40358 S62661P
## 40359 S62661S
## 40360 S62662A
## 40361 S62662B
## 40362 S62662D
## 40363 S62662G
## 40364 S62662K
## 40365 S62662P
## 40366 S62662S
## 40367 S62663A
## 40368 S62663B
## 40369 S62663D
## 40370 S62663G
## 40371 S62663K
## 40372 S62663P
## 40373 S62663S
## 40374 S62664A
## 40375 S62664B
## 40376 S62664D
## 40377 S62664G
## 40378 S62664K
## 40379 S62664P
## 40380 S62664S
## 40381 S62665A
## 40382 S62665B
## 40383 S62665D
## 40384 S62665G
## 40385 S62665K
## 40386 S62665P
## 40387 S62665S
## 40388 S62666A
## 40389 S62666B
## 40390 S62666D
## 40391 S62666G
## 40392 S62666K
## 40393 S62666P
## 40394 S62666S
## 40395 S62667A
## 40396 S62667B
## 40397 S62667D
## 40398 S62667G
## 40399 S62667K
## 40400 S62667P
## 40401 S62667S
## 40402 S62668A
## 40403 S62668B
## 40404 S62668D
## 40405 S62668G
## 40406 S62668K
## 40407 S62668P
## 40408 S62668S
## 40409 S62669A
## 40410 S62669B
## 40411 S62669D
## 40412 S62669G
## 40413 S62669K
## 40414 S62669P
## 40415 S62669S
## 40416 S6290XA
## 40417 S6290XB
## 40418 S6290XD
## 40419 S6290XG
## 40420 S6290XK
## 40421 S6290XP
## 40422 S6290XS
## 40423 S6291XA
## 40424 S6291XB
## 40425 S6291XD
## 40426 S6291XG
## 40427 S6291XK
## 40428 S6291XP
## 40429 S6291XS
## 40430 S6292XA
## 40431 S6292XB
## 40432 S6292XD
## 40433 S6292XG
## 40434 S6292XK
## 40435 S6292XP
## 40436 S6292XS
## 40437 S63001A
## 40438 S63001D
## 40439 S63001S
## 40440 S63002A
## 40441 S63002D
## 40442 S63002S
## 40443 S63003A
## 40444 S63003D
## 40445 S63003S
## 40446 S63004A
## 40447 S63004D
## 40448 S63004S
## 40449 S63005A
## 40450 S63005D
## 40451 S63005S
## 40452 S63006A
## 40453 S63006D
## 40454 S63006S
## 40455 S63011A
## 40456 S63011D
## 40457 S63011S
## 40458 S63012A
## 40459 S63012D
## 40460 S63012S
## 40461 S63013A
## 40462 S63013D
## 40463 S63013S
## 40464 S63014A
## 40465 S63014D
## 40466 S63014S
## 40467 S63015A
## 40468 S63015D
## 40469 S63015S
## 40470 S63016A
## 40471 S63016D
## 40472 S63016S
## 40473 S63021A
## 40474 S63021D
## 40475 S63021S
## 40476 S63022A
## 40477 S63022D
## 40478 S63022S
## 40479 S63023A
## 40480 S63023D
## 40481 S63023S
## 40482 S63024A
## 40483 S63024D
## 40484 S63024S
## 40485 S63025A
## 40486 S63025D
## 40487 S63025S
## 40488 S63026A
## 40489 S63026D
## 40490 S63026S
## 40491 S63031A
## 40492 S63031D
## 40493 S63031S
## 40494 S63032A
## 40495 S63032D
## 40496 S63032S
## 40497 S63033A
## 40498 S63033D
## 40499 S63033S
## 40500 S63034A
## 40501 S63034D
## 40502 S63034S
## 40503 S63035A
## 40504 S63035D
## 40505 S63035S
## 40506 S63036A
## 40507 S63036D
## 40508 S63036S
## 40509 S63041A
## 40510 S63041D
## 40511 S63041S
## 40512 S63042A
## 40513 S63042D
## 40514 S63042S
## 40515 S63043A
## 40516 S63043D
## 40517 S63043S
## 40518 S63044A
## 40519 S63044D
## 40520 S63044S
## 40521 S63045A
## 40522 S63045D
## 40523 S63045S
## 40524 S63046A
## 40525 S63046D
## 40526 S63046S
## 40527 S63051A
## 40528 S63051D
## 40529 S63051S
## 40530 S63052A
## 40531 S63052D
## 40532 S63052S
## 40533 S63053A
## 40534 S63053D
## 40535 S63053S
## 40536 S63054A
## 40537 S63054D
## 40538 S63054S
## 40539 S63055A
## 40540 S63055D
## 40541 S63055S
## 40542 S63056A
## 40543 S63056D
## 40544 S63056S
## 40545 S63061A
## 40546 S63061D
## 40547 S63061S
## 40548 S63062A
## 40549 S63062D
## 40550 S63062S
## 40551 S63063A
## 40552 S63063D
## 40553 S63063S
## 40554 S63064A
## 40555 S63064D
## 40556 S63064S
## 40557 S63065A
## 40558 S63065D
## 40559 S63065S
## 40560 S63066A
## 40561 S63066D
## 40562 S63066S
## 40563 S63071A
## 40564 S63071D
## 40565 S63071S
## 40566 S63072A
## 40567 S63072D
## 40568 S63072S
## 40569 S63073A
## 40570 S63073D
## 40571 S63073S
## 40572 S63074A
## 40573 S63074D
## 40574 S63074S
## 40575 S63075A
## 40576 S63075D
## 40577 S63075S
## 40578 S63076A
## 40579 S63076D
## 40580 S63076S
## 40581 S63091A
## 40582 S63091D
## 40583 S63091S
## 40584 S63092A
## 40585 S63092D
## 40586 S63092S
## 40587 S63093A
## 40588 S63093D
## 40589 S63093S
## 40590 S63094A
## 40591 S63094D
## 40592 S63094S
## 40593 S63095A
## 40594 S63095D
## 40595 S63095S
## 40596 S63096A
## 40597 S63096D
## 40598 S63096S
## 40599 S63101A
## 40600 S63101D
## 40601 S63101S
## 40602 S63102A
## 40603 S63102D
## 40604 S63102S
## 40605 S63103A
## 40606 S63103D
## 40607 S63103S
## 40608 S63104A
## 40609 S63104D
## 40610 S63104S
## 40611 S63105A
## 40612 S63105D
## 40613 S63105S
## 40614 S63106A
## 40615 S63106D
## 40616 S63106S
## 40617 S63111A
## 40618 S63111D
## 40619 S63111S
## 40620 S63112A
## 40621 S63112D
## 40622 S63112S
## 40623 S63113A
## 40624 S63113D
## 40625 S63113S
## 40626 S63114A
## 40627 S63114D
## 40628 S63114S
## 40629 S63115A
## 40630 S63115D
## 40631 S63115S
## 40632 S63116A
## 40633 S63116D
## 40634 S63116S
## 40635 S63121A
## 40636 S63121D
## 40637 S63121S
## 40638 S63122A
## 40639 S63122D
## 40640 S63122S
## 40641 S63123A
## 40642 S63123D
## 40643 S63123S
## 40644 S63124A
## 40645 S63124D
## 40646 S63124S
## 40647 S63125A
## 40648 S63125D
## 40649 S63125S
## 40650 S63126A
## 40651 S63126D
## 40652 S63126S
## 40653 S63200A
## 40654 S63200D
## 40655 S63200S
## 40656 S63201A
## 40657 S63201D
## 40658 S63201S
## 40659 S63202A
## 40660 S63202D
## 40661 S63202S
## 40662 S63203A
## 40663 S63203D
## 40664 S63203S
## 40665 S63204A
## 40666 S63204D
## 40667 S63204S
## 40668 S63205A
## 40669 S63205D
## 40670 S63205S
## 40671 S63206A
## 40672 S63206D
## 40673 S63206S
## 40674 S63207A
## 40675 S63207D
## 40676 S63207S
## 40677 S63208A
## 40678 S63208D
## 40679 S63208S
## 40680 S63209A
## 40681 S63209D
## 40682 S63209S
## 40683 S63210A
## 40684 S63210D
## 40685 S63210S
## 40686 S63211A
## 40687 S63211D
## 40688 S63211S
## 40689 S63212A
## 40690 S63212D
## 40691 S63212S
## 40692 S63213A
## 40693 S63213D
## 40694 S63213S
## 40695 S63214A
## 40696 S63214D
## 40697 S63214S
## 40698 S63215A
## 40699 S63215D
## 40700 S63215S
## 40701 S63216A
## 40702 S63216D
## 40703 S63216S
## 40704 S63217A
## 40705 S63217D
## 40706 S63217S
## 40707 S63218A
## 40708 S63218D
## 40709 S63218S
## 40710 S63219A
## 40711 S63219D
## 40712 S63219S
## 40713 S63220A
## 40714 S63220D
## 40715 S63220S
## 40716 S63221A
## 40717 S63221D
## 40718 S63221S
## 40719 S63222A
## 40720 S63222D
## 40721 S63222S
## 40722 S63223A
## 40723 S63223D
## 40724 S63223S
## 40725 S63224A
## 40726 S63224D
## 40727 S63224S
## 40728 S63225A
## 40729 S63225D
## 40730 S63225S
## 40731 S63226A
## 40732 S63226D
## 40733 S63226S
## 40734 S63227A
## 40735 S63227D
## 40736 S63227S
## 40737 S63228A
## 40738 S63228D
## 40739 S63228S
## 40740 S63229A
## 40741 S63229D
## 40742 S63229S
## 40743 S63230A
## 40744 S63230D
## 40745 S63230S
## 40746 S63231A
## 40747 S63231D
## 40748 S63231S
## 40749 S63232A
## 40750 S63232D
## 40751 S63232S
## 40752 S63233A
## 40753 S63233D
## 40754 S63233S
## 40755 S63234A
## 40756 S63234D
## 40757 S63234S
## 40758 S63235A
## 40759 S63235D
## 40760 S63235S
## 40761 S63236A
## 40762 S63236D
## 40763 S63236S
## 40764 S63237A
## 40765 S63237D
## 40766 S63237S
## 40767 S63238A
## 40768 S63238D
## 40769 S63238S
## 40770 S63239A
## 40771 S63239D
## 40772 S63239S
## 40773 S63240A
## 40774 S63240D
## 40775 S63240S
## 40776 S63241A
## 40777 S63241D
## 40778 S63241S
## 40779 S63242A
## 40780 S63242D
## 40781 S63242S
## 40782 S63243A
## 40783 S63243D
## 40784 S63243S
## 40785 S63244A
## 40786 S63244D
## 40787 S63244S
## 40788 S63245A
## 40789 S63245D
## 40790 S63245S
## 40791 S63246A
## 40792 S63246D
## 40793 S63246S
## 40794 S63247A
## 40795 S63247D
## 40796 S63247S
## 40797 S63248A
## 40798 S63248D
## 40799 S63248S
## 40800 S63249A
## 40801 S63249D
## 40802 S63249S
## 40803 S63250A
## 40804 S63250D
## 40805 S63250S
## 40806 S63251A
## 40807 S63251D
## 40808 S63251S
## 40809 S63252A
## 40810 S63252D
## 40811 S63252S
## 40812 S63253A
## 40813 S63253D
## 40814 S63253S
## 40815 S63254A
## 40816 S63254D
## 40817 S63254S
## 40818 S63255A
## 40819 S63255D
## 40820 S63255S
## 40821 S63256A
## 40822 S63256D
## 40823 S63256S
## 40824 S63257A
## 40825 S63257D
## 40826 S63257S
## 40827 S63258A
## 40828 S63258D
## 40829 S63258S
## 40830 S63259A
## 40831 S63259D
## 40832 S63259S
## 40833 S63260A
## 40834 S63260D
## 40835 S63260S
## 40836 S63261A
## 40837 S63261D
## 40838 S63261S
## 40839 S63262A
## 40840 S63262D
## 40841 S63262S
## 40842 S63263A
## 40843 S63263D
## 40844 S63263S
## 40845 S63264A
## 40846 S63264D
## 40847 S63264S
## 40848 S63265A
## 40849 S63265D
## 40850 S63265S
## 40851 S63266A
## 40852 S63266D
## 40853 S63266S
## 40854 S63267A
## 40855 S63267D
## 40856 S63267S
## 40857 S63268A
## 40858 S63268D
## 40859 S63268S
## 40860 S63269A
## 40861 S63269D
## 40862 S63269S
## 40863 S63270A
## 40864 S63270D
## 40865 S63270S
## 40866 S63271A
## 40867 S63271D
## 40868 S63271S
## 40869 S63272A
## 40870 S63272D
## 40871 S63272S
## 40872 S63273A
## 40873 S63273D
## 40874 S63273S
## 40875 S63274A
## 40876 S63274D
## 40877 S63274S
## 40878 S63275A
## 40879 S63275D
## 40880 S63275S
## 40881 S63276A
## 40882 S63276D
## 40883 S63276S
## 40884 S63277A
## 40885 S63277D
## 40886 S63277S
## 40887 S63278A
## 40888 S63278D
## 40889 S63278S
## 40890 S63279A
## 40891 S63279D
## 40892 S63279S
## 40893 S63280A
## 40894 S63280D
## 40895 S63280S
## 40896 S63281A
## 40897 S63281D
## 40898 S63281S
## 40899 S63282A
## 40900 S63282D
## 40901 S63282S
## 40902 S63283A
## 40903 S63283D
## 40904 S63283S
## 40905 S63284A
## 40906 S63284D
## 40907 S63284S
## 40908 S63285A
## 40909 S63285D
## 40910 S63285S
## 40911 S63286A
## 40912 S63286D
## 40913 S63286S
## 40914 S63287A
## 40915 S63287D
## 40916 S63287S
## 40917 S63288A
## 40918 S63288D
## 40919 S63288S
## 40920 S63289A
## 40921 S63289D
## 40922 S63289S
## 40923 S63290A
## 40924 S63290D
## 40925 S63290S
## 40926 S63291A
## 40927 S63291D
## 40928 S63291S
## 40929 S63292A
## 40930 S63292D
## 40931 S63292S
## 40932 S63293A
## 40933 S63293D
## 40934 S63293S
## 40935 S63294A
## 40936 S63294D
## 40937 S63294S
## 40938 S63295A
## 40939 S63295D
## 40940 S63295S
## 40941 S63296A
## 40942 S63296D
## 40943 S63296S
## 40944 S63297A
## 40945 S63297D
## 40946 S63297S
## 40947 S63298A
## 40948 S63298D
## 40949 S63298S
## 40950 S63299A
## 40951 S63299D
## 40952 S63299S
## 40953 S63301A
## 40954 S63301D
## 40955 S63301S
## 40956 S63302A
## 40957 S63302D
## 40958 S63302S
## 40959 S63309A
## 40960 S63309D
## 40961 S63309S
## 40962 S63311A
## 40963 S63311D
## 40964 S63311S
## 40965 S63312A
## 40966 S63312D
## 40967 S63312S
## 40968 S63319A
## 40969 S63319D
## 40970 S63319S
## 40971 S63321A
## 40972 S63321D
## 40973 S63321S
## 40974 S63322A
## 40975 S63322D
## 40976 S63322S
## 40977 S63329A
## 40978 S63329D
## 40979 S63329S
## 40980 S63331A
## 40981 S63331D
## 40982 S63331S
## 40983 S63332A
## 40984 S63332D
## 40985 S63332S
## 40986 S63339A
## 40987 S63339D
## 40988 S63339S
## 40989 S63391A
## 40990 S63391D
## 40991 S63391S
## 40992 S63392A
## 40993 S63392D
## 40994 S63392S
## 40995 S63399A
## 40996 S63399D
## 40997 S63399S
## 40998 S63400A
## 40999 S63400D
## 41000 S63400S
## 41001 S63401A
## 41002 S63401D
## 41003 S63401S
## 41004 S63402A
## 41005 S63402D
## 41006 S63402S
## 41007 S63403A
## 41008 S63403D
## 41009 S63403S
## 41010 S63404A
## 41011 S63404D
## 41012 S63404S
## 41013 S63405A
## 41014 S63405D
## 41015 S63405S
## 41016 S63406A
## 41017 S63406D
## 41018 S63406S
## 41019 S63407A
## 41020 S63407D
## 41021 S63407S
## 41022 S63408A
## 41023 S63408D
## 41024 S63408S
## 41025 S63409A
## 41026 S63409D
## 41027 S63409S
## 41028 S63410A
## 41029 S63410D
## 41030 S63410S
## 41031 S63411A
## 41032 S63411D
## 41033 S63411S
## 41034 S63412A
## 41035 S63412D
## 41036 S63412S
## 41037 S63413A
## 41038 S63413D
## 41039 S63413S
## 41040 S63414A
## 41041 S63414D
## 41042 S63414S
## 41043 S63415A
## 41044 S63415D
## 41045 S63415S
## 41046 S63416A
## 41047 S63416D
## 41048 S63416S
## 41049 S63417A
## 41050 S63417D
## 41051 S63417S
## 41052 S63418A
## 41053 S63418D
## 41054 S63418S
## 41055 S63419A
## 41056 S63419D
## 41057 S63419S
## 41058 S63420A
## 41059 S63420D
## 41060 S63420S
## 41061 S63421A
## 41062 S63421D
## 41063 S63421S
## 41064 S63422A
## 41065 S63422D
## 41066 S63422S
## 41067 S63423A
## 41068 S63423D
## 41069 S63423S
## 41070 S63424A
## 41071 S63424D
## 41072 S63424S
## 41073 S63425A
## 41074 S63425D
## 41075 S63425S
## 41076 S63426A
## 41077 S63426D
## 41078 S63426S
## 41079 S63427A
## 41080 S63427D
## 41081 S63427S
## 41082 S63428A
## 41083 S63428D
## 41084 S63428S
## 41085 S63429A
## 41086 S63429D
## 41087 S63429S
## 41088 S63430A
## 41089 S63430D
## 41090 S63430S
## 41091 S63431A
## 41092 S63431D
## 41093 S63431S
## 41094 S63432A
## 41095 S63432D
## 41096 S63432S
## 41097 S63433A
## 41098 S63433D
## 41099 S63433S
## 41100 S63434A
## 41101 S63434D
## 41102 S63434S
## 41103 S63435A
## 41104 S63435D
## 41105 S63435S
## 41106 S63436A
## 41107 S63436D
## 41108 S63436S
## 41109 S63437A
## 41110 S63437D
## 41111 S63437S
## 41112 S63438A
## 41113 S63438D
## 41114 S63438S
## 41115 S63439A
## 41116 S63439D
## 41117 S63439S
## 41118 S63490A
## 41119 S63490D
## 41120 S63490S
## 41121 S63491A
## 41122 S63491D
## 41123 S63491S
## 41124 S63492A
## 41125 S63492D
## 41126 S63492S
## 41127 S63493A
## 41128 S63493D
## 41129 S63493S
## 41130 S63494A
## 41131 S63494D
## 41132 S63494S
## 41133 S63495A
## 41134 S63495D
## 41135 S63495S
## 41136 S63496A
## 41137 S63496D
## 41138 S63496S
## 41139 S63497A
## 41140 S63497D
## 41141 S63497S
## 41142 S63498A
## 41143 S63498D
## 41144 S63498S
## 41145 S63499A
## 41146 S63499D
## 41147 S63499S
## 41148 S63501A
## 41149 S63501D
## 41150 S63501S
## 41151 S63502A
## 41152 S63502D
## 41153 S63502S
## 41154 S63509A
## 41155 S63509D
## 41156 S63509S
## 41157 S63511A
## 41158 S63511D
## 41159 S63511S
## 41160 S63512A
## 41161 S63512D
## 41162 S63512S
## 41163 S63519A
## 41164 S63519D
## 41165 S63519S
## 41166 S63521A
## 41167 S63521D
## 41168 S63521S
## 41169 S63522A
## 41170 S63522D
## 41171 S63522S
## 41172 S63529A
## 41173 S63529D
## 41174 S63529S
## 41175 S63591A
## 41176 S63591D
## 41177 S63591S
## 41178 S63592A
## 41179 S63592D
## 41180 S63592S
## 41181 S63599A
## 41182 S63599D
## 41183 S63599S
## 41184 S63601A
## 41185 S63601D
## 41186 S63601S
## 41187 S63602A
## 41188 S63602D
## 41189 S63602S
## 41190 S63609A
## 41191 S63609D
## 41192 S63609S
## 41193 S63610A
## 41194 S63610D
## 41195 S63610S
## 41196 S63611A
## 41197 S63611D
## 41198 S63611S
## 41199 S63612A
## 41200 S63612D
## 41201 S63612S
## 41202 S63613A
## 41203 S63613D
## 41204 S63613S
## 41205 S63614A
## 41206 S63614D
## 41207 S63614S
## 41208 S63615A
## 41209 S63615D
## 41210 S63615S
## 41211 S63616A
## 41212 S63616D
## 41213 S63616S
## 41214 S63617A
## 41215 S63617D
## 41216 S63617S
## 41217 S63618A
## 41218 S63618D
## 41219 S63618S
## 41220 S63619A
## 41221 S63619D
## 41222 S63619S
## 41223 S63621A
## 41224 S63621D
## 41225 S63621S
## 41226 S63622A
## 41227 S63622D
## 41228 S63622S
## 41229 S63629A
## 41230 S63629D
## 41231 S63629S
## 41232 S63630A
## 41233 S63630D
## 41234 S63630S
## 41235 S63631A
## 41236 S63631D
## 41237 S63631S
## 41238 S63632A
## 41239 S63632D
## 41240 S63632S
## 41241 S63633A
## 41242 S63633D
## 41243 S63633S
## 41244 S63634A
## 41245 S63634D
## 41246 S63634S
## 41247 S63635A
## 41248 S63635D
## 41249 S63635S
## 41250 S63636A
## 41251 S63636D
## 41252 S63636S
## 41253 S63637A
## 41254 S63637D
## 41255 S63637S
## 41256 S63638A
## 41257 S63638D
## 41258 S63638S
## 41259 S63639A
## 41260 S63639D
## 41261 S63639S
## 41262 S63641A
## 41263 S63641D
## 41264 S63641S
## 41265 S63642A
## 41266 S63642D
## 41267 S63642S
## 41268 S63649A
## 41269 S63649D
## 41270 S63649S
## 41271 S63650A
## 41272 S63650D
## 41273 S63650S
## 41274 S63651A
## 41275 S63651D
## 41276 S63651S
## 41277 S63652A
## 41278 S63652D
## 41279 S63652S
## 41280 S63653A
## 41281 S63653D
## 41282 S63653S
## 41283 S63654A
## 41284 S63654D
## 41285 S63654S
## 41286 S63655A
## 41287 S63655D
## 41288 S63655S
## 41289 S63656A
## 41290 S63656D
## 41291 S63656S
## 41292 S63657A
## 41293 S63657D
## 41294 S63657S
## 41295 S63658A
## 41296 S63658D
## 41297 S63658S
## 41298 S63659A
## 41299 S63659D
## 41300 S63659S
## 41301 S63681A
## 41302 S63681D
## 41303 S63681S
## 41304 S63682A
## 41305 S63682D
## 41306 S63682S
## 41307 S63689A
## 41308 S63689D
## 41309 S63689S
## 41310 S63690A
## 41311 S63690D
## 41312 S63690S
## 41313 S63691A
## 41314 S63691D
## 41315 S63691S
## 41316 S63692A
## 41317 S63692D
## 41318 S63692S
## 41319 S63693A
## 41320 S63693D
## 41321 S63693S
## 41322 S63694A
## 41323 S63694D
## 41324 S63694S
## 41325 S63695A
## 41326 S63695D
## 41327 S63695S
## 41328 S63696A
## 41329 S63696D
## 41330 S63696S
## 41331 S63697A
## 41332 S63697D
## 41333 S63697S
## 41334 S63698A
## 41335 S63698D
## 41336 S63698S
## 41337 S63699A
## 41338 S63699D
## 41339 S63699S
## 41340 S638X1A
## 41341 S638X1D
## 41342 S638X1S
## 41343 S638X2A
## 41344 S638X2D
## 41345 S638X2S
## 41346 S638X9A
## 41347 S638X9D
## 41348 S638X9S
## 41349 S6390XA
## 41350 S6390XD
## 41351 S6390XS
## 41352 S6391XA
## 41353 S6391XD
## 41354 S6391XS
## 41355 S6392XA
## 41356 S6392XD
## 41357 S6392XS
## 41358 S6400XA
## 41359 S6400XD
## 41360 S6400XS
## 41361 S6401XA
## 41362 S6401XD
## 41363 S6401XS
## 41364 S6402XA
## 41365 S6402XD
## 41366 S6402XS
## 41367 S6410XA
## 41368 S6410XD
## 41369 S6410XS
## 41370 S6411XA
## 41371 S6411XD
## 41372 S6411XS
## 41373 S6412XA
## 41374 S6412XD
## 41375 S6412XS
## 41376 S6420XA
## 41377 S6420XD
## 41378 S6420XS
## 41379 S6421XA
## 41380 S6421XD
## 41381 S6421XS
## 41382 S6422XA
## 41383 S6422XD
## 41384 S6422XS
## 41385 S6430XA
## 41386 S6430XD
## 41387 S6430XS
## 41388 S6431XA
## 41389 S6431XD
## 41390 S6431XS
## 41391 S6432XA
## 41392 S6432XD
## 41393 S6432XS
## 41394 S6440XA
## 41395 S6440XD
## 41396 S6440XS
## 41397 S64490A
## 41398 S64490D
## 41399 S64490S
## 41400 S64491A
## 41401 S64491D
## 41402 S64491S
## 41403 S64492A
## 41404 S64492D
## 41405 S64492S
## 41406 S64493A
## 41407 S64493D
## 41408 S64493S
## 41409 S64494A
## 41410 S64494D
## 41411 S64494S
## 41412 S64495A
## 41413 S64495D
## 41414 S64495S
## 41415 S64496A
## 41416 S64496D
## 41417 S64496S
## 41418 S64497A
## 41419 S64497D
## 41420 S64497S
## 41421 S64498A
## 41422 S64498D
## 41423 S64498S
## 41424 S648X1A
## 41425 S648X1D
## 41426 S648X1S
## 41427 S648X2A
## 41428 S648X2D
## 41429 S648X2S
## 41430 S648X9A
## 41431 S648X9D
## 41432 S648X9S
## 41433 S6490XA
## 41434 S6490XD
## 41435 S6490XS
## 41436 S6491XA
## 41437 S6491XD
## 41438 S6491XS
## 41439 S6492XA
## 41440 S6492XD
## 41441 S6492XS
## 41442 S65001A
## 41443 S65001D
## 41444 S65001S
## 41445 S65002A
## 41446 S65002D
## 41447 S65002S
## 41448 S65009A
## 41449 S65009D
## 41450 S65009S
## 41451 S65011A
## 41452 S65011D
## 41453 S65011S
## 41454 S65012A
## 41455 S65012D
## 41456 S65012S
## 41457 S65019A
## 41458 S65019D
## 41459 S65019S
## 41460 S65091A
## 41461 S65091D
## 41462 S65091S
## 41463 S65092A
## 41464 S65092D
## 41465 S65092S
## 41466 S65099A
## 41467 S65099D
## 41468 S65099S
## 41469 S65101A
## 41470 S65101D
## 41471 S65101S
## 41472 S65102A
## 41473 S65102D
## 41474 S65102S
## 41475 S65109A
## 41476 S65109D
## 41477 S65109S
## 41478 S65111A
## 41479 S65111D
## 41480 S65111S
## 41481 S65112A
## 41482 S65112D
## 41483 S65112S
## 41484 S65119A
## 41485 S65119D
## 41486 S65119S
## 41487 S65191A
## 41488 S65191D
## 41489 S65191S
## 41490 S65192A
## 41491 S65192D
## 41492 S65192S
## 41493 S65199A
## 41494 S65199D
## 41495 S65199S
## 41496 S65201A
## 41497 S65201D
## 41498 S65201S
## 41499 S65202A
## 41500 S65202D
## 41501 S65202S
## 41502 S65209A
## 41503 S65209D
## 41504 S65209S
## 41505 S65211A
## 41506 S65211D
## 41507 S65211S
## 41508 S65212A
## 41509 S65212D
## 41510 S65212S
## 41511 S65219A
## 41512 S65219D
## 41513 S65219S
## 41514 S65291A
## 41515 S65291D
## 41516 S65291S
## 41517 S65292A
## 41518 S65292D
## 41519 S65292S
## 41520 S65299A
## 41521 S65299D
## 41522 S65299S
## 41523 S65301A
## 41524 S65301D
## 41525 S65301S
## 41526 S65302A
## 41527 S65302D
## 41528 S65302S
## 41529 S65309A
## 41530 S65309D
## 41531 S65309S
## 41532 S65311A
## 41533 S65311D
## 41534 S65311S
## 41535 S65312A
## 41536 S65312D
## 41537 S65312S
## 41538 S65319A
## 41539 S65319D
## 41540 S65319S
## 41541 S65391A
## 41542 S65391D
## 41543 S65391S
## 41544 S65392A
## 41545 S65392D
## 41546 S65392S
## 41547 S65399A
## 41548 S65399D
## 41549 S65399S
## 41550 S65401A
## 41551 S65401D
## 41552 S65401S
## 41553 S65402A
## 41554 S65402D
## 41555 S65402S
## 41556 S65409A
## 41557 S65409D
## 41558 S65409S
## 41559 S65411A
## 41560 S65411D
## 41561 S65411S
## 41562 S65412A
## 41563 S65412D
## 41564 S65412S
## 41565 S65419A
## 41566 S65419D
## 41567 S65419S
## 41568 S65491A
## 41569 S65491D
## 41570 S65491S
## 41571 S65492A
## 41572 S65492D
## 41573 S65492S
## 41574 S65499A
## 41575 S65499D
## 41576 S65499S
## 41577 S65500A
## 41578 S65500D
## 41579 S65500S
## 41580 S65501A
## 41581 S65501D
## 41582 S65501S
## 41583 S65502A
## 41584 S65502D
## 41585 S65502S
## 41586 S65503A
## 41587 S65503D
## 41588 S65503S
## 41589 S65504A
## 41590 S65504D
## 41591 S65504S
## 41592 S65505A
## 41593 S65505D
## 41594 S65505S
## 41595 S65506A
## 41596 S65506D
## 41597 S65506S
## 41598 S65507A
## 41599 S65507D
## 41600 S65507S
## 41601 S65508A
## 41602 S65508D
## 41603 S65508S
## 41604 S65509A
## 41605 S65509D
## 41606 S65509S
## 41607 S65510A
## 41608 S65510D
## 41609 S65510S
## 41610 S65511A
## 41611 S65511D
## 41612 S65511S
## 41613 S65512A
## 41614 S65512D
## 41615 S65512S
## 41616 S65513A
## 41617 S65513D
## 41618 S65513S
## 41619 S65514A
## 41620 S65514D
## 41621 S65514S
## 41622 S65515A
## 41623 S65515D
## 41624 S65515S
## 41625 S65516A
## 41626 S65516D
## 41627 S65516S
## 41628 S65517A
## 41629 S65517D
## 41630 S65517S
## 41631 S65518A
## 41632 S65518D
## 41633 S65518S
## 41634 S65519A
## 41635 S65519D
## 41636 S65519S
## 41637 S65590A
## 41638 S65590D
## 41639 S65590S
## 41640 S65591A
## 41641 S65591D
## 41642 S65591S
## 41643 S65592A
## 41644 S65592D
## 41645 S65592S
## 41646 S65593A
## 41647 S65593D
## 41648 S65593S
## 41649 S65594A
## 41650 S65594D
## 41651 S65594S
## 41652 S65595A
## 41653 S65595D
## 41654 S65595S
## 41655 S65596A
## 41656 S65596D
## 41657 S65596S
## 41658 S65597A
## 41659 S65597D
## 41660 S65597S
## 41661 S65598A
## 41662 S65598D
## 41663 S65598S
## 41664 S65599A
## 41665 S65599D
## 41666 S65599S
## 41667 S65801A
## 41668 S65801D
## 41669 S65801S
## 41670 S65802A
## 41671 S65802D
## 41672 S65802S
## 41673 S65809A
## 41674 S65809D
## 41675 S65809S
## 41676 S65811A
## 41677 S65811D
## 41678 S65811S
## 41679 S65812A
## 41680 S65812D
## 41681 S65812S
## 41682 S65819A
## 41683 S65819D
## 41684 S65819S
## 41685 S65891A
## 41686 S65891D
## 41687 S65891S
## 41688 S65892A
## 41689 S65892D
## 41690 S65892S
## 41691 S65899A
## 41692 S65899D
## 41693 S65899S
## 41694 S65901A
## 41695 S65901D
## 41696 S65901S
## 41697 S65902A
## 41698 S65902D
## 41699 S65902S
## 41700 S65909A
## 41701 S65909D
## 41702 S65909S
## 41703 S65911A
## 41704 S65911D
## 41705 S65911S
## 41706 S65912A
## 41707 S65912D
## 41708 S65912S
## 41709 S65919A
## 41710 S65919D
## 41711 S65919S
## 41712 S65991A
## 41713 S65991D
## 41714 S65991S
## 41715 S65992A
## 41716 S65992D
## 41717 S65992S
## 41718 S65999A
## 41719 S65999D
## 41720 S65999S
## 41721 S66001A
## 41722 S66001D
## 41723 S66001S
## 41724 S66002A
## 41725 S66002D
## 41726 S66002S
## 41727 S66009A
## 41728 S66009D
## 41729 S66009S
## 41730 S66011A
## 41731 S66011D
## 41732 S66011S
## 41733 S66012A
## 41734 S66012D
## 41735 S66012S
## 41736 S66019A
## 41737 S66019D
## 41738 S66019S
## 41739 S66021A
## 41740 S66021D
## 41741 S66021S
## 41742 S66022A
## 41743 S66022D
## 41744 S66022S
## 41745 S66029A
## 41746 S66029D
## 41747 S66029S
## 41748 S66091A
## 41749 S66091D
## 41750 S66091S
## 41751 S66092A
## 41752 S66092D
## 41753 S66092S
## 41754 S66099A
## 41755 S66099D
## 41756 S66099S
## 41757 S66100A
## 41758 S66100D
## 41759 S66100S
## 41760 S66101A
## 41761 S66101D
## 41762 S66101S
## 41763 S66102A
## 41764 S66102D
## 41765 S66102S
## 41766 S66103A
## 41767 S66103D
## 41768 S66103S
## 41769 S66104A
## 41770 S66104D
## 41771 S66104S
## 41772 S66105A
## 41773 S66105D
## 41774 S66105S
## 41775 S66106A
## 41776 S66106D
## 41777 S66106S
## 41778 S66107A
## 41779 S66107D
## 41780 S66107S
## 41781 S66108A
## 41782 S66108D
## 41783 S66108S
## 41784 S66109A
## 41785 S66109D
## 41786 S66109S
## 41787 S66110A
## 41788 S66110D
## 41789 S66110S
## 41790 S66111A
## 41791 S66111D
## 41792 S66111S
## 41793 S66112A
## 41794 S66112D
## 41795 S66112S
## 41796 S66113A
## 41797 S66113D
## 41798 S66113S
## 41799 S66114A
## 41800 S66114D
## 41801 S66114S
## 41802 S66115A
## 41803 S66115D
## 41804 S66115S
## 41805 S66116A
## 41806 S66116D
## 41807 S66116S
## 41808 S66117A
## 41809 S66117D
## 41810 S66117S
## 41811 S66118A
## 41812 S66118D
## 41813 S66118S
## 41814 S66119A
## 41815 S66119D
## 41816 S66119S
## 41817 S66120A
## 41818 S66120D
## 41819 S66120S
## 41820 S66121A
## 41821 S66121D
## 41822 S66121S
## 41823 S66122A
## 41824 S66122D
## 41825 S66122S
## 41826 S66123A
## 41827 S66123D
## 41828 S66123S
## 41829 S66124A
## 41830 S66124D
## 41831 S66124S
## 41832 S66125A
## 41833 S66125D
## 41834 S66125S
## 41835 S66126A
## 41836 S66126D
## 41837 S66126S
## 41838 S66127A
## 41839 S66127D
## 41840 S66127S
## 41841 S66128A
## 41842 S66128D
## 41843 S66128S
## 41844 S66129A
## 41845 S66129D
## 41846 S66129S
## 41847 S66190A
## 41848 S66190D
## 41849 S66190S
## 41850 S66191A
## 41851 S66191D
## 41852 S66191S
## 41853 S66192A
## 41854 S66192D
## 41855 S66192S
## 41856 S66193A
## 41857 S66193D
## 41858 S66193S
## 41859 S66194A
## 41860 S66194D
## 41861 S66194S
## 41862 S66195A
## 41863 S66195D
## 41864 S66195S
## 41865 S66196A
## 41866 S66196D
## 41867 S66196S
## 41868 S66197A
## 41869 S66197D
## 41870 S66197S
## 41871 S66198A
## 41872 S66198D
## 41873 S66198S
## 41874 S66199A
## 41875 S66199D
## 41876 S66199S
## 41877 S66201A
## 41878 S66201D
## 41879 S66201S
## 41880 S66202A
## 41881 S66202D
## 41882 S66202S
## 41883 S66209A
## 41884 S66209D
## 41885 S66209S
## 41886 S66211A
## 41887 S66211D
## 41888 S66211S
## 41889 S66212A
## 41890 S66212D
## 41891 S66212S
## 41892 S66219A
## 41893 S66219D
## 41894 S66219S
## 41895 S66221A
## 41896 S66221D
## 41897 S66221S
## 41898 S66222A
## 41899 S66222D
## 41900 S66222S
## 41901 S66229A
## 41902 S66229D
## 41903 S66229S
## 41904 S66291A
## 41905 S66291D
## 41906 S66291S
## 41907 S66292A
## 41908 S66292D
## 41909 S66292S
## 41910 S66299A
## 41911 S66299D
## 41912 S66299S
## 41913 S66300A
## 41914 S66300D
## 41915 S66300S
## 41916 S66301A
## 41917 S66301D
## 41918 S66301S
## 41919 S66302A
## 41920 S66302D
## 41921 S66302S
## 41922 S66303A
## 41923 S66303D
## 41924 S66303S
## 41925 S66304A
## 41926 S66304D
## 41927 S66304S
## 41928 S66305A
## 41929 S66305D
## 41930 S66305S
## 41931 S66306A
## 41932 S66306D
## 41933 S66306S
## 41934 S66307A
## 41935 S66307D
## 41936 S66307S
## 41937 S66308A
## 41938 S66308D
## 41939 S66308S
## 41940 S66309A
## 41941 S66309D
## 41942 S66309S
## 41943 S66310A
## 41944 S66310D
## 41945 S66310S
## 41946 S66311A
## 41947 S66311D
## 41948 S66311S
## 41949 S66312A
## 41950 S66312D
## 41951 S66312S
## 41952 S66313A
## 41953 S66313D
## 41954 S66313S
## 41955 S66314A
## 41956 S66314D
## 41957 S66314S
## 41958 S66315A
## 41959 S66315D
## 41960 S66315S
## 41961 S66316A
## 41962 S66316D
## 41963 S66316S
## 41964 S66317A
## 41965 S66317D
## 41966 S66317S
## 41967 S66318A
## 41968 S66318D
## 41969 S66318S
## 41970 S66319A
## 41971 S66319D
## 41972 S66319S
## 41973 S66320A
## 41974 S66320D
## 41975 S66320S
## 41976 S66321A
## 41977 S66321D
## 41978 S66321S
## 41979 S66322A
## 41980 S66322D
## 41981 S66322S
## 41982 S66323A
## 41983 S66323D
## 41984 S66323S
## 41985 S66324A
## 41986 S66324D
## 41987 S66324S
## 41988 S66325A
## 41989 S66325D
## 41990 S66325S
## 41991 S66326A
## 41992 S66326D
## 41993 S66326S
## 41994 S66327A
## 41995 S66327D
## 41996 S66327S
## 41997 S66328A
## 41998 S66328D
## 41999 S66328S
## 42000 S66329A
## 42001 S66329D
## 42002 S66329S
## 42003 S66390A
## 42004 S66390D
## 42005 S66390S
## 42006 S66391A
## 42007 S66391D
## 42008 S66391S
## 42009 S66392A
## 42010 S66392D
## 42011 S66392S
## 42012 S66393A
## 42013 S66393D
## 42014 S66393S
## 42015 S66394A
## 42016 S66394D
## 42017 S66394S
## 42018 S66395A
## 42019 S66395D
## 42020 S66395S
## 42021 S66396A
## 42022 S66396D
## 42023 S66396S
## 42024 S66397A
## 42025 S66397D
## 42026 S66397S
## 42027 S66398A
## 42028 S66398D
## 42029 S66398S
## 42030 S66399A
## 42031 S66399D
## 42032 S66399S
## 42033 S66401A
## 42034 S66401D
## 42035 S66401S
## 42036 S66402A
## 42037 S66402D
## 42038 S66402S
## 42039 S66409A
## 42040 S66409D
## 42041 S66409S
## 42042 S66411A
## 42043 S66411D
## 42044 S66411S
## 42045 S66412A
## 42046 S66412D
## 42047 S66412S
## 42048 S66419A
## 42049 S66419D
## 42050 S66419S
## 42051 S66421A
## 42052 S66421D
## 42053 S66421S
## 42054 S66422A
## 42055 S66422D
## 42056 S66422S
## 42057 S66429A
## 42058 S66429D
## 42059 S66429S
## 42060 S66491A
## 42061 S66491D
## 42062 S66491S
## 42063 S66492A
## 42064 S66492D
## 42065 S66492S
## 42066 S66499A
## 42067 S66499D
## 42068 S66499S
## 42069 S66500A
## 42070 S66500D
## 42071 S66500S
## 42072 S66501A
## 42073 S66501D
## 42074 S66501S
## 42075 S66502A
## 42076 S66502D
## 42077 S66502S
## 42078 S66503A
## 42079 S66503D
## 42080 S66503S
## 42081 S66504A
## 42082 S66504D
## 42083 S66504S
## 42084 S66505A
## 42085 S66505D
## 42086 S66505S
## 42087 S66506A
## 42088 S66506D
## 42089 S66506S
## 42090 S66507A
## 42091 S66507D
## 42092 S66507S
## 42093 S66508A
## 42094 S66508D
## 42095 S66508S
## 42096 S66509A
## 42097 S66509D
## 42098 S66509S
## 42099 S66510A
## 42100 S66510D
## 42101 S66510S
## 42102 S66511A
## 42103 S66511D
## 42104 S66511S
## 42105 S66512A
## 42106 S66512D
## 42107 S66512S
## 42108 S66513A
## 42109 S66513D
## 42110 S66513S
## 42111 S66514A
## 42112 S66514D
## 42113 S66514S
## 42114 S66515A
## 42115 S66515D
## 42116 S66515S
## 42117 S66516A
## 42118 S66516D
## 42119 S66516S
## 42120 S66517A
## 42121 S66517D
## 42122 S66517S
## 42123 S66518A
## 42124 S66518D
## 42125 S66518S
## 42126 S66519A
## 42127 S66519D
## 42128 S66519S
## 42129 S66520A
## 42130 S66520D
## 42131 S66520S
## 42132 S66521A
## 42133 S66521D
## 42134 S66521S
## 42135 S66522A
## 42136 S66522D
## 42137 S66522S
## 42138 S66523A
## 42139 S66523D
## 42140 S66523S
## 42141 S66524A
## 42142 S66524D
## 42143 S66524S
## 42144 S66525A
## 42145 S66525D
## 42146 S66525S
## 42147 S66526A
## 42148 S66526D
## 42149 S66526S
## 42150 S66527A
## 42151 S66527D
## 42152 S66527S
## 42153 S66528A
## 42154 S66528D
## 42155 S66528S
## 42156 S66529A
## 42157 S66529D
## 42158 S66529S
## 42159 S66590A
## 42160 S66590D
## 42161 S66590S
## 42162 S66591A
## 42163 S66591D
## 42164 S66591S
## 42165 S66592A
## 42166 S66592D
## 42167 S66592S
## 42168 S66593A
## 42169 S66593D
## 42170 S66593S
## 42171 S66594A
## 42172 S66594D
## 42173 S66594S
## 42174 S66595A
## 42175 S66595D
## 42176 S66595S
## 42177 S66596A
## 42178 S66596D
## 42179 S66596S
## 42180 S66597A
## 42181 S66597D
## 42182 S66597S
## 42183 S66598A
## 42184 S66598D
## 42185 S66598S
## 42186 S66599A
## 42187 S66599D
## 42188 S66599S
## 42189 S66801A
## 42190 S66801D
## 42191 S66801S
## 42192 S66802A
## 42193 S66802D
## 42194 S66802S
## 42195 S66809A
## 42196 S66809D
## 42197 S66809S
## 42198 S66811A
## 42199 S66811D
## 42200 S66811S
## 42201 S66812A
## 42202 S66812D
## 42203 S66812S
## 42204 S66819A
## 42205 S66819D
## 42206 S66819S
## 42207 S66821A
## 42208 S66821D
## 42209 S66821S
## 42210 S66822A
## 42211 S66822D
## 42212 S66822S
## 42213 S66829A
## 42214 S66829D
## 42215 S66829S
## 42216 S66891A
## 42217 S66891D
## 42218 S66891S
## 42219 S66892A
## 42220 S66892D
## 42221 S66892S
## 42222 S66899A
## 42223 S66899D
## 42224 S66899S
## 42225 S66901A
## 42226 S66901D
## 42227 S66901S
## 42228 S66902A
## 42229 S66902D
## 42230 S66902S
## 42231 S66909A
## 42232 S66909D
## 42233 S66909S
## 42234 S66911A
## 42235 S66911D
## 42236 S66911S
## 42237 S66912A
## 42238 S66912D
## 42239 S66912S
## 42240 S66919A
## 42241 S66919D
## 42242 S66919S
## 42243 S66921A
## 42244 S66921D
## 42245 S66921S
## 42246 S66922A
## 42247 S66922D
## 42248 S66922S
## 42249 S66929A
## 42250 S66929D
## 42251 S66929S
## 42252 S66991A
## 42253 S66991D
## 42254 S66991S
## 42255 S66992A
## 42256 S66992D
## 42257 S66992S
## 42258 S66999A
## 42259 S66999D
## 42260 S66999S
## 42261 S6700XA
## 42262 S6700XD
## 42263 S6700XS
## 42264 S6701XA
## 42265 S6701XD
## 42266 S6701XS
## 42267 S6702XA
## 42268 S6702XD
## 42269 S6702XS
## 42270 S6710XA
## 42271 S6710XD
## 42272 S6710XS
## 42273 S67190A
## 42274 S67190D
## 42275 S67190S
## 42276 S67191A
## 42277 S67191D
## 42278 S67191S
## 42279 S67192A
## 42280 S67192D
## 42281 S67192S
## 42282 S67193A
## 42283 S67193D
## 42284 S67193S
## 42285 S67194A
## 42286 S67194D
## 42287 S67194S
## 42288 S67195A
## 42289 S67195D
## 42290 S67195S
## 42291 S67196A
## 42292 S67196D
## 42293 S67196S
## 42294 S67197A
## 42295 S67197D
## 42296 S67197S
## 42297 S67198A
## 42298 S67198D
## 42299 S67198S
## 42300 S6720XA
## 42301 S6720XD
## 42302 S6720XS
## 42303 S6721XA
## 42304 S6721XD
## 42305 S6721XS
## 42306 S6722XA
## 42307 S6722XD
## 42308 S6722XS
## 42309 S6730XA
## 42310 S6730XD
## 42311 S6730XS
## 42312 S6731XA
## 42313 S6731XD
## 42314 S6731XS
## 42315 S6732XA
## 42316 S6732XD
## 42317 S6732XS
## 42318 S6740XA
## 42319 S6740XD
## 42320 S6740XS
## 42321 S6741XA
## 42322 S6741XD
## 42323 S6741XS
## 42324 S6742XA
## 42325 S6742XD
## 42326 S6742XS
## 42327 S6790XA
## 42328 S6790XD
## 42329 S6790XS
## 42330 S6791XA
## 42331 S6791XD
## 42332 S6791XS
## 42333 S6792XA
## 42334 S6792XD
## 42335 S6792XS
## 42336 S68011A
## 42337 S68011D
## 42338 S68011S
## 42339 S68012A
## 42340 S68012D
## 42341 S68012S
## 42342 S68019A
## 42343 S68019D
## 42344 S68019S
## 42345 S68021A
## 42346 S68021D
## 42347 S68021S
## 42348 S68022A
## 42349 S68022D
## 42350 S68022S
## 42351 S68029A
## 42352 S68029D
## 42353 S68029S
## 42354 S68110A
## 42355 S68110D
## 42356 S68110S
## 42357 S68111A
## 42358 S68111D
## 42359 S68111S
## 42360 S68112A
## 42361 S68112D
## 42362 S68112S
## 42363 S68113A
## 42364 S68113D
## 42365 S68113S
## 42366 S68114A
## 42367 S68114D
## 42368 S68114S
## 42369 S68115A
## 42370 S68115D
## 42371 S68115S
## 42372 S68116A
## 42373 S68116D
## 42374 S68116S
## 42375 S68117A
## 42376 S68117D
## 42377 S68117S
## 42378 S68118A
## 42379 S68118D
## 42380 S68118S
## 42381 S68119A
## 42382 S68119D
## 42383 S68119S
## 42384 S68120A
## 42385 S68120D
## 42386 S68120S
## 42387 S68121A
## 42388 S68121D
## 42389 S68121S
## 42390 S68122A
## 42391 S68122D
## 42392 S68122S
## 42393 S68123A
## 42394 S68123D
## 42395 S68123S
## 42396 S68124A
## 42397 S68124D
## 42398 S68124S
## 42399 S68125A
## 42400 S68125D
## 42401 S68125S
## 42402 S68126A
## 42403 S68126D
## 42404 S68126S
## 42405 S68127A
## 42406 S68127D
## 42407 S68127S
## 42408 S68128A
## 42409 S68128D
## 42410 S68128S
## 42411 S68129A
## 42412 S68129D
## 42413 S68129S
## 42414 S68411A
## 42415 S68411D
## 42416 S68411S
## 42417 S68412A
## 42418 S68412D
## 42419 S68412S
## 42420 S68419A
## 42421 S68419D
## 42422 S68419S
## 42423 S68421A
## 42424 S68421D
## 42425 S68421S
## 42426 S68422A
## 42427 S68422D
## 42428 S68422S
## 42429 S68429A
## 42430 S68429D
## 42431 S68429S
## 42432 S68511A
## 42433 S68511D
## 42434 S68511S
## 42435 S68512A
## 42436 S68512D
## 42437 S68512S
## 42438 S68519A
## 42439 S68519D
## 42440 S68519S
## 42441 S68521A
## 42442 S68521D
## 42443 S68521S
## 42444 S68522A
## 42445 S68522D
## 42446 S68522S
## 42447 S68529A
## 42448 S68529D
## 42449 S68529S
## 42450 S68610A
## 42451 S68610D
## 42452 S68610S
## 42453 S68611A
## 42454 S68611D
## 42455 S68611S
## 42456 S68612A
## 42457 S68612D
## 42458 S68612S
## 42459 S68613A
## 42460 S68613D
## 42461 S68613S
## 42462 S68614A
## 42463 S68614D
## 42464 S68614S
## 42465 S68615A
## 42466 S68615D
## 42467 S68615S
## 42468 S68616A
## 42469 S68616D
## 42470 S68616S
## 42471 S68617A
## 42472 S68617D
## 42473 S68617S
## 42474 S68618A
## 42475 S68618D
## 42476 S68618S
## 42477 S68619A
## 42478 S68619D
## 42479 S68619S
## 42480 S68620A
## 42481 S68620D
## 42482 S68620S
## 42483 S68621A
## 42484 S68621D
## 42485 S68621S
## 42486 S68622A
## 42487 S68622D
## 42488 S68622S
## 42489 S68623A
## 42490 S68623D
## 42491 S68623S
## 42492 S68624A
## 42493 S68624D
## 42494 S68624S
## 42495 S68625A
## 42496 S68625D
## 42497 S68625S
## 42498 S68626A
## 42499 S68626D
## 42500 S68626S
## 42501 S68627A
## 42502 S68627D
## 42503 S68627S
## 42504 S68628A
## 42505 S68628D
## 42506 S68628S
## 42507 S68629A
## 42508 S68629D
## 42509 S68629S
## 42510 S68711A
## 42511 S68711D
## 42512 S68711S
## 42513 S68712A
## 42514 S68712D
## 42515 S68712S
## 42516 S68719A
## 42517 S68719D
## 42518 S68719S
## 42519 S68721A
## 42520 S68721D
## 42521 S68721S
## 42522 S68722A
## 42523 S68722D
## 42524 S68722S
## 42525 S68729A
## 42526 S68729D
## 42527 S68729S
## 42528 S6980XA
## 42529 S6980XD
## 42530 S6980XS
## 42531 S6981XA
## 42532 S6981XD
## 42533 S6981XS
## 42534 S6982XA
## 42535 S6982XD
## 42536 S6982XS
## 42537 S6990XA
## 42538 S6990XD
## 42539 S6990XS
## 42540 S6991XA
## 42541 S6991XD
## 42542 S6991XS
## 42543 S6992XA
## 42544 S6992XD
## 42545 S6992XS
## 42546 S7000XA
## 42547 S7000XD
## 42548 S7000XS
## 42549 S7001XA
## 42550 S7001XD
## 42551 S7001XS
## 42552 S7002XA
## 42553 S7002XD
## 42554 S7002XS
## 42555 S7010XA
## 42556 S7010XD
## 42557 S7010XS
## 42558 S7011XA
## 42559 S7011XD
## 42560 S7011XS
## 42561 S7012XA
## 42562 S7012XD
## 42563 S7012XS
## 42564 S70211A
## 42565 S70211D
## 42566 S70211S
## 42567 S70212A
## 42568 S70212D
## 42569 S70212S
## 42570 S70219A
## 42571 S70219D
## 42572 S70219S
## 42573 S70221A
## 42574 S70221D
## 42575 S70221S
## 42576 S70222A
## 42577 S70222D
## 42578 S70222S
## 42579 S70229A
## 42580 S70229D
## 42581 S70229S
## 42582 S70241A
## 42583 S70241D
## 42584 S70241S
## 42585 S70242A
## 42586 S70242D
## 42587 S70242S
## 42588 S70249A
## 42589 S70249D
## 42590 S70249S
## 42591 S70251A
## 42592 S70251D
## 42593 S70251S
## 42594 S70252A
## 42595 S70252D
## 42596 S70252S
## 42597 S70259A
## 42598 S70259D
## 42599 S70259S
## 42600 S70261A
## 42601 S70261D
## 42602 S70261S
## 42603 S70262A
## 42604 S70262D
## 42605 S70262S
## 42606 S70269A
## 42607 S70269D
## 42608 S70269S
## 42609 S70271A
## 42610 S70271D
## 42611 S70271S
## 42612 S70272A
## 42613 S70272D
## 42614 S70272S
## 42615 S70279A
## 42616 S70279D
## 42617 S70279S
## 42618 S70311A
## 42619 S70311D
## 42620 S70311S
## 42621 S70312A
## 42622 S70312D
## 42623 S70312S
## 42624 S70319A
## 42625 S70319D
## 42626 S70319S
## 42627 S70321A
## 42628 S70321D
## 42629 S70321S
## 42630 S70322A
## 42631 S70322D
## 42632 S70322S
## 42633 S70329A
## 42634 S70329D
## 42635 S70329S
## 42636 S70341A
## 42637 S70341D
## 42638 S70341S
## 42639 S70342A
## 42640 S70342D
## 42641 S70342S
## 42642 S70349A
## 42643 S70349D
## 42644 S70349S
## 42645 S70351A
## 42646 S70351D
## 42647 S70351S
## 42648 S70352A
## 42649 S70352D
## 42650 S70352S
## 42651 S70359A
## 42652 S70359D
## 42653 S70359S
## 42654 S70361A
## 42655 S70361D
## 42656 S70361S
## 42657 S70362A
## 42658 S70362D
## 42659 S70362S
## 42660 S70369A
## 42661 S70369D
## 42662 S70369S
## 42663 S70371A
## 42664 S70371D
## 42665 S70371S
## 42666 S70372A
## 42667 S70372D
## 42668 S70372S
## 42669 S70379A
## 42670 S70379D
## 42671 S70379S
## 42672 S70911A
## 42673 S70911D
## 42674 S70911S
## 42675 S70912A
## 42676 S70912D
## 42677 S70912S
## 42678 S70919A
## 42679 S70919D
## 42680 S70919S
## 42681 S70921A
## 42682 S70921D
## 42683 S70921S
## 42684 S70922A
## 42685 S70922D
## 42686 S70922S
## 42687 S70929A
## 42688 S70929D
## 42689 S70929S
## 42690 S71001A
## 42691 S71001D
## 42692 S71001S
## 42693 S71002A
## 42694 S71002D
## 42695 S71002S
## 42696 S71009A
## 42697 S71009D
## 42698 S71009S
## 42699 S71011A
## 42700 S71011D
## 42701 S71011S
## 42702 S71012A
## 42703 S71012D
## 42704 S71012S
## 42705 S71019A
## 42706 S71019D
## 42707 S71019S
## 42708 S71021A
## 42709 S71021D
## 42710 S71021S
## 42711 S71022A
## 42712 S71022D
## 42713 S71022S
## 42714 S71029A
## 42715 S71029D
## 42716 S71029S
## 42717 S71031A
## 42718 S71031D
## 42719 S71031S
## 42720 S71032A
## 42721 S71032D
## 42722 S71032S
## 42723 S71039A
## 42724 S71039D
## 42725 S71039S
## 42726 S71041A
## 42727 S71041D
## 42728 S71041S
## 42729 S71042A
## 42730 S71042D
## 42731 S71042S
## 42732 S71049A
## 42733 S71049D
## 42734 S71049S
## 42735 S71051A
## 42736 S71051D
## 42737 S71051S
## 42738 S71052A
## 42739 S71052D
## 42740 S71052S
## 42741 S71059A
## 42742 S71059D
## 42743 S71059S
## 42744 S71101A
## 42745 S71101D
## 42746 S71101S
## 42747 S71102A
## 42748 S71102D
## 42749 S71102S
## 42750 S71109A
## 42751 S71109D
## 42752 S71109S
## 42753 S71111A
## 42754 S71111D
## 42755 S71111S
## 42756 S71112A
## 42757 S71112D
## 42758 S71112S
## 42759 S71119A
## 42760 S71119D
## 42761 S71119S
## 42762 S71121A
## 42763 S71121D
## 42764 S71121S
## 42765 S71122A
## 42766 S71122D
## 42767 S71122S
## 42768 S71129A
## 42769 S71129D
## 42770 S71129S
## 42771 S71131A
## 42772 S71131D
## 42773 S71131S
## 42774 S71132A
## 42775 S71132D
## 42776 S71132S
## 42777 S71139A
## 42778 S71139D
## 42779 S71139S
## 42780 S71141A
## 42781 S71141D
## 42782 S71141S
## 42783 S71142A
## 42784 S71142D
## 42785 S71142S
## 42786 S71149A
## 42787 S71149D
## 42788 S71149S
## 42789 S71151A
## 42790 S71151D
## 42791 S71151S
## 42792 S71152A
## 42793 S71152D
## 42794 S71152S
## 42795 S71159A
## 42796 S71159D
## 42797 S71159S
## 42798 S72001A
## 42799 S72001B
## 42800 S72001C
## 42801 S72001D
## 42802 S72001E
## 42803 S72001F
## 42804 S72001G
## 42805 S72001H
## 42806 S72001J
## 42807 S72001K
## 42808 S72001M
## 42809 S72001N
## 42810 S72001P
## 42811 S72001Q
## 42812 S72001R
## 42813 S72001S
## 42814 S72002A
## 42815 S72002B
## 42816 S72002C
## 42817 S72002D
## 42818 S72002E
## 42819 S72002F
## 42820 S72002G
## 42821 S72002H
## 42822 S72002J
## 42823 S72002K
## 42824 S72002M
## 42825 S72002N
## 42826 S72002P
## 42827 S72002Q
## 42828 S72002R
## 42829 S72002S
## 42830 S72009A
## 42831 S72009B
## 42832 S72009C
## 42833 S72009D
## 42834 S72009E
## 42835 S72009F
## 42836 S72009G
## 42837 S72009H
## 42838 S72009J
## 42839 S72009K
## 42840 S72009M
## 42841 S72009N
## 42842 S72009P
## 42843 S72009Q
## 42844 S72009R
## 42845 S72009S
## 42846 S72011A
## 42847 S72011B
## 42848 S72011C
## 42849 S72011D
## 42850 S72011E
## 42851 S72011F
## 42852 S72011G
## 42853 S72011H
## 42854 S72011J
## 42855 S72011K
## 42856 S72011M
## 42857 S72011N
## 42858 S72011P
## 42859 S72011Q
## 42860 S72011R
## 42861 S72011S
## 42862 S72012A
## 42863 S72012B
## 42864 S72012C
## 42865 S72012D
## 42866 S72012E
## 42867 S72012F
## 42868 S72012G
## 42869 S72012H
## 42870 S72012J
## 42871 S72012K
## 42872 S72012M
## 42873 S72012N
## 42874 S72012P
## 42875 S72012Q
## 42876 S72012R
## 42877 S72012S
## 42878 S72019A
## 42879 S72019B
## 42880 S72019C
## 42881 S72019D
## 42882 S72019E
## 42883 S72019F
## 42884 S72019G
## 42885 S72019H
## 42886 S72019J
## 42887 S72019K
## 42888 S72019M
## 42889 S72019N
## 42890 S72019P
## 42891 S72019Q
## 42892 S72019R
## 42893 S72019S
## 42894 S72021A
## 42895 S72021B
## 42896 S72021C
## 42897 S72021D
## 42898 S72021E
## 42899 S72021F
## 42900 S72021G
## 42901 S72021H
## 42902 S72021J
## 42903 S72021K
## 42904 S72021M
## 42905 S72021N
## 42906 S72021P
## 42907 S72021Q
## 42908 S72021R
## 42909 S72021S
## 42910 S72022A
## 42911 S72022B
## 42912 S72022C
## 42913 S72022D
## 42914 S72022E
## 42915 S72022F
## 42916 S72022G
## 42917 S72022H
## 42918 S72022J
## 42919 S72022K
## 42920 S72022M
## 42921 S72022N
## 42922 S72022P
## 42923 S72022Q
## 42924 S72022R
## 42925 S72022S
## 42926 S72023A
## 42927 S72023B
## 42928 S72023C
## 42929 S72023D
## 42930 S72023E
## 42931 S72023F
## 42932 S72023G
## 42933 S72023H
## 42934 S72023J
## 42935 S72023K
## 42936 S72023M
## 42937 S72023N
## 42938 S72023P
## 42939 S72023Q
## 42940 S72023R
## 42941 S72023S
## 42942 S72024A
## 42943 S72024B
## 42944 S72024C
## 42945 S72024D
## 42946 S72024E
## 42947 S72024F
## 42948 S72024G
## 42949 S72024H
## 42950 S72024J
## 42951 S72024K
## 42952 S72024M
## 42953 S72024N
## 42954 S72024P
## 42955 S72024Q
## 42956 S72024R
## 42957 S72024S
## 42958 S72025A
## 42959 S72025B
## 42960 S72025C
## 42961 S72025D
## 42962 S72025E
## 42963 S72025F
## 42964 S72025G
## 42965 S72025H
## 42966 S72025J
## 42967 S72025K
## 42968 S72025M
## 42969 S72025N
## 42970 S72025P
## 42971 S72025Q
## 42972 S72025R
## 42973 S72025S
## 42974 S72026A
## 42975 S72026B
## 42976 S72026C
## 42977 S72026D
## 42978 S72026E
## 42979 S72026F
## 42980 S72026G
## 42981 S72026H
## 42982 S72026J
## 42983 S72026K
## 42984 S72026M
## 42985 S72026N
## 42986 S72026P
## 42987 S72026Q
## 42988 S72026R
## 42989 S72026S
## 42990 S72031A
## 42991 S72031B
## 42992 S72031C
## 42993 S72031D
## 42994 S72031E
## 42995 S72031F
## 42996 S72031G
## 42997 S72031H
## 42998 S72031J
## 42999 S72031K
## 43000 S72031M
## 43001 S72031N
## 43002 S72031P
## 43003 S72031Q
## 43004 S72031R
## 43005 S72031S
## 43006 S72032A
## 43007 S72032B
## 43008 S72032C
## 43009 S72032D
## 43010 S72032E
## 43011 S72032F
## 43012 S72032G
## 43013 S72032H
## 43014 S72032J
## 43015 S72032K
## 43016 S72032M
## 43017 S72032N
## 43018 S72032P
## 43019 S72032Q
## 43020 S72032R
## 43021 S72032S
## 43022 S72033A
## 43023 S72033B
## 43024 S72033C
## 43025 S72033D
## 43026 S72033E
## 43027 S72033F
## 43028 S72033G
## 43029 S72033H
## 43030 S72033J
## 43031 S72033K
## 43032 S72033M
## 43033 S72033N
## 43034 S72033P
## 43035 S72033Q
## 43036 S72033R
## 43037 S72033S
## 43038 S72034A
## 43039 S72034B
## 43040 S72034C
## 43041 S72034D
## 43042 S72034E
## 43043 S72034F
## 43044 S72034G
## 43045 S72034H
## 43046 S72034J
## 43047 S72034K
## 43048 S72034M
## 43049 S72034N
## 43050 S72034P
## 43051 S72034Q
## 43052 S72034R
## 43053 S72034S
## 43054 S72035A
## 43055 S72035B
## 43056 S72035C
## 43057 S72035D
## 43058 S72035E
## 43059 S72035F
## 43060 S72035G
## 43061 S72035H
## 43062 S72035J
## 43063 S72035K
## 43064 S72035M
## 43065 S72035N
## 43066 S72035P
## 43067 S72035Q
## 43068 S72035R
## 43069 S72035S
## 43070 S72036A
## 43071 S72036B
## 43072 S72036C
## 43073 S72036D
## 43074 S72036E
## 43075 S72036F
## 43076 S72036G
## 43077 S72036H
## 43078 S72036J
## 43079 S72036K
## 43080 S72036M
## 43081 S72036N
## 43082 S72036P
## 43083 S72036Q
## 43084 S72036R
## 43085 S72036S
## 43086 S72041A
## 43087 S72041B
## 43088 S72041C
## 43089 S72041D
## 43090 S72041E
## 43091 S72041F
## 43092 S72041G
## 43093 S72041H
## 43094 S72041J
## 43095 S72041K
## 43096 S72041M
## 43097 S72041N
## 43098 S72041P
## 43099 S72041Q
## 43100 S72041R
## 43101 S72041S
## 43102 S72042A
## 43103 S72042B
## 43104 S72042C
## 43105 S72042D
## 43106 S72042E
## 43107 S72042F
## 43108 S72042G
## 43109 S72042H
## 43110 S72042J
## 43111 S72042K
## 43112 S72042M
## 43113 S72042N
## 43114 S72042P
## 43115 S72042Q
## 43116 S72042R
## 43117 S72042S
## 43118 S72043A
## 43119 S72043B
## 43120 S72043C
## 43121 S72043D
## 43122 S72043E
## 43123 S72043F
## 43124 S72043G
## 43125 S72043H
## 43126 S72043J
## 43127 S72043K
## 43128 S72043M
## 43129 S72043N
## 43130 S72043P
## 43131 S72043Q
## 43132 S72043R
## 43133 S72043S
## 43134 S72044A
## 43135 S72044B
## 43136 S72044C
## 43137 S72044D
## 43138 S72044E
## 43139 S72044F
## 43140 S72044G
## 43141 S72044H
## 43142 S72044J
## 43143 S72044K
## 43144 S72044M
## 43145 S72044N
## 43146 S72044P
## 43147 S72044Q
## 43148 S72044R
## 43149 S72044S
## 43150 S72045A
## 43151 S72045B
## 43152 S72045C
## 43153 S72045D
## 43154 S72045E
## 43155 S72045F
## 43156 S72045G
## 43157 S72045H
## 43158 S72045J
## 43159 S72045K
## 43160 S72045M
## 43161 S72045N
## 43162 S72045P
## 43163 S72045Q
## 43164 S72045R
## 43165 S72045S
## 43166 S72046A
## 43167 S72046B
## 43168 S72046C
## 43169 S72046D
## 43170 S72046E
## 43171 S72046F
## 43172 S72046G
## 43173 S72046H
## 43174 S72046J
## 43175 S72046K
## 43176 S72046M
## 43177 S72046N
## 43178 S72046P
## 43179 S72046Q
## 43180 S72046R
## 43181 S72046S
## 43182 S72051A
## 43183 S72051B
## 43184 S72051C
## 43185 S72051D
## 43186 S72051E
## 43187 S72051F
## 43188 S72051G
## 43189 S72051H
## 43190 S72051J
## 43191 S72051K
## 43192 S72051M
## 43193 S72051N
## 43194 S72051P
## 43195 S72051Q
## 43196 S72051R
## 43197 S72051S
## 43198 S72052A
## 43199 S72052B
## 43200 S72052C
## 43201 S72052D
## 43202 S72052E
## 43203 S72052F
## 43204 S72052G
## 43205 S72052H
## 43206 S72052J
## 43207 S72052K
## 43208 S72052M
## 43209 S72052N
## 43210 S72052P
## 43211 S72052Q
## 43212 S72052R
## 43213 S72052S
## 43214 S72059A
## 43215 S72059B
## 43216 S72059C
## 43217 S72059D
## 43218 S72059E
## 43219 S72059F
## 43220 S72059G
## 43221 S72059H
## 43222 S72059J
## 43223 S72059K
## 43224 S72059M
## 43225 S72059N
## 43226 S72059P
## 43227 S72059Q
## 43228 S72059R
## 43229 S72059S
## 43230 S72061A
## 43231 S72061B
## 43232 S72061C
## 43233 S72061D
## 43234 S72061E
## 43235 S72061F
## 43236 S72061G
## 43237 S72061H
## 43238 S72061J
## 43239 S72061K
## 43240 S72061M
## 43241 S72061N
## 43242 S72061P
## 43243 S72061Q
## 43244 S72061R
## 43245 S72061S
## 43246 S72062A
## 43247 S72062B
## 43248 S72062C
## 43249 S72062D
## 43250 S72062E
## 43251 S72062F
## 43252 S72062G
## 43253 S72062H
## 43254 S72062J
## 43255 S72062K
## 43256 S72062M
## 43257 S72062N
## 43258 S72062P
## 43259 S72062Q
## 43260 S72062R
## 43261 S72062S
## 43262 S72063A
## 43263 S72063B
## 43264 S72063C
## 43265 S72063D
## 43266 S72063E
## 43267 S72063F
## 43268 S72063G
## 43269 S72063H
## 43270 S72063J
## 43271 S72063K
## 43272 S72063M
## 43273 S72063N
## 43274 S72063P
## 43275 S72063Q
## 43276 S72063R
## 43277 S72063S
## 43278 S72064A
## 43279 S72064B
## 43280 S72064C
## 43281 S72064D
## 43282 S72064E
## 43283 S72064F
## 43284 S72064G
## 43285 S72064H
## 43286 S72064J
## 43287 S72064K
## 43288 S72064M
## 43289 S72064N
## 43290 S72064P
## 43291 S72064Q
## 43292 S72064R
## 43293 S72064S
## 43294 S72065A
## 43295 S72065B
## 43296 S72065C
## 43297 S72065D
## 43298 S72065E
## 43299 S72065F
## 43300 S72065G
## 43301 S72065H
## 43302 S72065J
## 43303 S72065K
## 43304 S72065M
## 43305 S72065N
## 43306 S72065P
## 43307 S72065Q
## 43308 S72065R
## 43309 S72065S
## 43310 S72066A
## 43311 S72066B
## 43312 S72066C
## 43313 S72066D
## 43314 S72066E
## 43315 S72066F
## 43316 S72066G
## 43317 S72066H
## 43318 S72066J
## 43319 S72066K
## 43320 S72066M
## 43321 S72066N
## 43322 S72066P
## 43323 S72066Q
## 43324 S72066R
## 43325 S72066S
## 43326 S72091A
## 43327 S72091B
## 43328 S72091C
## 43329 S72091D
## 43330 S72091E
## 43331 S72091F
## 43332 S72091G
## 43333 S72091H
## 43334 S72091J
## 43335 S72091K
## 43336 S72091M
## 43337 S72091N
## 43338 S72091P
## 43339 S72091Q
## 43340 S72091R
## 43341 S72091S
## 43342 S72092A
## 43343 S72092B
## 43344 S72092C
## 43345 S72092D
## 43346 S72092E
## 43347 S72092F
## 43348 S72092G
## 43349 S72092H
## 43350 S72092J
## 43351 S72092K
## 43352 S72092M
## 43353 S72092N
## 43354 S72092P
## 43355 S72092Q
## 43356 S72092R
## 43357 S72092S
## 43358 S72099A
## 43359 S72099B
## 43360 S72099C
## 43361 S72099D
## 43362 S72099E
## 43363 S72099F
## 43364 S72099G
## 43365 S72099H
## 43366 S72099J
## 43367 S72099K
## 43368 S72099M
## 43369 S72099N
## 43370 S72099P
## 43371 S72099Q
## 43372 S72099R
## 43373 S72099S
## 43374 S72101A
## 43375 S72101B
## 43376 S72101C
## 43377 S72101D
## 43378 S72101E
## 43379 S72101F
## 43380 S72101G
## 43381 S72101H
## 43382 S72101J
## 43383 S72101K
## 43384 S72101M
## 43385 S72101N
## 43386 S72101P
## 43387 S72101Q
## 43388 S72101R
## 43389 S72101S
## 43390 S72102A
## 43391 S72102B
## 43392 S72102C
## 43393 S72102D
## 43394 S72102E
## 43395 S72102F
## 43396 S72102G
## 43397 S72102H
## 43398 S72102J
## 43399 S72102K
## 43400 S72102M
## 43401 S72102N
## 43402 S72102P
## 43403 S72102Q
## 43404 S72102R
## 43405 S72102S
## 43406 S72109A
## 43407 S72109B
## 43408 S72109C
## 43409 S72109D
## 43410 S72109E
## 43411 S72109F
## 43412 S72109G
## 43413 S72109H
## 43414 S72109J
## 43415 S72109K
## 43416 S72109M
## 43417 S72109N
## 43418 S72109P
## 43419 S72109Q
## 43420 S72109R
## 43421 S72109S
## 43422 S72111A
## 43423 S72111B
## 43424 S72111C
## 43425 S72111D
## 43426 S72111E
## 43427 S72111F
## 43428 S72111G
## 43429 S72111H
## 43430 S72111J
## 43431 S72111K
## 43432 S72111M
## 43433 S72111N
## 43434 S72111P
## 43435 S72111Q
## 43436 S72111R
## 43437 S72111S
## 43438 S72112A
## 43439 S72112B
## 43440 S72112C
## 43441 S72112D
## 43442 S72112E
## 43443 S72112F
## 43444 S72112G
## 43445 S72112H
## 43446 S72112J
## 43447 S72112K
## 43448 S72112M
## 43449 S72112N
## 43450 S72112P
## 43451 S72112Q
## 43452 S72112R
## 43453 S72112S
## 43454 S72113A
## 43455 S72113B
## 43456 S72113C
## 43457 S72113D
## 43458 S72113E
## 43459 S72113F
## 43460 S72113G
## 43461 S72113H
## 43462 S72113J
## 43463 S72113K
## 43464 S72113M
## 43465 S72113N
## 43466 S72113P
## 43467 S72113Q
## 43468 S72113R
## 43469 S72113S
## 43470 S72114A
## 43471 S72114B
## 43472 S72114C
## 43473 S72114D
## 43474 S72114E
## 43475 S72114F
## 43476 S72114G
## 43477 S72114H
## 43478 S72114J
## 43479 S72114K
## 43480 S72114M
## 43481 S72114N
## 43482 S72114P
## 43483 S72114Q
## 43484 S72114R
## 43485 S72114S
## 43486 S72115A
## 43487 S72115B
## 43488 S72115C
## 43489 S72115D
## 43490 S72115E
## 43491 S72115F
## 43492 S72115G
## 43493 S72115H
## 43494 S72115J
## 43495 S72115K
## 43496 S72115M
## 43497 S72115N
## 43498 S72115P
## 43499 S72115Q
## 43500 S72115R
## 43501 S72115S
## 43502 S72116A
## 43503 S72116B
## 43504 S72116C
## 43505 S72116D
## 43506 S72116E
## 43507 S72116F
## 43508 S72116G
## 43509 S72116H
## 43510 S72116J
## 43511 S72116K
## 43512 S72116M
## 43513 S72116N
## 43514 S72116P
## 43515 S72116Q
## 43516 S72116R
## 43517 S72116S
## 43518 S72121A
## 43519 S72121B
## 43520 S72121C
## 43521 S72121D
## 43522 S72121E
## 43523 S72121F
## 43524 S72121G
## 43525 S72121H
## 43526 S72121J
## 43527 S72121K
## 43528 S72121M
## 43529 S72121N
## 43530 S72121P
## 43531 S72121Q
## 43532 S72121R
## 43533 S72121S
## 43534 S72122A
## 43535 S72122B
## 43536 S72122C
## 43537 S72122D
## 43538 S72122E
## 43539 S72122F
## 43540 S72122G
## 43541 S72122H
## 43542 S72122J
## 43543 S72122K
## 43544 S72122M
## 43545 S72122N
## 43546 S72122P
## 43547 S72122Q
## 43548 S72122R
## 43549 S72122S
## 43550 S72123A
## 43551 S72123B
## 43552 S72123C
## 43553 S72123D
## 43554 S72123E
## 43555 S72123F
## 43556 S72123G
## 43557 S72123H
## 43558 S72123J
## 43559 S72123K
## 43560 S72123M
## 43561 S72123N
## 43562 S72123P
## 43563 S72123Q
## 43564 S72123R
## 43565 S72123S
## 43566 S72124A
## 43567 S72124B
## 43568 S72124C
## 43569 S72124D
## 43570 S72124E
## 43571 S72124F
## 43572 S72124G
## 43573 S72124H
## 43574 S72124J
## 43575 S72124K
## 43576 S72124M
## 43577 S72124N
## 43578 S72124P
## 43579 S72124Q
## 43580 S72124R
## 43581 S72124S
## 43582 S72125A
## 43583 S72125B
## 43584 S72125C
## 43585 S72125D
## 43586 S72125E
## 43587 S72125F
## 43588 S72125G
## 43589 S72125H
## 43590 S72125J
## 43591 S72125K
## 43592 S72125M
## 43593 S72125N
## 43594 S72125P
## 43595 S72125Q
## 43596 S72125R
## 43597 S72125S
## 43598 S72126A
## 43599 S72126B
## 43600 S72126C
## 43601 S72126D
## 43602 S72126E
## 43603 S72126F
## 43604 S72126G
## 43605 S72126H
## 43606 S72126J
## 43607 S72126K
## 43608 S72126M
## 43609 S72126N
## 43610 S72126P
## 43611 S72126Q
## 43612 S72126R
## 43613 S72126S
## 43614 S72131A
## 43615 S72131B
## 43616 S72131C
## 43617 S72131D
## 43618 S72131E
## 43619 S72131F
## 43620 S72131G
## 43621 S72131H
## 43622 S72131J
## 43623 S72131K
## 43624 S72131M
## 43625 S72131N
## 43626 S72131P
## 43627 S72131Q
## 43628 S72131R
## 43629 S72131S
## 43630 S72132A
## 43631 S72132B
## 43632 S72132C
## 43633 S72132D
## 43634 S72132E
## 43635 S72132F
## 43636 S72132G
## 43637 S72132H
## 43638 S72132J
## 43639 S72132K
## 43640 S72132M
## 43641 S72132N
## 43642 S72132P
## 43643 S72132Q
## 43644 S72132R
## 43645 S72132S
## 43646 S72133A
## 43647 S72133B
## 43648 S72133C
## 43649 S72133D
## 43650 S72133E
## 43651 S72133F
## 43652 S72133G
## 43653 S72133H
## 43654 S72133J
## 43655 S72133K
## 43656 S72133M
## 43657 S72133N
## 43658 S72133P
## 43659 S72133Q
## 43660 S72133R
## 43661 S72133S
## 43662 S72134A
## 43663 S72134B
## 43664 S72134C
## 43665 S72134D
## 43666 S72134E
## 43667 S72134F
## 43668 S72134G
## 43669 S72134H
## 43670 S72134J
## 43671 S72134K
## 43672 S72134M
## 43673 S72134N
## 43674 S72134P
## 43675 S72134Q
## 43676 S72134R
## 43677 S72134S
## 43678 S72135A
## 43679 S72135B
## 43680 S72135C
## 43681 S72135D
## 43682 S72135E
## 43683 S72135F
## 43684 S72135G
## 43685 S72135H
## 43686 S72135J
## 43687 S72135K
## 43688 S72135M
## 43689 S72135N
## 43690 S72135P
## 43691 S72135Q
## 43692 S72135R
## 43693 S72135S
## 43694 S72136A
## 43695 S72136B
## 43696 S72136C
## 43697 S72136D
## 43698 S72136E
## 43699 S72136F
## 43700 S72136G
## 43701 S72136H
## 43702 S72136J
## 43703 S72136K
## 43704 S72136M
## 43705 S72136N
## 43706 S72136P
## 43707 S72136Q
## 43708 S72136R
## 43709 S72136S
## 43710 S72141A
## 43711 S72141B
## 43712 S72141C
## 43713 S72141D
## 43714 S72141E
## 43715 S72141F
## 43716 S72141G
## 43717 S72141H
## 43718 S72141J
## 43719 S72141K
## 43720 S72141M
## 43721 S72141N
## 43722 S72141P
## 43723 S72141Q
## 43724 S72141R
## 43725 S72141S
## 43726 S72142A
## 43727 S72142B
## 43728 S72142C
## 43729 S72142D
## 43730 S72142E
## 43731 S72142F
## 43732 S72142G
## 43733 S72142H
## 43734 S72142J
## 43735 S72142K
## 43736 S72142M
## 43737 S72142N
## 43738 S72142P
## 43739 S72142Q
## 43740 S72142R
## 43741 S72142S
## 43742 S72143A
## 43743 S72143B
## 43744 S72143C
## 43745 S72143D
## 43746 S72143E
## 43747 S72143F
## 43748 S72143G
## 43749 S72143H
## 43750 S72143J
## 43751 S72143K
## 43752 S72143M
## 43753 S72143N
## 43754 S72143P
## 43755 S72143Q
## 43756 S72143R
## 43757 S72143S
## 43758 S72144A
## 43759 S72144B
## 43760 S72144C
## 43761 S72144D
## 43762 S72144E
## 43763 S72144F
## 43764 S72144G
## 43765 S72144H
## 43766 S72144J
## 43767 S72144K
## 43768 S72144M
## 43769 S72144N
## 43770 S72144P
## 43771 S72144Q
## 43772 S72144R
## 43773 S72144S
## 43774 S72145A
## 43775 S72145B
## 43776 S72145C
## 43777 S72145D
## 43778 S72145E
## 43779 S72145F
## 43780 S72145G
## 43781 S72145H
## 43782 S72145J
## 43783 S72145K
## 43784 S72145M
## 43785 S72145N
## 43786 S72145P
## 43787 S72145Q
## 43788 S72145R
## 43789 S72145S
## 43790 S72146A
## 43791 S72146B
## 43792 S72146C
## 43793 S72146D
## 43794 S72146E
## 43795 S72146F
## 43796 S72146G
## 43797 S72146H
## 43798 S72146J
## 43799 S72146K
## 43800 S72146M
## 43801 S72146N
## 43802 S72146P
## 43803 S72146Q
## 43804 S72146R
## 43805 S72146S
## 43806 S7221XA
## 43807 S7221XB
## 43808 S7221XC
## 43809 S7221XD
## 43810 S7221XE
## 43811 S7221XF
## 43812 S7221XG
## 43813 S7221XH
## 43814 S7221XJ
## 43815 S7221XK
## 43816 S7221XM
## 43817 S7221XN
## 43818 S7221XP
## 43819 S7221XQ
## 43820 S7221XR
## 43821 S7221XS
## 43822 S7222XA
## 43823 S7222XB
## 43824 S7222XC
## 43825 S7222XD
## 43826 S7222XE
## 43827 S7222XF
## 43828 S7222XG
## 43829 S7222XH
## 43830 S7222XJ
## 43831 S7222XK
## 43832 S7222XM
## 43833 S7222XN
## 43834 S7222XP
## 43835 S7222XQ
## 43836 S7222XR
## 43837 S7222XS
## 43838 S7223XA
## 43839 S7223XB
## 43840 S7223XC
## 43841 S7223XD
## 43842 S7223XE
## 43843 S7223XF
## 43844 S7223XG
## 43845 S7223XH
## 43846 S7223XJ
## 43847 S7223XK
## 43848 S7223XM
## 43849 S7223XN
## 43850 S7223XP
## 43851 S7223XQ
## 43852 S7223XR
## 43853 S7223XS
## 43854 S7224XA
## 43855 S7224XB
## 43856 S7224XC
## 43857 S7224XD
## 43858 S7224XE
## 43859 S7224XF
## 43860 S7224XG
## 43861 S7224XH
## 43862 S7224XJ
## 43863 S7224XK
## 43864 S7224XM
## 43865 S7224XN
## 43866 S7224XP
## 43867 S7224XQ
## 43868 S7224XR
## 43869 S7224XS
## 43870 S7225XA
## 43871 S7225XB
## 43872 S7225XC
## 43873 S7225XD
## 43874 S7225XE
## 43875 S7225XF
## 43876 S7225XG
## 43877 S7225XH
## 43878 S7225XJ
## 43879 S7225XK
## 43880 S7225XM
## 43881 S7225XN
## 43882 S7225XP
## 43883 S7225XQ
## 43884 S7225XR
## 43885 S7225XS
## 43886 S7226XA
## 43887 S7226XB
## 43888 S7226XC
## 43889 S7226XD
## 43890 S7226XE
## 43891 S7226XF
## 43892 S7226XG
## 43893 S7226XH
## 43894 S7226XJ
## 43895 S7226XK
## 43896 S7226XM
## 43897 S7226XN
## 43898 S7226XP
## 43899 S7226XQ
## 43900 S7226XR
## 43901 S7226XS
## 43902 S72301A
## 43903 S72301B
## 43904 S72301C
## 43905 S72301D
## 43906 S72301E
## 43907 S72301F
## 43908 S72301G
## 43909 S72301H
## 43910 S72301J
## 43911 S72301K
## 43912 S72301M
## 43913 S72301N
## 43914 S72301P
## 43915 S72301Q
## 43916 S72301R
## 43917 S72301S
## 43918 S72302A
## 43919 S72302B
## 43920 S72302C
## 43921 S72302D
## 43922 S72302E
## 43923 S72302F
## 43924 S72302G
## 43925 S72302H
## 43926 S72302J
## 43927 S72302K
## 43928 S72302M
## 43929 S72302N
## 43930 S72302P
## 43931 S72302Q
## 43932 S72302R
## 43933 S72302S
## 43934 S72309A
## 43935 S72309B
## 43936 S72309C
## 43937 S72309D
## 43938 S72309E
## 43939 S72309F
## 43940 S72309G
## 43941 S72309H
## 43942 S72309J
## 43943 S72309K
## 43944 S72309M
## 43945 S72309N
## 43946 S72309P
## 43947 S72309Q
## 43948 S72309R
## 43949 S72309S
## 43950 S72321A
## 43951 S72321B
## 43952 S72321C
## 43953 S72321D
## 43954 S72321E
## 43955 S72321F
## 43956 S72321G
## 43957 S72321H
## 43958 S72321J
## 43959 S72321K
## 43960 S72321M
## 43961 S72321N
## 43962 S72321P
## 43963 S72321Q
## 43964 S72321R
## 43965 S72321S
## 43966 S72322A
## 43967 S72322B
## 43968 S72322C
## 43969 S72322D
## 43970 S72322E
## 43971 S72322F
## 43972 S72322G
## 43973 S72322H
## 43974 S72322J
## 43975 S72322K
## 43976 S72322M
## 43977 S72322N
## 43978 S72322P
## 43979 S72322Q
## 43980 S72322R
## 43981 S72322S
## 43982 S72323A
## 43983 S72323B
## 43984 S72323C
## 43985 S72323D
## 43986 S72323E
## 43987 S72323F
## 43988 S72323G
## 43989 S72323H
## 43990 S72323J
## 43991 S72323K
## 43992 S72323M
## 43993 S72323N
## 43994 S72323P
## 43995 S72323Q
## 43996 S72323R
## 43997 S72323S
## 43998 S72324A
## 43999 S72324B
## 44000 S72324C
## 44001 S72324D
## 44002 S72324E
## 44003 S72324F
## 44004 S72324G
## 44005 S72324H
## 44006 S72324J
## 44007 S72324K
## 44008 S72324M
## 44009 S72324N
## 44010 S72324P
## 44011 S72324Q
## 44012 S72324R
## 44013 S72324S
## 44014 S72325A
## 44015 S72325B
## 44016 S72325C
## 44017 S72325D
## 44018 S72325E
## 44019 S72325F
## 44020 S72325G
## 44021 S72325H
## 44022 S72325J
## 44023 S72325K
## 44024 S72325M
## 44025 S72325N
## 44026 S72325P
## 44027 S72325Q
## 44028 S72325R
## 44029 S72325S
## 44030 S72326A
## 44031 S72326B
## 44032 S72326C
## 44033 S72326D
## 44034 S72326E
## 44035 S72326F
## 44036 S72326G
## 44037 S72326H
## 44038 S72326J
## 44039 S72326K
## 44040 S72326M
## 44041 S72326N
## 44042 S72326P
## 44043 S72326Q
## 44044 S72326R
## 44045 S72326S
## 44046 S72331A
## 44047 S72331B
## 44048 S72331C
## 44049 S72331D
## 44050 S72331E
## 44051 S72331F
## 44052 S72331G
## 44053 S72331H
## 44054 S72331J
## 44055 S72331K
## 44056 S72331M
## 44057 S72331N
## 44058 S72331P
## 44059 S72331Q
## 44060 S72331R
## 44061 S72331S
## 44062 S72332A
## 44063 S72332B
## 44064 S72332C
## 44065 S72332D
## 44066 S72332E
## 44067 S72332F
## 44068 S72332G
## 44069 S72332H
## 44070 S72332J
## 44071 S72332K
## 44072 S72332M
## 44073 S72332N
## 44074 S72332P
## 44075 S72332Q
## 44076 S72332R
## 44077 S72332S
## 44078 S72333A
## 44079 S72333B
## 44080 S72333C
## 44081 S72333D
## 44082 S72333E
## 44083 S72333F
## 44084 S72333G
## 44085 S72333H
## 44086 S72333J
## 44087 S72333K
## 44088 S72333M
## 44089 S72333N
## 44090 S72333P
## 44091 S72333Q
## 44092 S72333R
## 44093 S72333S
## 44094 S72334A
## 44095 S72334B
## 44096 S72334C
## 44097 S72334D
## 44098 S72334E
## 44099 S72334F
## 44100 S72334G
## 44101 S72334H
## 44102 S72334J
## 44103 S72334K
## 44104 S72334M
## 44105 S72334N
## 44106 S72334P
## 44107 S72334Q
## 44108 S72334R
## 44109 S72334S
## 44110 S72335A
## 44111 S72335B
## 44112 S72335C
## 44113 S72335D
## 44114 S72335E
## 44115 S72335F
## 44116 S72335G
## 44117 S72335H
## 44118 S72335J
## 44119 S72335K
## 44120 S72335M
## 44121 S72335N
## 44122 S72335P
## 44123 S72335Q
## 44124 S72335R
## 44125 S72335S
## 44126 S72336A
## 44127 S72336B
## 44128 S72336C
## 44129 S72336D
## 44130 S72336E
## 44131 S72336F
## 44132 S72336G
## 44133 S72336H
## 44134 S72336J
## 44135 S72336K
## 44136 S72336M
## 44137 S72336N
## 44138 S72336P
## 44139 S72336Q
## 44140 S72336R
## 44141 S72336S
## 44142 S72341A
## 44143 S72341B
## 44144 S72341C
## 44145 S72341D
## 44146 S72341E
## 44147 S72341F
## 44148 S72341G
## 44149 S72341H
## 44150 S72341J
## 44151 S72341K
## 44152 S72341M
## 44153 S72341N
## 44154 S72341P
## 44155 S72341Q
## 44156 S72341R
## 44157 S72341S
## 44158 S72342A
## 44159 S72342B
## 44160 S72342C
## 44161 S72342D
## 44162 S72342E
## 44163 S72342F
## 44164 S72342G
## 44165 S72342H
## 44166 S72342J
## 44167 S72342K
## 44168 S72342M
## 44169 S72342N
## 44170 S72342P
## 44171 S72342Q
## 44172 S72342R
## 44173 S72342S
## 44174 S72343A
## 44175 S72343B
## 44176 S72343C
## 44177 S72343D
## 44178 S72343E
## 44179 S72343F
## 44180 S72343G
## 44181 S72343H
## 44182 S72343J
## 44183 S72343K
## 44184 S72343M
## 44185 S72343N
## 44186 S72343P
## 44187 S72343Q
## 44188 S72343R
## 44189 S72343S
## 44190 S72344A
## 44191 S72344B
## 44192 S72344C
## 44193 S72344D
## 44194 S72344E
## 44195 S72344F
## 44196 S72344G
## 44197 S72344H
## 44198 S72344J
## 44199 S72344K
## 44200 S72344M
## 44201 S72344N
## 44202 S72344P
## 44203 S72344Q
## 44204 S72344R
## 44205 S72344S
## 44206 S72345A
## 44207 S72345B
## 44208 S72345C
## 44209 S72345D
## 44210 S72345E
## 44211 S72345F
## 44212 S72345G
## 44213 S72345H
## 44214 S72345J
## 44215 S72345K
## 44216 S72345M
## 44217 S72345N
## 44218 S72345P
## 44219 S72345Q
## 44220 S72345R
## 44221 S72345S
## 44222 S72346A
## 44223 S72346B
## 44224 S72346C
## 44225 S72346D
## 44226 S72346E
## 44227 S72346F
## 44228 S72346G
## 44229 S72346H
## 44230 S72346J
## 44231 S72346K
## 44232 S72346M
## 44233 S72346N
## 44234 S72346P
## 44235 S72346Q
## 44236 S72346R
## 44237 S72346S
## 44238 S72351A
## 44239 S72351B
## 44240 S72351C
## 44241 S72351D
## 44242 S72351E
## 44243 S72351F
## 44244 S72351G
## 44245 S72351H
## 44246 S72351J
## 44247 S72351K
## 44248 S72351M
## 44249 S72351N
## 44250 S72351P
## 44251 S72351Q
## 44252 S72351R
## 44253 S72351S
## 44254 S72352A
## 44255 S72352B
## 44256 S72352C
## 44257 S72352D
## 44258 S72352E
## 44259 S72352F
## 44260 S72352G
## 44261 S72352H
## 44262 S72352J
## 44263 S72352K
## 44264 S72352M
## 44265 S72352N
## 44266 S72352P
## 44267 S72352Q
## 44268 S72352R
## 44269 S72352S
## 44270 S72353A
## 44271 S72353B
## 44272 S72353C
## 44273 S72353D
## 44274 S72353E
## 44275 S72353F
## 44276 S72353G
## 44277 S72353H
## 44278 S72353J
## 44279 S72353K
## 44280 S72353M
## 44281 S72353N
## 44282 S72353P
## 44283 S72353Q
## 44284 S72353R
## 44285 S72353S
## 44286 S72354A
## 44287 S72354B
## 44288 S72354C
## 44289 S72354D
## 44290 S72354E
## 44291 S72354F
## 44292 S72354G
## 44293 S72354H
## 44294 S72354J
## 44295 S72354K
## 44296 S72354M
## 44297 S72354N
## 44298 S72354P
## 44299 S72354Q
## 44300 S72354R
## 44301 S72354S
## 44302 S72355A
## 44303 S72355B
## 44304 S72355C
## 44305 S72355D
## 44306 S72355E
## 44307 S72355F
## 44308 S72355G
## 44309 S72355H
## 44310 S72355J
## 44311 S72355K
## 44312 S72355M
## 44313 S72355N
## 44314 S72355P
## 44315 S72355Q
## 44316 S72355R
## 44317 S72355S
## 44318 S72356A
## 44319 S72356B
## 44320 S72356C
## 44321 S72356D
## 44322 S72356E
## 44323 S72356F
## 44324 S72356G
## 44325 S72356H
## 44326 S72356J
## 44327 S72356K
## 44328 S72356M
## 44329 S72356N
## 44330 S72356P
## 44331 S72356Q
## 44332 S72356R
## 44333 S72356S
## 44334 S72361A
## 44335 S72361B
## 44336 S72361C
## 44337 S72361D
## 44338 S72361E
## 44339 S72361F
## 44340 S72361G
## 44341 S72361H
## 44342 S72361J
## 44343 S72361K
## 44344 S72361M
## 44345 S72361N
## 44346 S72361P
## 44347 S72361Q
## 44348 S72361R
## 44349 S72361S
## 44350 S72362A
## 44351 S72362B
## 44352 S72362C
## 44353 S72362D
## 44354 S72362E
## 44355 S72362F
## 44356 S72362G
## 44357 S72362H
## 44358 S72362J
## 44359 S72362K
## 44360 S72362M
## 44361 S72362N
## 44362 S72362P
## 44363 S72362Q
## 44364 S72362R
## 44365 S72362S
## 44366 S72363A
## 44367 S72363B
## 44368 S72363C
## 44369 S72363D
## 44370 S72363E
## 44371 S72363F
## 44372 S72363G
## 44373 S72363H
## 44374 S72363J
## 44375 S72363K
## 44376 S72363M
## 44377 S72363N
## 44378 S72363P
## 44379 S72363Q
## 44380 S72363R
## 44381 S72363S
## 44382 S72364A
## 44383 S72364B
## 44384 S72364C
## 44385 S72364D
## 44386 S72364E
## 44387 S72364F
## 44388 S72364G
## 44389 S72364H
## 44390 S72364J
## 44391 S72364K
## 44392 S72364M
## 44393 S72364N
## 44394 S72364P
## 44395 S72364Q
## 44396 S72364R
## 44397 S72364S
## 44398 S72365A
## 44399 S72365B
## 44400 S72365C
## 44401 S72365D
## 44402 S72365E
## 44403 S72365F
## 44404 S72365G
## 44405 S72365H
## 44406 S72365J
## 44407 S72365K
## 44408 S72365M
## 44409 S72365N
## 44410 S72365P
## 44411 S72365Q
## 44412 S72365R
## 44413 S72365S
## 44414 S72366A
## 44415 S72366B
## 44416 S72366C
## 44417 S72366D
## 44418 S72366E
## 44419 S72366F
## 44420 S72366G
## 44421 S72366H
## 44422 S72366J
## 44423 S72366K
## 44424 S72366M
## 44425 S72366N
## 44426 S72366P
## 44427 S72366Q
## 44428 S72366R
## 44429 S72366S
## 44430 S72391A
## 44431 S72391B
## 44432 S72391C
## 44433 S72391D
## 44434 S72391E
## 44435 S72391F
## 44436 S72391G
## 44437 S72391H
## 44438 S72391J
## 44439 S72391K
## 44440 S72391M
## 44441 S72391N
## 44442 S72391P
## 44443 S72391Q
## 44444 S72391R
## 44445 S72391S
## 44446 S72392A
## 44447 S72392B
## 44448 S72392C
## 44449 S72392D
## 44450 S72392E
## 44451 S72392F
## 44452 S72392G
## 44453 S72392H
## 44454 S72392J
## 44455 S72392K
## 44456 S72392M
## 44457 S72392N
## 44458 S72392P
## 44459 S72392Q
## 44460 S72392R
## 44461 S72392S
## 44462 S72399A
## 44463 S72399B
## 44464 S72399C
## 44465 S72399D
## 44466 S72399E
## 44467 S72399F
## 44468 S72399G
## 44469 S72399H
## 44470 S72399J
## 44471 S72399K
## 44472 S72399M
## 44473 S72399N
## 44474 S72399P
## 44475 S72399Q
## 44476 S72399R
## 44477 S72399S
## 44478 S72401A
## 44479 S72401B
## 44480 S72401C
## 44481 S72401D
## 44482 S72401E
## 44483 S72401F
## 44484 S72401G
## 44485 S72401H
## 44486 S72401J
## 44487 S72401K
## 44488 S72401M
## 44489 S72401N
## 44490 S72401P
## 44491 S72401Q
## 44492 S72401R
## 44493 S72401S
## 44494 S72402A
## 44495 S72402B
## 44496 S72402C
## 44497 S72402D
## 44498 S72402E
## 44499 S72402F
## 44500 S72402G
## 44501 S72402H
## 44502 S72402J
## 44503 S72402K
## 44504 S72402M
## 44505 S72402N
## 44506 S72402P
## 44507 S72402Q
## 44508 S72402R
## 44509 S72402S
## 44510 S72409A
## 44511 S72409B
## 44512 S72409C
## 44513 S72409D
## 44514 S72409E
## 44515 S72409F
## 44516 S72409G
## 44517 S72409H
## 44518 S72409J
## 44519 S72409K
## 44520 S72409M
## 44521 S72409N
## 44522 S72409P
## 44523 S72409Q
## 44524 S72409R
## 44525 S72409S
## 44526 S72411A
## 44527 S72411B
## 44528 S72411C
## 44529 S72411D
## 44530 S72411E
## 44531 S72411F
## 44532 S72411G
## 44533 S72411H
## 44534 S72411J
## 44535 S72411K
## 44536 S72411M
## 44537 S72411N
## 44538 S72411P
## 44539 S72411Q
## 44540 S72411R
## 44541 S72411S
## 44542 S72412A
## 44543 S72412B
## 44544 S72412C
## 44545 S72412D
## 44546 S72412E
## 44547 S72412F
## 44548 S72412G
## 44549 S72412H
## 44550 S72412J
## 44551 S72412K
## 44552 S72412M
## 44553 S72412N
## 44554 S72412P
## 44555 S72412Q
## 44556 S72412R
## 44557 S72412S
## 44558 S72413A
## 44559 S72413B
## 44560 S72413C
## 44561 S72413D
## 44562 S72413E
## 44563 S72413F
## 44564 S72413G
## 44565 S72413H
## 44566 S72413J
## 44567 S72413K
## 44568 S72413M
## 44569 S72413N
## 44570 S72413P
## 44571 S72413Q
## 44572 S72413R
## 44573 S72413S
## 44574 S72414A
## 44575 S72414B
## 44576 S72414C
## 44577 S72414D
## 44578 S72414E
## 44579 S72414F
## 44580 S72414G
## 44581 S72414H
## 44582 S72414J
## 44583 S72414K
## 44584 S72414M
## 44585 S72414N
## 44586 S72414P
## 44587 S72414Q
## 44588 S72414R
## 44589 S72414S
## 44590 S72415A
## 44591 S72415B
## 44592 S72415C
## 44593 S72415D
## 44594 S72415E
## 44595 S72415F
## 44596 S72415G
## 44597 S72415H
## 44598 S72415J
## 44599 S72415K
## 44600 S72415M
## 44601 S72415N
## 44602 S72415P
## 44603 S72415Q
## 44604 S72415R
## 44605 S72415S
## 44606 S72416A
## 44607 S72416B
## 44608 S72416C
## 44609 S72416D
## 44610 S72416E
## 44611 S72416F
## 44612 S72416G
## 44613 S72416H
## 44614 S72416J
## 44615 S72416K
## 44616 S72416M
## 44617 S72416N
## 44618 S72416P
## 44619 S72416Q
## 44620 S72416R
## 44621 S72416S
## 44622 S72421A
## 44623 S72421B
## 44624 S72421C
## 44625 S72421D
## 44626 S72421E
## 44627 S72421F
## 44628 S72421G
## 44629 S72421H
## 44630 S72421J
## 44631 S72421K
## 44632 S72421M
## 44633 S72421N
## 44634 S72421P
## 44635 S72421Q
## 44636 S72421R
## 44637 S72421S
## 44638 S72422A
## 44639 S72422B
## 44640 S72422C
## 44641 S72422D
## 44642 S72422E
## 44643 S72422F
## 44644 S72422G
## 44645 S72422H
## 44646 S72422J
## 44647 S72422K
## 44648 S72422M
## 44649 S72422N
## 44650 S72422P
## 44651 S72422Q
## 44652 S72422R
## 44653 S72422S
## 44654 S72423A
## 44655 S72423B
## 44656 S72423C
## 44657 S72423D
## 44658 S72423E
## 44659 S72423F
## 44660 S72423G
## 44661 S72423H
## 44662 S72423J
## 44663 S72423K
## 44664 S72423M
## 44665 S72423N
## 44666 S72423P
## 44667 S72423Q
## 44668 S72423R
## 44669 S72423S
## 44670 S72424A
## 44671 S72424B
## 44672 S72424C
## 44673 S72424D
## 44674 S72424E
## 44675 S72424F
## 44676 S72424G
## 44677 S72424H
## 44678 S72424J
## 44679 S72424K
## 44680 S72424M
## 44681 S72424N
## 44682 S72424P
## 44683 S72424Q
## 44684 S72424R
## 44685 S72424S
## 44686 S72425A
## 44687 S72425B
## 44688 S72425C
## 44689 S72425D
## 44690 S72425E
## 44691 S72425F
## 44692 S72425G
## 44693 S72425H
## 44694 S72425J
## 44695 S72425K
## 44696 S72425M
## 44697 S72425N
## 44698 S72425P
## 44699 S72425Q
## 44700 S72425R
## 44701 S72425S
## 44702 S72426A
## 44703 S72426B
## 44704 S72426C
## 44705 S72426D
## 44706 S72426E
## 44707 S72426F
## 44708 S72426G
## 44709 S72426H
## 44710 S72426J
## 44711 S72426K
## 44712 S72426M
## 44713 S72426N
## 44714 S72426P
## 44715 S72426Q
## 44716 S72426R
## 44717 S72426S
## 44718 S72431A
## 44719 S72431B
## 44720 S72431C
## 44721 S72431D
## 44722 S72431E
## 44723 S72431F
## 44724 S72431G
## 44725 S72431H
## 44726 S72431J
## 44727 S72431K
## 44728 S72431M
## 44729 S72431N
## 44730 S72431P
## 44731 S72431Q
## 44732 S72431R
## 44733 S72431S
## 44734 S72432A
## 44735 S72432B
## 44736 S72432C
## 44737 S72432D
## 44738 S72432E
## 44739 S72432F
## 44740 S72432G
## 44741 S72432H
## 44742 S72432J
## 44743 S72432K
## 44744 S72432M
## 44745 S72432N
## 44746 S72432P
## 44747 S72432Q
## 44748 S72432R
## 44749 S72432S
## 44750 S72433A
## 44751 S72433B
## 44752 S72433C
## 44753 S72433D
## 44754 S72433E
## 44755 S72433F
## 44756 S72433G
## 44757 S72433H
## 44758 S72433J
## 44759 S72433K
## 44760 S72433M
## 44761 S72433N
## 44762 S72433P
## 44763 S72433Q
## 44764 S72433R
## 44765 S72433S
## 44766 S72434A
## 44767 S72434B
## 44768 S72434C
## 44769 S72434D
## 44770 S72434E
## 44771 S72434F
## 44772 S72434G
## 44773 S72434H
## 44774 S72434J
## 44775 S72434K
## 44776 S72434M
## 44777 S72434N
## 44778 S72434P
## 44779 S72434Q
## 44780 S72434R
## 44781 S72434S
## 44782 S72435A
## 44783 S72435B
## 44784 S72435C
## 44785 S72435D
## 44786 S72435E
## 44787 S72435F
## 44788 S72435G
## 44789 S72435H
## 44790 S72435J
## 44791 S72435K
## 44792 S72435M
## 44793 S72435N
## 44794 S72435P
## 44795 S72435Q
## 44796 S72435R
## 44797 S72435S
## 44798 S72436A
## 44799 S72436B
## 44800 S72436C
## 44801 S72436D
## 44802 S72436E
## 44803 S72436F
## 44804 S72436G
## 44805 S72436H
## 44806 S72436J
## 44807 S72436K
## 44808 S72436M
## 44809 S72436N
## 44810 S72436P
## 44811 S72436Q
## 44812 S72436R
## 44813 S72436S
## 44814 S72441A
## 44815 S72441B
## 44816 S72441C
## 44817 S72441D
## 44818 S72441E
## 44819 S72441F
## 44820 S72441G
## 44821 S72441H
## 44822 S72441J
## 44823 S72441K
## 44824 S72441M
## 44825 S72441N
## 44826 S72441P
## 44827 S72441Q
## 44828 S72441R
## 44829 S72441S
## 44830 S72442A
## 44831 S72442B
## 44832 S72442C
## 44833 S72442D
## 44834 S72442E
## 44835 S72442F
## 44836 S72442G
## 44837 S72442H
## 44838 S72442J
## 44839 S72442K
## 44840 S72442M
## 44841 S72442N
## 44842 S72442P
## 44843 S72442Q
## 44844 S72442R
## 44845 S72442S
## 44846 S72443A
## 44847 S72443B
## 44848 S72443C
## 44849 S72443D
## 44850 S72443E
## 44851 S72443F
## 44852 S72443G
## 44853 S72443H
## 44854 S72443J
## 44855 S72443K
## 44856 S72443M
## 44857 S72443N
## 44858 S72443P
## 44859 S72443Q
## 44860 S72443R
## 44861 S72443S
## 44862 S72444A
## 44863 S72444B
## 44864 S72444C
## 44865 S72444D
## 44866 S72444E
## 44867 S72444F
## 44868 S72444G
## 44869 S72444H
## 44870 S72444J
## 44871 S72444K
## 44872 S72444M
## 44873 S72444N
## 44874 S72444P
## 44875 S72444Q
## 44876 S72444R
## 44877 S72444S
## 44878 S72445A
## 44879 S72445B
## 44880 S72445C
## 44881 S72445D
## 44882 S72445E
## 44883 S72445F
## 44884 S72445G
## 44885 S72445H
## 44886 S72445J
## 44887 S72445K
## 44888 S72445M
## 44889 S72445N
## 44890 S72445P
## 44891 S72445Q
## 44892 S72445R
## 44893 S72445S
## 44894 S72446A
## 44895 S72446B
## 44896 S72446C
## 44897 S72446D
## 44898 S72446E
## 44899 S72446F
## 44900 S72446G
## 44901 S72446H
## 44902 S72446J
## 44903 S72446K
## 44904 S72446M
## 44905 S72446N
## 44906 S72446P
## 44907 S72446Q
## 44908 S72446R
## 44909 S72446S
## 44910 S72451A
## 44911 S72451B
## 44912 S72451C
## 44913 S72451D
## 44914 S72451E
## 44915 S72451F
## 44916 S72451G
## 44917 S72451H
## 44918 S72451J
## 44919 S72451K
## 44920 S72451M
## 44921 S72451N
## 44922 S72451P
## 44923 S72451Q
## 44924 S72451R
## 44925 S72451S
## 44926 S72452A
## 44927 S72452B
## 44928 S72452C
## 44929 S72452D
## 44930 S72452E
## 44931 S72452F
## 44932 S72452G
## 44933 S72452H
## 44934 S72452J
## 44935 S72452K
## 44936 S72452M
## 44937 S72452N
## 44938 S72452P
## 44939 S72452Q
## 44940 S72452R
## 44941 S72452S
## 44942 S72453A
## 44943 S72453B
## 44944 S72453C
## 44945 S72453D
## 44946 S72453E
## 44947 S72453F
## 44948 S72453G
## 44949 S72453H
## 44950 S72453J
## 44951 S72453K
## 44952 S72453M
## 44953 S72453N
## 44954 S72453P
## 44955 S72453Q
## 44956 S72453R
## 44957 S72453S
## 44958 S72454A
## 44959 S72454B
## 44960 S72454C
## 44961 S72454D
## 44962 S72454E
## 44963 S72454F
## 44964 S72454G
## 44965 S72454H
## 44966 S72454J
## 44967 S72454K
## 44968 S72454M
## 44969 S72454N
## 44970 S72454P
## 44971 S72454Q
## 44972 S72454R
## 44973 S72454S
## 44974 S72455A
## 44975 S72455B
## 44976 S72455C
## 44977 S72455D
## 44978 S72455E
## 44979 S72455F
## 44980 S72455G
## 44981 S72455H
## 44982 S72455J
## 44983 S72455K
## 44984 S72455M
## 44985 S72455N
## 44986 S72455P
## 44987 S72455Q
## 44988 S72455R
## 44989 S72455S
## 44990 S72456A
## 44991 S72456B
## 44992 S72456C
## 44993 S72456D
## 44994 S72456E
## 44995 S72456F
## 44996 S72456G
## 44997 S72456H
## 44998 S72456J
## 44999 S72456K
## 45000 S72456M
## 45001 S72456N
## 45002 S72456P
## 45003 S72456Q
## 45004 S72456R
## 45005 S72456S
## 45006 S72461A
## 45007 S72461B
## 45008 S72461C
## 45009 S72461D
## 45010 S72461E
## 45011 S72461F
## 45012 S72461G
## 45013 S72461H
## 45014 S72461J
## 45015 S72461K
## 45016 S72461M
## 45017 S72461N
## 45018 S72461P
## 45019 S72461Q
## 45020 S72461R
## 45021 S72461S
## 45022 S72462A
## 45023 S72462B
## 45024 S72462C
## 45025 S72462D
## 45026 S72462E
## 45027 S72462F
## 45028 S72462G
## 45029 S72462H
## 45030 S72462J
## 45031 S72462K
## 45032 S72462M
## 45033 S72462N
## 45034 S72462P
## 45035 S72462Q
## 45036 S72462R
## 45037 S72462S
## 45038 S72463A
## 45039 S72463B
## 45040 S72463C
## 45041 S72463D
## 45042 S72463E
## 45043 S72463F
## 45044 S72463G
## 45045 S72463H
## 45046 S72463J
## 45047 S72463K
## 45048 S72463M
## 45049 S72463N
## 45050 S72463P
## 45051 S72463Q
## 45052 S72463R
## 45053 S72463S
## 45054 S72464A
## 45055 S72464B
## 45056 S72464C
## 45057 S72464D
## 45058 S72464E
## 45059 S72464F
## 45060 S72464G
## 45061 S72464H
## 45062 S72464J
## 45063 S72464K
## 45064 S72464M
## 45065 S72464N
## 45066 S72464P
## 45067 S72464Q
## 45068 S72464R
## 45069 S72464S
## 45070 S72465A
## 45071 S72465B
## 45072 S72465C
## 45073 S72465D
## 45074 S72465E
## 45075 S72465F
## 45076 S72465G
## 45077 S72465H
## 45078 S72465J
## 45079 S72465K
## 45080 S72465M
## 45081 S72465N
## 45082 S72465P
## 45083 S72465Q
## 45084 S72465R
## 45085 S72465S
## 45086 S72466A
## 45087 S72466B
## 45088 S72466C
## 45089 S72466D
## 45090 S72466E
## 45091 S72466F
## 45092 S72466G
## 45093 S72466H
## 45094 S72466J
## 45095 S72466K
## 45096 S72466M
## 45097 S72466N
## 45098 S72466P
## 45099 S72466Q
## 45100 S72466R
## 45101 S72466S
## 45102 S72471A
## 45103 S72471D
## 45104 S72471G
## 45105 S72471K
## 45106 S72471P
## 45107 S72471S
## 45108 S72472A
## 45109 S72472D
## 45110 S72472G
## 45111 S72472K
## 45112 S72472P
## 45113 S72472S
## 45114 S72479A
## 45115 S72479D
## 45116 S72479G
## 45117 S72479K
## 45118 S72479P
## 45119 S72479S
## 45120 S72491A
## 45121 S72491B
## 45122 S72491C
## 45123 S72491D
## 45124 S72491E
## 45125 S72491F
## 45126 S72491G
## 45127 S72491H
## 45128 S72491J
## 45129 S72491K
## 45130 S72491M
## 45131 S72491N
## 45132 S72491P
## 45133 S72491Q
## 45134 S72491R
## 45135 S72491S
## 45136 S72492A
## 45137 S72492B
## 45138 S72492C
## 45139 S72492D
## 45140 S72492E
## 45141 S72492F
## 45142 S72492G
## 45143 S72492H
## 45144 S72492J
## 45145 S72492K
## 45146 S72492M
## 45147 S72492N
## 45148 S72492P
## 45149 S72492Q
## 45150 S72492R
## 45151 S72492S
## 45152 S72499A
## 45153 S72499B
## 45154 S72499C
## 45155 S72499D
## 45156 S72499E
## 45157 S72499F
## 45158 S72499G
## 45159 S72499H
## 45160 S72499J
## 45161 S72499K
## 45162 S72499M
## 45163 S72499N
## 45164 S72499P
## 45165 S72499Q
## 45166 S72499R
## 45167 S72499S
## 45168 S728X1A
## 45169 S728X1B
## 45170 S728X1C
## 45171 S728X1D
## 45172 S728X1E
## 45173 S728X1F
## 45174 S728X1G
## 45175 S728X1H
## 45176 S728X1J
## 45177 S728X1K
## 45178 S728X1M
## 45179 S728X1N
## 45180 S728X1P
## 45181 S728X1Q
## 45182 S728X1R
## 45183 S728X1S
## 45184 S728X2A
## 45185 S728X2B
## 45186 S728X2C
## 45187 S728X2D
## 45188 S728X2E
## 45189 S728X2F
## 45190 S728X2G
## 45191 S728X2H
## 45192 S728X2J
## 45193 S728X2K
## 45194 S728X2M
## 45195 S728X2N
## 45196 S728X2P
## 45197 S728X2Q
## 45198 S728X2R
## 45199 S728X2S
## 45200 S728X9A
## 45201 S728X9B
## 45202 S728X9C
## 45203 S728X9D
## 45204 S728X9E
## 45205 S728X9F
## 45206 S728X9G
## 45207 S728X9H
## 45208 S728X9J
## 45209 S728X9K
## 45210 S728X9M
## 45211 S728X9N
## 45212 S728X9P
## 45213 S728X9Q
## 45214 S728X9R
## 45215 S728X9S
## 45216 S7290XA
## 45217 S7290XB
## 45218 S7290XC
## 45219 S7290XD
## 45220 S7290XE
## 45221 S7290XF
## 45222 S7290XG
## 45223 S7290XH
## 45224 S7290XJ
## 45225 S7290XK
## 45226 S7290XM
## 45227 S7290XN
## 45228 S7290XP
## 45229 S7290XQ
## 45230 S7290XR
## 45231 S7290XS
## 45232 S7291XA
## 45233 S7291XB
## 45234 S7291XC
## 45235 S7291XD
## 45236 S7291XE
## 45237 S7291XF
## 45238 S7291XG
## 45239 S7291XH
## 45240 S7291XJ
## 45241 S7291XK
## 45242 S7291XM
## 45243 S7291XN
## 45244 S7291XP
## 45245 S7291XQ
## 45246 S7291XR
## 45247 S7291XS
## 45248 S7292XA
## 45249 S7292XB
## 45250 S7292XC
## 45251 S7292XD
## 45252 S7292XE
## 45253 S7292XF
## 45254 S7292XG
## 45255 S7292XH
## 45256 S7292XJ
## 45257 S7292XK
## 45258 S7292XM
## 45259 S7292XN
## 45260 S7292XP
## 45261 S7292XQ
## 45262 S7292XR
## 45263 S7292XS
## 45264 S73001A
## 45265 S73001D
## 45266 S73001S
## 45267 S73002A
## 45268 S73002D
## 45269 S73002S
## 45270 S73003A
## 45271 S73003D
## 45272 S73003S
## 45273 S73004A
## 45274 S73004D
## 45275 S73004S
## 45276 S73005A
## 45277 S73005D
## 45278 S73005S
## 45279 S73006A
## 45280 S73006D
## 45281 S73006S
## 45282 S73011A
## 45283 S73011D
## 45284 S73011S
## 45285 S73012A
## 45286 S73012D
## 45287 S73012S
## 45288 S73013A
## 45289 S73013D
## 45290 S73013S
## 45291 S73014A
## 45292 S73014D
## 45293 S73014S
## 45294 S73015A
## 45295 S73015D
## 45296 S73015S
## 45297 S73016A
## 45298 S73016D
## 45299 S73016S
## 45300 S73021A
## 45301 S73021D
## 45302 S73021S
## 45303 S73022A
## 45304 S73022D
## 45305 S73022S
## 45306 S73023A
## 45307 S73023D
## 45308 S73023S
## 45309 S73024A
## 45310 S73024D
## 45311 S73024S
## 45312 S73025A
## 45313 S73025D
## 45314 S73025S
## 45315 S73026A
## 45316 S73026D
## 45317 S73026S
## 45318 S73031A
## 45319 S73031D
## 45320 S73031S
## 45321 S73032A
## 45322 S73032D
## 45323 S73032S
## 45324 S73033A
## 45325 S73033D
## 45326 S73033S
## 45327 S73034A
## 45328 S73034D
## 45329 S73034S
## 45330 S73035A
## 45331 S73035D
## 45332 S73035S
## 45333 S73036A
## 45334 S73036D
## 45335 S73036S
## 45336 S73041A
## 45337 S73041D
## 45338 S73041S
## 45339 S73042A
## 45340 S73042D
## 45341 S73042S
## 45342 S73043A
## 45343 S73043D
## 45344 S73043S
## 45345 S73044A
## 45346 S73044D
## 45347 S73044S
## 45348 S73045A
## 45349 S73045D
## 45350 S73045S
## 45351 S73046A
## 45352 S73046D
## 45353 S73046S
## 45354 S73101A
## 45355 S73101D
## 45356 S73101S
## 45357 S73102A
## 45358 S73102D
## 45359 S73102S
## 45360 S73109A
## 45361 S73109D
## 45362 S73109S
## 45363 S73111A
## 45364 S73111D
## 45365 S73111S
## 45366 S73112A
## 45367 S73112D
## 45368 S73112S
## 45369 S73119A
## 45370 S73119D
## 45371 S73119S
## 45372 S73121A
## 45373 S73121D
## 45374 S73121S
## 45375 S73122A
## 45376 S73122D
## 45377 S73122S
## 45378 S73129A
## 45379 S73129D
## 45380 S73129S
## 45381 S73191A
## 45382 S73191D
## 45383 S73191S
## 45384 S73192A
## 45385 S73192D
## 45386 S73192S
## 45387 S73199A
## 45388 S73199D
## 45389 S73199S
## 45390 S7400XA
## 45391 S7400XD
## 45392 S7400XS
## 45393 S7401XA
## 45394 S7401XD
## 45395 S7401XS
## 45396 S7402XA
## 45397 S7402XD
## 45398 S7402XS
## 45399 S7410XA
## 45400 S7410XD
## 45401 S7410XS
## 45402 S7411XA
## 45403 S7411XD
## 45404 S7411XS
## 45405 S7412XA
## 45406 S7412XD
## 45407 S7412XS
## 45408 S7420XA
## 45409 S7420XD
## 45410 S7420XS
## 45411 S7421XA
## 45412 S7421XD
## 45413 S7421XS
## 45414 S7422XA
## 45415 S7422XD
## 45416 S7422XS
## 45417 S748X1A
## 45418 S748X1D
## 45419 S748X1S
## 45420 S748X2A
## 45421 S748X2D
## 45422 S748X2S
## 45423 S748X9A
## 45424 S748X9D
## 45425 S748X9S
## 45426 S7490XA
## 45427 S7490XD
## 45428 S7490XS
## 45429 S7491XA
## 45430 S7491XD
## 45431 S7491XS
## 45432 S7492XA
## 45433 S7492XD
## 45434 S7492XS
## 45435 S75001A
## 45436 S75001D
## 45437 S75001S
## 45438 S75002A
## 45439 S75002D
## 45440 S75002S
## 45441 S75009A
## 45442 S75009D
## 45443 S75009S
## 45444 S75011A
## 45445 S75011D
## 45446 S75011S
## 45447 S75012A
## 45448 S75012D
## 45449 S75012S
## 45450 S75019A
## 45451 S75019D
## 45452 S75019S
## 45453 S75021A
## 45454 S75021D
## 45455 S75021S
## 45456 S75022A
## 45457 S75022D
## 45458 S75022S
## 45459 S75029A
## 45460 S75029D
## 45461 S75029S
## 45462 S75091A
## 45463 S75091D
## 45464 S75091S
## 45465 S75092A
## 45466 S75092D
## 45467 S75092S
## 45468 S75099A
## 45469 S75099D
## 45470 S75099S
## 45471 S75101A
## 45472 S75101D
## 45473 S75101S
## 45474 S75102A
## 45475 S75102D
## 45476 S75102S
## 45477 S75109A
## 45478 S75109D
## 45479 S75109S
## 45480 S75111A
## 45481 S75111D
## 45482 S75111S
## 45483 S75112A
## 45484 S75112D
## 45485 S75112S
## 45486 S75119A
## 45487 S75119D
## 45488 S75119S
## 45489 S75121A
## 45490 S75121D
## 45491 S75121S
## 45492 S75122A
## 45493 S75122D
## 45494 S75122S
## 45495 S75129A
## 45496 S75129D
## 45497 S75129S
## 45498 S75191A
## 45499 S75191D
## 45500 S75191S
## 45501 S75192A
## 45502 S75192D
## 45503 S75192S
## 45504 S75199A
## 45505 S75199D
## 45506 S75199S
## 45507 S75201A
## 45508 S75201D
## 45509 S75201S
## 45510 S75202A
## 45511 S75202D
## 45512 S75202S
## 45513 S75209A
## 45514 S75209D
## 45515 S75209S
## 45516 S75211A
## 45517 S75211D
## 45518 S75211S
## 45519 S75212A
## 45520 S75212D
## 45521 S75212S
## 45522 S75219A
## 45523 S75219D
## 45524 S75219S
## 45525 S75221A
## 45526 S75221D
## 45527 S75221S
## 45528 S75222A
## 45529 S75222D
## 45530 S75222S
## 45531 S75229A
## 45532 S75229D
## 45533 S75229S
## 45534 S75291A
## 45535 S75291D
## 45536 S75291S
## 45537 S75292A
## 45538 S75292D
## 45539 S75292S
## 45540 S75299A
## 45541 S75299D
## 45542 S75299S
## 45543 S75801A
## 45544 S75801D
## 45545 S75801S
## 45546 S75802A
## 45547 S75802D
## 45548 S75802S
## 45549 S75809A
## 45550 S75809D
## 45551 S75809S
## 45552 S75811A
## 45553 S75811D
## 45554 S75811S
## 45555 S75812A
## 45556 S75812D
## 45557 S75812S
## 45558 S75819A
## 45559 S75819D
## 45560 S75819S
## 45561 S75891A
## 45562 S75891D
## 45563 S75891S
## 45564 S75892A
## 45565 S75892D
## 45566 S75892S
## 45567 S75899A
## 45568 S75899D
## 45569 S75899S
## 45570 S75901A
## 45571 S75901D
## 45572 S75901S
## 45573 S75902A
## 45574 S75902D
## 45575 S75902S
## 45576 S75909A
## 45577 S75909D
## 45578 S75909S
## 45579 S75911A
## 45580 S75911D
## 45581 S75911S
## 45582 S75912A
## 45583 S75912D
## 45584 S75912S
## 45585 S75919A
## 45586 S75919D
## 45587 S75919S
## 45588 S75991A
## 45589 S75991D
## 45590 S75991S
## 45591 S75992A
## 45592 S75992D
## 45593 S75992S
## 45594 S75999A
## 45595 S75999D
## 45596 S75999S
## 45597 S76001A
## 45598 S76001D
## 45599 S76001S
## 45600 S76002A
## 45601 S76002D
## 45602 S76002S
## 45603 S76009A
## 45604 S76009D
## 45605 S76009S
## 45606 S76011A
## 45607 S76011D
## 45608 S76011S
## 45609 S76012A
## 45610 S76012D
## 45611 S76012S
## 45612 S76019A
## 45613 S76019D
## 45614 S76019S
## 45615 S76021A
## 45616 S76021D
## 45617 S76021S
## 45618 S76022A
## 45619 S76022D
## 45620 S76022S
## 45621 S76029A
## 45622 S76029D
## 45623 S76029S
## 45624 S76091A
## 45625 S76091D
## 45626 S76091S
## 45627 S76092A
## 45628 S76092D
## 45629 S76092S
## 45630 S76099A
## 45631 S76099D
## 45632 S76099S
## 45633 S76101A
## 45634 S76101D
## 45635 S76101S
## 45636 S76102A
## 45637 S76102D
## 45638 S76102S
## 45639 S76109A
## 45640 S76109D
## 45641 S76109S
## 45642 S76111A
## 45643 S76111D
## 45644 S76111S
## 45645 S76112A
## 45646 S76112D
## 45647 S76112S
## 45648 S76119A
## 45649 S76119D
## 45650 S76119S
## 45651 S76121A
## 45652 S76121D
## 45653 S76121S
## 45654 S76122A
## 45655 S76122D
## 45656 S76122S
## 45657 S76129A
## 45658 S76129D
## 45659 S76129S
## 45660 S76191A
## 45661 S76191D
## 45662 S76191S
## 45663 S76192A
## 45664 S76192D
## 45665 S76192S
## 45666 S76199A
## 45667 S76199D
## 45668 S76199S
## 45669 S76201A
## 45670 S76201D
## 45671 S76201S
## 45672 S76202A
## 45673 S76202D
## 45674 S76202S
## 45675 S76209A
## 45676 S76209D
## 45677 S76209S
## 45678 S76211A
## 45679 S76211D
## 45680 S76211S
## 45681 S76212A
## 45682 S76212D
## 45683 S76212S
## 45684 S76219A
## 45685 S76219D
## 45686 S76219S
## 45687 S76221A
## 45688 S76221D
## 45689 S76221S
## 45690 S76222A
## 45691 S76222D
## 45692 S76222S
## 45693 S76229A
## 45694 S76229D
## 45695 S76229S
## 45696 S76291A
## 45697 S76291D
## 45698 S76291S
## 45699 S76292A
## 45700 S76292D
## 45701 S76292S
## 45702 S76299A
## 45703 S76299D
## 45704 S76299S
## 45705 S76301A
## 45706 S76301D
## 45707 S76301S
## 45708 S76302A
## 45709 S76302D
## 45710 S76302S
## 45711 S76309A
## 45712 S76309D
## 45713 S76309S
## 45714 S76311A
## 45715 S76311D
## 45716 S76311S
## 45717 S76312A
## 45718 S76312D
## 45719 S76312S
## 45720 S76319A
## 45721 S76319D
## 45722 S76319S
## 45723 S76321A
## 45724 S76321D
## 45725 S76321S
## 45726 S76322A
## 45727 S76322D
## 45728 S76322S
## 45729 S76329A
## 45730 S76329D
## 45731 S76329S
## 45732 S76391A
## 45733 S76391D
## 45734 S76391S
## 45735 S76392A
## 45736 S76392D
## 45737 S76392S
## 45738 S76399A
## 45739 S76399D
## 45740 S76399S
## 45741 S76801A
## 45742 S76801D
## 45743 S76801S
## 45744 S76802A
## 45745 S76802D
## 45746 S76802S
## 45747 S76809A
## 45748 S76809D
## 45749 S76809S
## 45750 S76811A
## 45751 S76811D
## 45752 S76811S
## 45753 S76812A
## 45754 S76812D
## 45755 S76812S
## 45756 S76819A
## 45757 S76819D
## 45758 S76819S
## 45759 S76821A
## 45760 S76821D
## 45761 S76821S
## 45762 S76822A
## 45763 S76822D
## 45764 S76822S
## 45765 S76829A
## 45766 S76829D
## 45767 S76829S
## 45768 S76891A
## 45769 S76891D
## 45770 S76891S
## 45771 S76892A
## 45772 S76892D
## 45773 S76892S
## 45774 S76899A
## 45775 S76899D
## 45776 S76899S
## 45777 S76901A
## 45778 S76901D
## 45779 S76901S
## 45780 S76902A
## 45781 S76902D
## 45782 S76902S
## 45783 S76909A
## 45784 S76909D
## 45785 S76909S
## 45786 S76911A
## 45787 S76911D
## 45788 S76911S
## 45789 S76912A
## 45790 S76912D
## 45791 S76912S
## 45792 S76919A
## 45793 S76919D
## 45794 S76919S
## 45795 S76921A
## 45796 S76921D
## 45797 S76921S
## 45798 S76922A
## 45799 S76922D
## 45800 S76922S
## 45801 S76929A
## 45802 S76929D
## 45803 S76929S
## 45804 S76991A
## 45805 S76991D
## 45806 S76991S
## 45807 S76992A
## 45808 S76992D
## 45809 S76992S
## 45810 S76999A
## 45811 S76999D
## 45812 S76999S
## 45813 S7700XA
## 45814 S7700XD
## 45815 S7700XS
## 45816 S7701XA
## 45817 S7701XD
## 45818 S7701XS
## 45819 S7702XA
## 45820 S7702XD
## 45821 S7702XS
## 45822 S7710XA
## 45823 S7710XD
## 45824 S7710XS
## 45825 S7711XA
## 45826 S7711XD
## 45827 S7711XS
## 45828 S7712XA
## 45829 S7712XD
## 45830 S7712XS
## 45831 S7720XA
## 45832 S7720XD
## 45833 S7720XS
## 45834 S7721XA
## 45835 S7721XD
## 45836 S7721XS
## 45837 S7722XA
## 45838 S7722XD
## 45839 S7722XS
## 45840 S78011A
## 45841 S78011D
## 45842 S78011S
## 45843 S78012A
## 45844 S78012D
## 45845 S78012S
## 45846 S78019A
## 45847 S78019D
## 45848 S78019S
## 45849 S78021A
## 45850 S78021D
## 45851 S78021S
## 45852 S78022A
## 45853 S78022D
## 45854 S78022S
## 45855 S78029A
## 45856 S78029D
## 45857 S78029S
## 45858 S78111A
## 45859 S78111D
## 45860 S78111S
## 45861 S78112A
## 45862 S78112D
## 45863 S78112S
## 45864 S78119A
## 45865 S78119D
## 45866 S78119S
## 45867 S78121A
## 45868 S78121D
## 45869 S78121S
## 45870 S78122A
## 45871 S78122D
## 45872 S78122S
## 45873 S78129A
## 45874 S78129D
## 45875 S78129S
## 45876 S78911A
## 45877 S78911D
## 45878 S78911S
## 45879 S78912A
## 45880 S78912D
## 45881 S78912S
## 45882 S78919A
## 45883 S78919D
## 45884 S78919S
## 45885 S78921A
## 45886 S78921D
## 45887 S78921S
## 45888 S78922A
## 45889 S78922D
## 45890 S78922S
## 45891 S78929A
## 45892 S78929D
## 45893 S78929S
## 45894 S79001A
## 45895 S79001D
## 45896 S79001G
## 45897 S79001K
## 45898 S79001P
## 45899 S79001S
## 45900 S79002A
## 45901 S79002D
## 45902 S79002G
## 45903 S79002K
## 45904 S79002P
## 45905 S79002S
## 45906 S79009A
## 45907 S79009D
## 45908 S79009G
## 45909 S79009K
## 45910 S79009P
## 45911 S79009S
## 45912 S79011A
## 45913 S79011D
## 45914 S79011G
## 45915 S79011K
## 45916 S79011P
## 45917 S79011S
## 45918 S79012A
## 45919 S79012D
## 45920 S79012G
## 45921 S79012K
## 45922 S79012P
## 45923 S79012S
## 45924 S79019A
## 45925 S79019D
## 45926 S79019G
## 45927 S79019K
## 45928 S79019P
## 45929 S79019S
## 45930 S79091A
## 45931 S79091D
## 45932 S79091G
## 45933 S79091K
## 45934 S79091P
## 45935 S79091S
## 45936 S79092A
## 45937 S79092D
## 45938 S79092G
## 45939 S79092K
## 45940 S79092P
## 45941 S79092S
## 45942 S79099A
## 45943 S79099D
## 45944 S79099G
## 45945 S79099K
## 45946 S79099P
## 45947 S79099S
## 45948 S79101A
## 45949 S79101D
## 45950 S79101G
## 45951 S79101K
## 45952 S79101P
## 45953 S79101S
## 45954 S79102A
## 45955 S79102D
## 45956 S79102G
## 45957 S79102K
## 45958 S79102P
## 45959 S79102S
## 45960 S79109A
## 45961 S79109D
## 45962 S79109G
## 45963 S79109K
## 45964 S79109P
## 45965 S79109S
## 45966 S79111A
## 45967 S79111D
## 45968 S79111G
## 45969 S79111K
## 45970 S79111P
## 45971 S79111S
## 45972 S79112A
## 45973 S79112D
## 45974 S79112G
## 45975 S79112K
## 45976 S79112P
## 45977 S79112S
## 45978 S79119A
## 45979 S79119D
## 45980 S79119G
## 45981 S79119K
## 45982 S79119P
## 45983 S79119S
## 45984 S79121A
## 45985 S79121D
## 45986 S79121G
## 45987 S79121K
## 45988 S79121P
## 45989 S79121S
## 45990 S79122A
## 45991 S79122D
## 45992 S79122G
## 45993 S79122K
## 45994 S79122P
## 45995 S79122S
## 45996 S79129A
## 45997 S79129D
## 45998 S79129G
## 45999 S79129K
## 46000 S79129P
## 46001 S79129S
## 46002 S79131A
## 46003 S79131D
## 46004 S79131G
## 46005 S79131K
## 46006 S79131P
## 46007 S79131S
## 46008 S79132A
## 46009 S79132D
## 46010 S79132G
## 46011 S79132K
## 46012 S79132P
## 46013 S79132S
## 46014 S79139A
## 46015 S79139D
## 46016 S79139G
## 46017 S79139K
## 46018 S79139P
## 46019 S79139S
## 46020 S79141A
## 46021 S79141D
## 46022 S79141G
## 46023 S79141K
## 46024 S79141P
## 46025 S79141S
## 46026 S79142A
## 46027 S79142D
## 46028 S79142G
## 46029 S79142K
## 46030 S79142P
## 46031 S79142S
## 46032 S79149A
## 46033 S79149D
## 46034 S79149G
## 46035 S79149K
## 46036 S79149P
## 46037 S79149S
## 46038 S79191A
## 46039 S79191D
## 46040 S79191G
## 46041 S79191K
## 46042 S79191P
## 46043 S79191S
## 46044 S79192A
## 46045 S79192D
## 46046 S79192G
## 46047 S79192K
## 46048 S79192P
## 46049 S79192S
## 46050 S79199A
## 46051 S79199D
## 46052 S79199G
## 46053 S79199K
## 46054 S79199P
## 46055 S79199S
## 46056 S79811A
## 46057 S79811D
## 46058 S79811S
## 46059 S79812A
## 46060 S79812D
## 46061 S79812S
## 46062 S79819A
## 46063 S79819D
## 46064 S79819S
## 46065 S79821A
## 46066 S79821D
## 46067 S79821S
## 46068 S79822A
## 46069 S79822D
## 46070 S79822S
## 46071 S79829A
## 46072 S79829D
## 46073 S79829S
## 46074 S79911A
## 46075 S79911D
## 46076 S79911S
## 46077 S79912A
## 46078 S79912D
## 46079 S79912S
## 46080 S79919A
## 46081 S79919D
## 46082 S79919S
## 46083 S79921A
## 46084 S79921D
## 46085 S79921S
## 46086 S79922A
## 46087 S79922D
## 46088 S79922S
## 46089 S79929A
## 46090 S79929D
## 46091 S79929S
## 46092 S8000XA
## 46093 S8000XD
## 46094 S8000XS
## 46095 S8001XA
## 46096 S8001XD
## 46097 S8001XS
## 46098 S8002XA
## 46099 S8002XD
## 46100 S8002XS
## 46101 S8010XA
## 46102 S8010XD
## 46103 S8010XS
## 46104 S8011XA
## 46105 S8011XD
## 46106 S8011XS
## 46107 S8012XA
## 46108 S8012XD
## 46109 S8012XS
## 46110 S80211A
## 46111 S80211D
## 46112 S80211S
## 46113 S80212A
## 46114 S80212D
## 46115 S80212S
## 46116 S80219A
## 46117 S80219D
## 46118 S80219S
## 46119 S80221A
## 46120 S80221D
## 46121 S80221S
## 46122 S80222A
## 46123 S80222D
## 46124 S80222S
## 46125 S80229A
## 46126 S80229D
## 46127 S80229S
## 46128 S80241A
## 46129 S80241D
## 46130 S80241S
## 46131 S80242A
## 46132 S80242D
## 46133 S80242S
## 46134 S80249A
## 46135 S80249D
## 46136 S80249S
## 46137 S80251A
## 46138 S80251D
## 46139 S80251S
## 46140 S80252A
## 46141 S80252D
## 46142 S80252S
## 46143 S80259A
## 46144 S80259D
## 46145 S80259S
## 46146 S80261A
## 46147 S80261D
## 46148 S80261S
## 46149 S80262A
## 46150 S80262D
## 46151 S80262S
## 46152 S80269A
## 46153 S80269D
## 46154 S80269S
## 46155 S80271A
## 46156 S80271D
## 46157 S80271S
## 46158 S80272A
## 46159 S80272D
## 46160 S80272S
## 46161 S80279A
## 46162 S80279D
## 46163 S80279S
## 46164 S80811A
## 46165 S80811D
## 46166 S80811S
## 46167 S80812A
## 46168 S80812D
## 46169 S80812S
## 46170 S80819A
## 46171 S80819D
## 46172 S80819S
## 46173 S80821A
## 46174 S80821D
## 46175 S80821S
## 46176 S80822A
## 46177 S80822D
## 46178 S80822S
## 46179 S80829A
## 46180 S80829D
## 46181 S80829S
## 46182 S80841A
## 46183 S80841D
## 46184 S80841S
## 46185 S80842A
## 46186 S80842D
## 46187 S80842S
## 46188 S80849A
## 46189 S80849D
## 46190 S80849S
## 46191 S80851A
## 46192 S80851D
## 46193 S80851S
## 46194 S80852A
## 46195 S80852D
## 46196 S80852S
## 46197 S80859A
## 46198 S80859D
## 46199 S80859S
## 46200 S80861A
## 46201 S80861D
## 46202 S80861S
## 46203 S80862A
## 46204 S80862D
## 46205 S80862S
## 46206 S80869A
## 46207 S80869D
## 46208 S80869S
## 46209 S80871A
## 46210 S80871D
## 46211 S80871S
## 46212 S80872A
## 46213 S80872D
## 46214 S80872S
## 46215 S80879A
## 46216 S80879D
## 46217 S80879S
## 46218 S80911A
## 46219 S80911D
## 46220 S80911S
## 46221 S80912A
## 46222 S80912D
## 46223 S80912S
## 46224 S80919A
## 46225 S80919D
## 46226 S80919S
## 46227 S80921A
## 46228 S80921D
## 46229 S80921S
## 46230 S80922A
## 46231 S80922D
## 46232 S80922S
## 46233 S80929A
## 46234 S80929D
## 46235 S80929S
## 46236 S81001A
## 46237 S81001D
## 46238 S81001S
## 46239 S81002A
## 46240 S81002D
## 46241 S81002S
## 46242 S81009A
## 46243 S81009D
## 46244 S81009S
## 46245 S81011A
## 46246 S81011D
## 46247 S81011S
## 46248 S81012A
## 46249 S81012D
## 46250 S81012S
## 46251 S81019A
## 46252 S81019D
## 46253 S81019S
## 46254 S81021A
## 46255 S81021D
## 46256 S81021S
## 46257 S81022A
## 46258 S81022D
## 46259 S81022S
## 46260 S81029A
## 46261 S81029D
## 46262 S81029S
## 46263 S81031A
## 46264 S81031D
## 46265 S81031S
## 46266 S81032A
## 46267 S81032D
## 46268 S81032S
## 46269 S81039A
## 46270 S81039D
## 46271 S81039S
## 46272 S81041A
## 46273 S81041D
## 46274 S81041S
## 46275 S81042A
## 46276 S81042D
## 46277 S81042S
## 46278 S81049A
## 46279 S81049D
## 46280 S81049S
## 46281 S81051A
## 46282 S81051D
## 46283 S81051S
## 46284 S81052A
## 46285 S81052D
## 46286 S81052S
## 46287 S81059A
## 46288 S81059D
## 46289 S81059S
## 46290 S81801A
## 46291 S81801D
## 46292 S81801S
## 46293 S81802A
## 46294 S81802D
## 46295 S81802S
## 46296 S81809A
## 46297 S81809D
## 46298 S81809S
## 46299 S81811A
## 46300 S81811D
## 46301 S81811S
## 46302 S81812A
## 46303 S81812D
## 46304 S81812S
## 46305 S81819A
## 46306 S81819D
## 46307 S81819S
## 46308 S81821A
## 46309 S81821D
## 46310 S81821S
## 46311 S81822A
## 46312 S81822D
## 46313 S81822S
## 46314 S81829A
## 46315 S81829D
## 46316 S81829S
## 46317 S81831A
## 46318 S81831D
## 46319 S81831S
## 46320 S81832A
## 46321 S81832D
## 46322 S81832S
## 46323 S81839A
## 46324 S81839D
## 46325 S81839S
## 46326 S81841A
## 46327 S81841D
## 46328 S81841S
## 46329 S81842A
## 46330 S81842D
## 46331 S81842S
## 46332 S81849A
## 46333 S81849D
## 46334 S81849S
## 46335 S81851A
## 46336 S81851D
## 46337 S81851S
## 46338 S81852A
## 46339 S81852D
## 46340 S81852S
## 46341 S81859A
## 46342 S81859D
## 46343 S81859S
## 46344 S82001A
## 46345 S82001B
## 46346 S82001C
## 46347 S82001D
## 46348 S82001E
## 46349 S82001F
## 46350 S82001G
## 46351 S82001H
## 46352 S82001J
## 46353 S82001K
## 46354 S82001M
## 46355 S82001N
## 46356 S82001P
## 46357 S82001Q
## 46358 S82001R
## 46359 S82001S
## 46360 S82002A
## 46361 S82002B
## 46362 S82002C
## 46363 S82002D
## 46364 S82002E
## 46365 S82002F
## 46366 S82002G
## 46367 S82002H
## 46368 S82002J
## 46369 S82002K
## 46370 S82002M
## 46371 S82002N
## 46372 S82002P
## 46373 S82002Q
## 46374 S82002R
## 46375 S82002S
## 46376 S82009A
## 46377 S82009B
## 46378 S82009C
## 46379 S82009D
## 46380 S82009E
## 46381 S82009F
## 46382 S82009G
## 46383 S82009H
## 46384 S82009J
## 46385 S82009K
## 46386 S82009M
## 46387 S82009N
## 46388 S82009P
## 46389 S82009Q
## 46390 S82009R
## 46391 S82009S
## 46392 S82011A
## 46393 S82011B
## 46394 S82011C
## 46395 S82011D
## 46396 S82011E
## 46397 S82011F
## 46398 S82011G
## 46399 S82011H
## 46400 S82011J
## 46401 S82011K
## 46402 S82011M
## 46403 S82011N
## 46404 S82011P
## 46405 S82011Q
## 46406 S82011R
## 46407 S82011S
## 46408 S82012A
## 46409 S82012B
## 46410 S82012C
## 46411 S82012D
## 46412 S82012E
## 46413 S82012F
## 46414 S82012G
## 46415 S82012H
## 46416 S82012J
## 46417 S82012K
## 46418 S82012M
## 46419 S82012N
## 46420 S82012P
## 46421 S82012Q
## 46422 S82012R
## 46423 S82012S
## 46424 S82013A
## 46425 S82013B
## 46426 S82013C
## 46427 S82013D
## 46428 S82013E
## 46429 S82013F
## 46430 S82013G
## 46431 S82013H
## 46432 S82013J
## 46433 S82013K
## 46434 S82013M
## 46435 S82013N
## 46436 S82013P
## 46437 S82013Q
## 46438 S82013R
## 46439 S82013S
## 46440 S82014A
## 46441 S82014B
## 46442 S82014C
## 46443 S82014D
## 46444 S82014E
## 46445 S82014F
## 46446 S82014G
## 46447 S82014H
## 46448 S82014J
## 46449 S82014K
## 46450 S82014M
## 46451 S82014N
## 46452 S82014P
## 46453 S82014Q
## 46454 S82014R
## 46455 S82014S
## 46456 S82015A
## 46457 S82015B
## 46458 S82015C
## 46459 S82015D
## 46460 S82015E
## 46461 S82015F
## 46462 S82015G
## 46463 S82015H
## 46464 S82015J
## 46465 S82015K
## 46466 S82015M
## 46467 S82015N
## 46468 S82015P
## 46469 S82015Q
## 46470 S82015R
## 46471 S82015S
## 46472 S82016A
## 46473 S82016B
## 46474 S82016C
## 46475 S82016D
## 46476 S82016E
## 46477 S82016F
## 46478 S82016G
## 46479 S82016H
## 46480 S82016J
## 46481 S82016K
## 46482 S82016M
## 46483 S82016N
## 46484 S82016P
## 46485 S82016Q
## 46486 S82016R
## 46487 S82016S
## 46488 S82021A
## 46489 S82021B
## 46490 S82021C
## 46491 S82021D
## 46492 S82021E
## 46493 S82021F
## 46494 S82021G
## 46495 S82021H
## 46496 S82021J
## 46497 S82021K
## 46498 S82021M
## 46499 S82021N
## 46500 S82021P
## 46501 S82021Q
## 46502 S82021R
## 46503 S82021S
## 46504 S82022A
## 46505 S82022B
## 46506 S82022C
## 46507 S82022D
## 46508 S82022E
## 46509 S82022F
## 46510 S82022G
## 46511 S82022H
## 46512 S82022J
## 46513 S82022K
## 46514 S82022M
## 46515 S82022N
## 46516 S82022P
## 46517 S82022Q
## 46518 S82022R
## 46519 S82022S
## 46520 S82023A
## 46521 S82023B
## 46522 S82023C
## 46523 S82023D
## 46524 S82023E
## 46525 S82023F
## 46526 S82023G
## 46527 S82023H
## 46528 S82023J
## 46529 S82023K
## 46530 S82023M
## 46531 S82023N
## 46532 S82023P
## 46533 S82023Q
## 46534 S82023R
## 46535 S82023S
## 46536 S82024A
## 46537 S82024B
## 46538 S82024C
## 46539 S82024D
## 46540 S82024E
## 46541 S82024F
## 46542 S82024G
## 46543 S82024H
## 46544 S82024J
## 46545 S82024K
## 46546 S82024M
## 46547 S82024N
## 46548 S82024P
## 46549 S82024Q
## 46550 S82024R
## 46551 S82024S
## 46552 S82025A
## 46553 S82025B
## 46554 S82025C
## 46555 S82025D
## 46556 S82025E
## 46557 S82025F
## 46558 S82025G
## 46559 S82025H
## 46560 S82025J
## 46561 S82025K
## 46562 S82025M
## 46563 S82025N
## 46564 S82025P
## 46565 S82025Q
## 46566 S82025R
## 46567 S82025S
## 46568 S82026A
## 46569 S82026B
## 46570 S82026C
## 46571 S82026D
## 46572 S82026E
## 46573 S82026F
## 46574 S82026G
## 46575 S82026H
## 46576 S82026J
## 46577 S82026K
## 46578 S82026M
## 46579 S82026N
## 46580 S82026P
## 46581 S82026Q
## 46582 S82026R
## 46583 S82026S
## 46584 S82031A
## 46585 S82031B
## 46586 S82031C
## 46587 S82031D
## 46588 S82031E
## 46589 S82031F
## 46590 S82031G
## 46591 S82031H
## 46592 S82031J
## 46593 S82031K
## 46594 S82031M
## 46595 S82031N
## 46596 S82031P
## 46597 S82031Q
## 46598 S82031R
## 46599 S82031S
## 46600 S82032A
## 46601 S82032B
## 46602 S82032C
## 46603 S82032D
## 46604 S82032E
## 46605 S82032F
## 46606 S82032G
## 46607 S82032H
## 46608 S82032J
## 46609 S82032K
## 46610 S82032M
## 46611 S82032N
## 46612 S82032P
## 46613 S82032Q
## 46614 S82032R
## 46615 S82032S
## 46616 S82033A
## 46617 S82033B
## 46618 S82033C
## 46619 S82033D
## 46620 S82033E
## 46621 S82033F
## 46622 S82033G
## 46623 S82033H
## 46624 S82033J
## 46625 S82033K
## 46626 S82033M
## 46627 S82033N
## 46628 S82033P
## 46629 S82033Q
## 46630 S82033R
## 46631 S82033S
## 46632 S82034A
## 46633 S82034B
## 46634 S82034C
## 46635 S82034D
## 46636 S82034E
## 46637 S82034F
## 46638 S82034G
## 46639 S82034H
## 46640 S82034J
## 46641 S82034K
## 46642 S82034M
## 46643 S82034N
## 46644 S82034P
## 46645 S82034Q
## 46646 S82034R
## 46647 S82034S
## 46648 S82035A
## 46649 S82035B
## 46650 S82035C
## 46651 S82035D
## 46652 S82035E
## 46653 S82035F
## 46654 S82035G
## 46655 S82035H
## 46656 S82035J
## 46657 S82035K
## 46658 S82035M
## 46659 S82035N
## 46660 S82035P
## 46661 S82035Q
## 46662 S82035R
## 46663 S82035S
## 46664 S82036A
## 46665 S82036B
## 46666 S82036C
## 46667 S82036D
## 46668 S82036E
## 46669 S82036F
## 46670 S82036G
## 46671 S82036H
## 46672 S82036J
## 46673 S82036K
## 46674 S82036M
## 46675 S82036N
## 46676 S82036P
## 46677 S82036Q
## 46678 S82036R
## 46679 S82036S
## 46680 S82041A
## 46681 S82041B
## 46682 S82041C
## 46683 S82041D
## 46684 S82041E
## 46685 S82041F
## 46686 S82041G
## 46687 S82041H
## 46688 S82041J
## 46689 S82041K
## 46690 S82041M
## 46691 S82041N
## 46692 S82041P
## 46693 S82041Q
## 46694 S82041R
## 46695 S82041S
## 46696 S82042A
## 46697 S82042B
## 46698 S82042C
## 46699 S82042D
## 46700 S82042E
## 46701 S82042F
## 46702 S82042G
## 46703 S82042H
## 46704 S82042J
## 46705 S82042K
## 46706 S82042M
## 46707 S82042N
## 46708 S82042P
## 46709 S82042Q
## 46710 S82042R
## 46711 S82042S
## 46712 S82043A
## 46713 S82043B
## 46714 S82043C
## 46715 S82043D
## 46716 S82043E
## 46717 S82043F
## 46718 S82043G
## 46719 S82043H
## 46720 S82043J
## 46721 S82043K
## 46722 S82043M
## 46723 S82043N
## 46724 S82043P
## 46725 S82043Q
## 46726 S82043R
## 46727 S82043S
## 46728 S82044A
## 46729 S82044B
## 46730 S82044C
## 46731 S82044D
## 46732 S82044E
## 46733 S82044F
## 46734 S82044G
## 46735 S82044H
## 46736 S82044J
## 46737 S82044K
## 46738 S82044M
## 46739 S82044N
## 46740 S82044P
## 46741 S82044Q
## 46742 S82044R
## 46743 S82044S
## 46744 S82045A
## 46745 S82045B
## 46746 S82045C
## 46747 S82045D
## 46748 S82045E
## 46749 S82045F
## 46750 S82045G
## 46751 S82045H
## 46752 S82045J
## 46753 S82045K
## 46754 S82045M
## 46755 S82045N
## 46756 S82045P
## 46757 S82045Q
## 46758 S82045R
## 46759 S82045S
## 46760 S82046A
## 46761 S82046B
## 46762 S82046C
## 46763 S82046D
## 46764 S82046E
## 46765 S82046F
## 46766 S82046G
## 46767 S82046H
## 46768 S82046J
## 46769 S82046K
## 46770 S82046M
## 46771 S82046N
## 46772 S82046P
## 46773 S82046Q
## 46774 S82046R
## 46775 S82046S
## 46776 S82091A
## 46777 S82091B
## 46778 S82091C
## 46779 S82091D
## 46780 S82091E
## 46781 S82091F
## 46782 S82091G
## 46783 S82091H
## 46784 S82091J
## 46785 S82091K
## 46786 S82091M
## 46787 S82091N
## 46788 S82091P
## 46789 S82091Q
## 46790 S82091R
## 46791 S82091S
## 46792 S82092A
## 46793 S82092B
## 46794 S82092C
## 46795 S82092D
## 46796 S82092E
## 46797 S82092F
## 46798 S82092G
## 46799 S82092H
## 46800 S82092J
## 46801 S82092K
## 46802 S82092M
## 46803 S82092N
## 46804 S82092P
## 46805 S82092Q
## 46806 S82092R
## 46807 S82092S
## 46808 S82099A
## 46809 S82099B
## 46810 S82099C
## 46811 S82099D
## 46812 S82099E
## 46813 S82099F
## 46814 S82099G
## 46815 S82099H
## 46816 S82099J
## 46817 S82099K
## 46818 S82099M
## 46819 S82099N
## 46820 S82099P
## 46821 S82099Q
## 46822 S82099R
## 46823 S82099S
## 46824 S82101A
## 46825 S82101B
## 46826 S82101C
## 46827 S82101D
## 46828 S82101E
## 46829 S82101F
## 46830 S82101G
## 46831 S82101H
## 46832 S82101J
## 46833 S82101K
## 46834 S82101M
## 46835 S82101N
## 46836 S82101P
## 46837 S82101Q
## 46838 S82101R
## 46839 S82101S
## 46840 S82102A
## 46841 S82102B
## 46842 S82102C
## 46843 S82102D
## 46844 S82102E
## 46845 S82102F
## 46846 S82102G
## 46847 S82102H
## 46848 S82102J
## 46849 S82102K
## 46850 S82102M
## 46851 S82102N
## 46852 S82102P
## 46853 S82102Q
## 46854 S82102R
## 46855 S82102S
## 46856 S82109A
## 46857 S82109B
## 46858 S82109C
## 46859 S82109D
## 46860 S82109E
## 46861 S82109F
## 46862 S82109G
## 46863 S82109H
## 46864 S82109J
## 46865 S82109K
## 46866 S82109M
## 46867 S82109N
## 46868 S82109P
## 46869 S82109Q
## 46870 S82109R
## 46871 S82109S
## 46872 S82111A
## 46873 S82111B
## 46874 S82111C
## 46875 S82111D
## 46876 S82111E
## 46877 S82111F
## 46878 S82111G
## 46879 S82111H
## 46880 S82111J
## 46881 S82111K
## 46882 S82111M
## 46883 S82111N
## 46884 S82111P
## 46885 S82111Q
## 46886 S82111R
## 46887 S82111S
## 46888 S82112A
## 46889 S82112B
## 46890 S82112C
## 46891 S82112D
## 46892 S82112E
## 46893 S82112F
## 46894 S82112G
## 46895 S82112H
## 46896 S82112J
## 46897 S82112K
## 46898 S82112M
## 46899 S82112N
## 46900 S82112P
## 46901 S82112Q
## 46902 S82112R
## 46903 S82112S
## 46904 S82113A
## 46905 S82113B
## 46906 S82113C
## 46907 S82113D
## 46908 S82113E
## 46909 S82113F
## 46910 S82113G
## 46911 S82113H
## 46912 S82113J
## 46913 S82113K
## 46914 S82113M
## 46915 S82113N
## 46916 S82113P
## 46917 S82113Q
## 46918 S82113R
## 46919 S82113S
## 46920 S82114A
## 46921 S82114B
## 46922 S82114C
## 46923 S82114D
## 46924 S82114E
## 46925 S82114F
## 46926 S82114G
## 46927 S82114H
## 46928 S82114J
## 46929 S82114K
## 46930 S82114M
## 46931 S82114N
## 46932 S82114P
## 46933 S82114Q
## 46934 S82114R
## 46935 S82114S
## 46936 S82115A
## 46937 S82115B
## 46938 S82115C
## 46939 S82115D
## 46940 S82115E
## 46941 S82115F
## 46942 S82115G
## 46943 S82115H
## 46944 S82115J
## 46945 S82115K
## 46946 S82115M
## 46947 S82115N
## 46948 S82115P
## 46949 S82115Q
## 46950 S82115R
## 46951 S82115S
## 46952 S82116A
## 46953 S82116B
## 46954 S82116C
## 46955 S82116D
## 46956 S82116E
## 46957 S82116F
## 46958 S82116G
## 46959 S82116H
## 46960 S82116J
## 46961 S82116K
## 46962 S82116M
## 46963 S82116N
## 46964 S82116P
## 46965 S82116Q
## 46966 S82116R
## 46967 S82116S
## 46968 S82121A
## 46969 S82121B
## 46970 S82121C
## 46971 S82121D
## 46972 S82121E
## 46973 S82121F
## 46974 S82121G
## 46975 S82121H
## 46976 S82121J
## 46977 S82121K
## 46978 S82121M
## 46979 S82121N
## 46980 S82121P
## 46981 S82121Q
## 46982 S82121R
## 46983 S82121S
## 46984 S82122A
## 46985 S82122B
## 46986 S82122C
## 46987 S82122D
## 46988 S82122E
## 46989 S82122F
## 46990 S82122G
## 46991 S82122H
## 46992 S82122J
## 46993 S82122K
## 46994 S82122M
## 46995 S82122N
## 46996 S82122P
## 46997 S82122Q
## 46998 S82122R
## 46999 S82122S
## 47000 S82123A
## 47001 S82123B
## 47002 S82123C
## 47003 S82123D
## 47004 S82123E
## 47005 S82123F
## 47006 S82123G
## 47007 S82123H
## 47008 S82123J
## 47009 S82123K
## 47010 S82123M
## 47011 S82123N
## 47012 S82123P
## 47013 S82123Q
## 47014 S82123R
## 47015 S82123S
## 47016 S82124A
## 47017 S82124B
## 47018 S82124C
## 47019 S82124D
## 47020 S82124E
## 47021 S82124F
## 47022 S82124G
## 47023 S82124H
## 47024 S82124J
## 47025 S82124K
## 47026 S82124M
## 47027 S82124N
## 47028 S82124P
## 47029 S82124Q
## 47030 S82124R
## 47031 S82124S
## 47032 S82125A
## 47033 S82125B
## 47034 S82125C
## 47035 S82125D
## 47036 S82125E
## 47037 S82125F
## 47038 S82125G
## 47039 S82125H
## 47040 S82125J
## 47041 S82125K
## 47042 S82125M
## 47043 S82125N
## 47044 S82125P
## 47045 S82125Q
## 47046 S82125R
## 47047 S82125S
## 47048 S82126A
## 47049 S82126B
## 47050 S82126C
## 47051 S82126D
## 47052 S82126E
## 47053 S82126F
## 47054 S82126G
## 47055 S82126H
## 47056 S82126J
## 47057 S82126K
## 47058 S82126M
## 47059 S82126N
## 47060 S82126P
## 47061 S82126Q
## 47062 S82126R
## 47063 S82126S
## 47064 S82131A
## 47065 S82131B
## 47066 S82131C
## 47067 S82131D
## 47068 S82131E
## 47069 S82131F
## 47070 S82131G
## 47071 S82131H
## 47072 S82131J
## 47073 S82131K
## 47074 S82131M
## 47075 S82131N
## 47076 S82131P
## 47077 S82131Q
## 47078 S82131R
## 47079 S82131S
## 47080 S82132A
## 47081 S82132B
## 47082 S82132C
## 47083 S82132D
## 47084 S82132E
## 47085 S82132F
## 47086 S82132G
## 47087 S82132H
## 47088 S82132J
## 47089 S82132K
## 47090 S82132M
## 47091 S82132N
## 47092 S82132P
## 47093 S82132Q
## 47094 S82132R
## 47095 S82132S
## 47096 S82133A
## 47097 S82133B
## 47098 S82133C
## 47099 S82133D
## 47100 S82133E
## 47101 S82133F
## 47102 S82133G
## 47103 S82133H
## 47104 S82133J
## 47105 S82133K
## 47106 S82133M
## 47107 S82133N
## 47108 S82133P
## 47109 S82133Q
## 47110 S82133R
## 47111 S82133S
## 47112 S82134A
## 47113 S82134B
## 47114 S82134C
## 47115 S82134D
## 47116 S82134E
## 47117 S82134F
## 47118 S82134G
## 47119 S82134H
## 47120 S82134J
## 47121 S82134K
## 47122 S82134M
## 47123 S82134N
## 47124 S82134P
## 47125 S82134Q
## 47126 S82134R
## 47127 S82134S
## 47128 S82135A
## 47129 S82135B
## 47130 S82135C
## 47131 S82135D
## 47132 S82135E
## 47133 S82135F
## 47134 S82135G
## 47135 S82135H
## 47136 S82135J
## 47137 S82135K
## 47138 S82135M
## 47139 S82135N
## 47140 S82135P
## 47141 S82135Q
## 47142 S82135R
## 47143 S82135S
## 47144 S82136A
## 47145 S82136B
## 47146 S82136C
## 47147 S82136D
## 47148 S82136E
## 47149 S82136F
## 47150 S82136G
## 47151 S82136H
## 47152 S82136J
## 47153 S82136K
## 47154 S82136M
## 47155 S82136N
## 47156 S82136P
## 47157 S82136Q
## 47158 S82136R
## 47159 S82136S
## 47160 S82141A
## 47161 S82141B
## 47162 S82141C
## 47163 S82141D
## 47164 S82141E
## 47165 S82141F
## 47166 S82141G
## 47167 S82141H
## 47168 S82141J
## 47169 S82141K
## 47170 S82141M
## 47171 S82141N
## 47172 S82141P
## 47173 S82141Q
## 47174 S82141R
## 47175 S82141S
## 47176 S82142A
## 47177 S82142B
## 47178 S82142C
## 47179 S82142D
## 47180 S82142E
## 47181 S82142F
## 47182 S82142G
## 47183 S82142H
## 47184 S82142J
## 47185 S82142K
## 47186 S82142M
## 47187 S82142N
## 47188 S82142P
## 47189 S82142Q
## 47190 S82142R
## 47191 S82142S
## 47192 S82143A
## 47193 S82143B
## 47194 S82143C
## 47195 S82143D
## 47196 S82143E
## 47197 S82143F
## 47198 S82143G
## 47199 S82143H
## 47200 S82143J
## 47201 S82143K
## 47202 S82143M
## 47203 S82143N
## 47204 S82143P
## 47205 S82143Q
## 47206 S82143R
## 47207 S82143S
## 47208 S82144A
## 47209 S82144B
## 47210 S82144C
## 47211 S82144D
## 47212 S82144E
## 47213 S82144F
## 47214 S82144G
## 47215 S82144H
## 47216 S82144J
## 47217 S82144K
## 47218 S82144M
## 47219 S82144N
## 47220 S82144P
## 47221 S82144Q
## 47222 S82144R
## 47223 S82144S
## 47224 S82145A
## 47225 S82145B
## 47226 S82145C
## 47227 S82145D
## 47228 S82145E
## 47229 S82145F
## 47230 S82145G
## 47231 S82145H
## 47232 S82145J
## 47233 S82145K
## 47234 S82145M
## 47235 S82145N
## 47236 S82145P
## 47237 S82145Q
## 47238 S82145R
## 47239 S82145S
## 47240 S82146A
## 47241 S82146B
## 47242 S82146C
## 47243 S82146D
## 47244 S82146E
## 47245 S82146F
## 47246 S82146G
## 47247 S82146H
## 47248 S82146J
## 47249 S82146K
## 47250 S82146M
## 47251 S82146N
## 47252 S82146P
## 47253 S82146Q
## 47254 S82146R
## 47255 S82146S
## 47256 S82151A
## 47257 S82151B
## 47258 S82151C
## 47259 S82151D
## 47260 S82151E
## 47261 S82151F
## 47262 S82151G
## 47263 S82151H
## 47264 S82151J
## 47265 S82151K
## 47266 S82151M
## 47267 S82151N
## 47268 S82151P
## 47269 S82151Q
## 47270 S82151R
## 47271 S82151S
## 47272 S82152A
## 47273 S82152B
## 47274 S82152C
## 47275 S82152D
## 47276 S82152E
## 47277 S82152F
## 47278 S82152G
## 47279 S82152H
## 47280 S82152J
## 47281 S82152K
## 47282 S82152M
## 47283 S82152N
## 47284 S82152P
## 47285 S82152Q
## 47286 S82152R
## 47287 S82152S
## 47288 S82153A
## 47289 S82153B
## 47290 S82153C
## 47291 S82153D
## 47292 S82153E
## 47293 S82153F
## 47294 S82153G
## 47295 S82153H
## 47296 S82153J
## 47297 S82153K
## 47298 S82153M
## 47299 S82153N
## 47300 S82153P
## 47301 S82153Q
## 47302 S82153R
## 47303 S82153S
## 47304 S82154A
## 47305 S82154B
## 47306 S82154C
## 47307 S82154D
## 47308 S82154E
## 47309 S82154F
## 47310 S82154G
## 47311 S82154H
## 47312 S82154J
## 47313 S82154K
## 47314 S82154M
## 47315 S82154N
## 47316 S82154P
## 47317 S82154Q
## 47318 S82154R
## 47319 S82154S
## 47320 S82155A
## 47321 S82155B
## 47322 S82155C
## 47323 S82155D
## 47324 S82155E
## 47325 S82155F
## 47326 S82155G
## 47327 S82155H
## 47328 S82155J
## 47329 S82155K
## 47330 S82155M
## 47331 S82155N
## 47332 S82155P
## 47333 S82155Q
## 47334 S82155R
## 47335 S82155S
## 47336 S82156A
## 47337 S82156B
## 47338 S82156C
## 47339 S82156D
## 47340 S82156E
## 47341 S82156F
## 47342 S82156G
## 47343 S82156H
## 47344 S82156J
## 47345 S82156K
## 47346 S82156M
## 47347 S82156N
## 47348 S82156P
## 47349 S82156Q
## 47350 S82156R
## 47351 S82156S
## 47352 S82161A
## 47353 S82161D
## 47354 S82161G
## 47355 S82161K
## 47356 S82161P
## 47357 S82161S
## 47358 S82162A
## 47359 S82162D
## 47360 S82162G
## 47361 S82162K
## 47362 S82162P
## 47363 S82162S
## 47364 S82169A
## 47365 S82169D
## 47366 S82169G
## 47367 S82169K
## 47368 S82169P
## 47369 S82169S
## 47370 S82191A
## 47371 S82191B
## 47372 S82191C
## 47373 S82191D
## 47374 S82191E
## 47375 S82191F
## 47376 S82191G
## 47377 S82191H
## 47378 S82191J
## 47379 S82191K
## 47380 S82191M
## 47381 S82191N
## 47382 S82191P
## 47383 S82191Q
## 47384 S82191R
## 47385 S82191S
## 47386 S82192A
## 47387 S82192B
## 47388 S82192C
## 47389 S82192D
## 47390 S82192E
## 47391 S82192F
## 47392 S82192G
## 47393 S82192H
## 47394 S82192J
## 47395 S82192K
## 47396 S82192M
## 47397 S82192N
## 47398 S82192P
## 47399 S82192Q
## 47400 S82192R
## 47401 S82192S
## 47402 S82199A
## 47403 S82199B
## 47404 S82199C
## 47405 S82199D
## 47406 S82199E
## 47407 S82199F
## 47408 S82199G
## 47409 S82199H
## 47410 S82199J
## 47411 S82199K
## 47412 S82199M
## 47413 S82199N
## 47414 S82199P
## 47415 S82199Q
## 47416 S82199R
## 47417 S82199S
## 47418 S82201A
## 47419 S82201B
## 47420 S82201C
## 47421 S82201D
## 47422 S82201E
## 47423 S82201F
## 47424 S82201G
## 47425 S82201H
## 47426 S82201J
## 47427 S82201K
## 47428 S82201M
## 47429 S82201N
## 47430 S82201P
## 47431 S82201Q
## 47432 S82201R
## 47433 S82201S
## 47434 S82202A
## 47435 S82202B
## 47436 S82202C
## 47437 S82202D
## 47438 S82202E
## 47439 S82202F
## 47440 S82202G
## 47441 S82202H
## 47442 S82202J
## 47443 S82202K
## 47444 S82202M
## 47445 S82202N
## 47446 S82202P
## 47447 S82202Q
## 47448 S82202R
## 47449 S82202S
## 47450 S82209A
## 47451 S82209B
## 47452 S82209C
## 47453 S82209D
## 47454 S82209E
## 47455 S82209F
## 47456 S82209G
## 47457 S82209H
## 47458 S82209J
## 47459 S82209K
## 47460 S82209M
## 47461 S82209N
## 47462 S82209P
## 47463 S82209Q
## 47464 S82209R
## 47465 S82209S
## 47466 S82221A
## 47467 S82221B
## 47468 S82221C
## 47469 S82221D
## 47470 S82221E
## 47471 S82221F
## 47472 S82221G
## 47473 S82221H
## 47474 S82221J
## 47475 S82221K
## 47476 S82221M
## 47477 S82221N
## 47478 S82221P
## 47479 S82221Q
## 47480 S82221R
## 47481 S82221S
## 47482 S82222A
## 47483 S82222B
## 47484 S82222C
## 47485 S82222D
## 47486 S82222E
## 47487 S82222F
## 47488 S82222G
## 47489 S82222H
## 47490 S82222J
## 47491 S82222K
## 47492 S82222M
## 47493 S82222N
## 47494 S82222P
## 47495 S82222Q
## 47496 S82222R
## 47497 S82222S
## 47498 S82223A
## 47499 S82223B
## 47500 S82223C
## 47501 S82223D
## 47502 S82223E
## 47503 S82223F
## 47504 S82223G
## 47505 S82223H
## 47506 S82223J
## 47507 S82223K
## 47508 S82223M
## 47509 S82223N
## 47510 S82223P
## 47511 S82223Q
## 47512 S82223R
## 47513 S82223S
## 47514 S82224A
## 47515 S82224B
## 47516 S82224C
## 47517 S82224D
## 47518 S82224E
## 47519 S82224F
## 47520 S82224G
## 47521 S82224H
## 47522 S82224J
## 47523 S82224K
## 47524 S82224M
## 47525 S82224N
## 47526 S82224P
## 47527 S82224Q
## 47528 S82224R
## 47529 S82224S
## 47530 S82225A
## 47531 S82225B
## 47532 S82225C
## 47533 S82225D
## 47534 S82225E
## 47535 S82225F
## 47536 S82225G
## 47537 S82225H
## 47538 S82225J
## 47539 S82225K
## 47540 S82225M
## 47541 S82225N
## 47542 S82225P
## 47543 S82225Q
## 47544 S82225R
## 47545 S82225S
## 47546 S82226A
## 47547 S82226B
## 47548 S82226C
## 47549 S82226D
## 47550 S82226E
## 47551 S82226F
## 47552 S82226G
## 47553 S82226H
## 47554 S82226J
## 47555 S82226K
## 47556 S82226M
## 47557 S82226N
## 47558 S82226P
## 47559 S82226Q
## 47560 S82226R
## 47561 S82226S
## 47562 S82231A
## 47563 S82231B
## 47564 S82231C
## 47565 S82231D
## 47566 S82231E
## 47567 S82231F
## 47568 S82231G
## 47569 S82231H
## 47570 S82231J
## 47571 S82231K
## 47572 S82231M
## 47573 S82231N
## 47574 S82231P
## 47575 S82231Q
## 47576 S82231R
## 47577 S82231S
## 47578 S82232A
## 47579 S82232B
## 47580 S82232C
## 47581 S82232D
## 47582 S82232E
## 47583 S82232F
## 47584 S82232G
## 47585 S82232H
## 47586 S82232J
## 47587 S82232K
## 47588 S82232M
## 47589 S82232N
## 47590 S82232P
## 47591 S82232Q
## 47592 S82232R
## 47593 S82232S
## 47594 S82233A
## 47595 S82233B
## 47596 S82233C
## 47597 S82233D
## 47598 S82233E
## 47599 S82233F
## 47600 S82233G
## 47601 S82233H
## 47602 S82233J
## 47603 S82233K
## 47604 S82233M
## 47605 S82233N
## 47606 S82233P
## 47607 S82233Q
## 47608 S82233R
## 47609 S82233S
## 47610 S82234A
## 47611 S82234B
## 47612 S82234C
## 47613 S82234D
## 47614 S82234E
## 47615 S82234F
## 47616 S82234G
## 47617 S82234H
## 47618 S82234J
## 47619 S82234K
## 47620 S82234M
## 47621 S82234N
## 47622 S82234P
## 47623 S82234Q
## 47624 S82234R
## 47625 S82234S
## 47626 S82235A
## 47627 S82235B
## 47628 S82235C
## 47629 S82235D
## 47630 S82235E
## 47631 S82235F
## 47632 S82235G
## 47633 S82235H
## 47634 S82235J
## 47635 S82235K
## 47636 S82235M
## 47637 S82235N
## 47638 S82235P
## 47639 S82235Q
## 47640 S82235R
## 47641 S82235S
## 47642 S82236A
## 47643 S82236B
## 47644 S82236C
## 47645 S82236D
## 47646 S82236E
## 47647 S82236F
## 47648 S82236G
## 47649 S82236H
## 47650 S82236J
## 47651 S82236K
## 47652 S82236M
## 47653 S82236N
## 47654 S82236P
## 47655 S82236Q
## 47656 S82236R
## 47657 S82236S
## 47658 S82241A
## 47659 S82241B
## 47660 S82241C
## 47661 S82241D
## 47662 S82241E
## 47663 S82241F
## 47664 S82241G
## 47665 S82241H
## 47666 S82241J
## 47667 S82241K
## 47668 S82241M
## 47669 S82241N
## 47670 S82241P
## 47671 S82241Q
## 47672 S82241R
## 47673 S82241S
## 47674 S82242A
## 47675 S82242B
## 47676 S82242C
## 47677 S82242D
## 47678 S82242E
## 47679 S82242F
## 47680 S82242G
## 47681 S82242H
## 47682 S82242J
## 47683 S82242K
## 47684 S82242M
## 47685 S82242N
## 47686 S82242P
## 47687 S82242Q
## 47688 S82242R
## 47689 S82242S
## 47690 S82243A
## 47691 S82243B
## 47692 S82243C
## 47693 S82243D
## 47694 S82243E
## 47695 S82243F
## 47696 S82243G
## 47697 S82243H
## 47698 S82243J
## 47699 S82243K
## 47700 S82243M
## 47701 S82243N
## 47702 S82243P
## 47703 S82243Q
## 47704 S82243R
## 47705 S82243S
## 47706 S82244A
## 47707 S82244B
## 47708 S82244C
## 47709 S82244D
## 47710 S82244E
## 47711 S82244F
## 47712 S82244G
## 47713 S82244H
## 47714 S82244J
## 47715 S82244K
## 47716 S82244M
## 47717 S82244N
## 47718 S82244P
## 47719 S82244Q
## 47720 S82244R
## 47721 S82244S
## 47722 S82245A
## 47723 S82245B
## 47724 S82245C
## 47725 S82245D
## 47726 S82245E
## 47727 S82245F
## 47728 S82245G
## 47729 S82245H
## 47730 S82245J
## 47731 S82245K
## 47732 S82245M
## 47733 S82245N
## 47734 S82245P
## 47735 S82245Q
## 47736 S82245R
## 47737 S82245S
## 47738 S82246A
## 47739 S82246B
## 47740 S82246C
## 47741 S82246D
## 47742 S82246E
## 47743 S82246F
## 47744 S82246G
## 47745 S82246H
## 47746 S82246J
## 47747 S82246K
## 47748 S82246M
## 47749 S82246N
## 47750 S82246P
## 47751 S82246Q
## 47752 S82246R
## 47753 S82246S
## 47754 S82251A
## 47755 S82251B
## 47756 S82251C
## 47757 S82251D
## 47758 S82251E
## 47759 S82251F
## 47760 S82251G
## 47761 S82251H
## 47762 S82251J
## 47763 S82251K
## 47764 S82251M
## 47765 S82251N
## 47766 S82251P
## 47767 S82251Q
## 47768 S82251R
## 47769 S82251S
## 47770 S82252A
## 47771 S82252B
## 47772 S82252C
## 47773 S82252D
## 47774 S82252E
## 47775 S82252F
## 47776 S82252G
## 47777 S82252H
## 47778 S82252J
## 47779 S82252K
## 47780 S82252M
## 47781 S82252N
## 47782 S82252P
## 47783 S82252Q
## 47784 S82252R
## 47785 S82252S
## 47786 S82253A
## 47787 S82253B
## 47788 S82253C
## 47789 S82253D
## 47790 S82253E
## 47791 S82253F
## 47792 S82253G
## 47793 S82253H
## 47794 S82253J
## 47795 S82253K
## 47796 S82253M
## 47797 S82253N
## 47798 S82253P
## 47799 S82253Q
## 47800 S82253R
## 47801 S82253S
## 47802 S82254A
## 47803 S82254B
## 47804 S82254C
## 47805 S82254D
## 47806 S82254E
## 47807 S82254F
## 47808 S82254G
## 47809 S82254H
## 47810 S82254J
## 47811 S82254K
## 47812 S82254M
## 47813 S82254N
## 47814 S82254P
## 47815 S82254Q
## 47816 S82254R
## 47817 S82254S
## 47818 S82255A
## 47819 S82255B
## 47820 S82255C
## 47821 S82255D
## 47822 S82255E
## 47823 S82255F
## 47824 S82255G
## 47825 S82255H
## 47826 S82255J
## 47827 S82255K
## 47828 S82255M
## 47829 S82255N
## 47830 S82255P
## 47831 S82255Q
## 47832 S82255R
## 47833 S82255S
## 47834 S82256A
## 47835 S82256B
## 47836 S82256C
## 47837 S82256D
## 47838 S82256E
## 47839 S82256F
## 47840 S82256G
## 47841 S82256H
## 47842 S82256J
## 47843 S82256K
## 47844 S82256M
## 47845 S82256N
## 47846 S82256P
## 47847 S82256Q
## 47848 S82256R
## 47849 S82256S
## 47850 S82261A
## 47851 S82261B
## 47852 S82261C
## 47853 S82261D
## 47854 S82261E
## 47855 S82261F
## 47856 S82261G
## 47857 S82261H
## 47858 S82261J
## 47859 S82261K
## 47860 S82261M
## 47861 S82261N
## 47862 S82261P
## 47863 S82261Q
## 47864 S82261R
## 47865 S82261S
## 47866 S82262A
## 47867 S82262B
## 47868 S82262C
## 47869 S82262D
## 47870 S82262E
## 47871 S82262F
## 47872 S82262G
## 47873 S82262H
## 47874 S82262J
## 47875 S82262K
## 47876 S82262M
## 47877 S82262N
## 47878 S82262P
## 47879 S82262Q
## 47880 S82262R
## 47881 S82262S
## 47882 S82263A
## 47883 S82263B
## 47884 S82263C
## 47885 S82263D
## 47886 S82263E
## 47887 S82263F
## 47888 S82263G
## 47889 S82263H
## 47890 S82263J
## 47891 S82263K
## 47892 S82263M
## 47893 S82263N
## 47894 S82263P
## 47895 S82263Q
## 47896 S82263R
## 47897 S82263S
## 47898 S82264A
## 47899 S82264B
## 47900 S82264C
## 47901 S82264D
## 47902 S82264E
## 47903 S82264F
## 47904 S82264G
## 47905 S82264H
## 47906 S82264J
## 47907 S82264K
## 47908 S82264M
## 47909 S82264N
## 47910 S82264P
## 47911 S82264Q
## 47912 S82264R
## 47913 S82264S
## 47914 S82265A
## 47915 S82265B
## 47916 S82265C
## 47917 S82265D
## 47918 S82265E
## 47919 S82265F
## 47920 S82265G
## 47921 S82265H
## 47922 S82265J
## 47923 S82265K
## 47924 S82265M
## 47925 S82265N
## 47926 S82265P
## 47927 S82265Q
## 47928 S82265R
## 47929 S82265S
## 47930 S82266A
## 47931 S82266B
## 47932 S82266C
## 47933 S82266D
## 47934 S82266E
## 47935 S82266F
## 47936 S82266G
## 47937 S82266H
## 47938 S82266J
## 47939 S82266K
## 47940 S82266M
## 47941 S82266N
## 47942 S82266P
## 47943 S82266Q
## 47944 S82266R
## 47945 S82266S
## 47946 S82291A
## 47947 S82291B
## 47948 S82291C
## 47949 S82291D
## 47950 S82291E
## 47951 S82291F
## 47952 S82291G
## 47953 S82291H
## 47954 S82291J
## 47955 S82291K
## 47956 S82291M
## 47957 S82291N
## 47958 S82291P
## 47959 S82291Q
## 47960 S82291R
## 47961 S82291S
## 47962 S82292A
## 47963 S82292B
## 47964 S82292C
## 47965 S82292D
## 47966 S82292E
## 47967 S82292F
## 47968 S82292G
## 47969 S82292H
## 47970 S82292J
## 47971 S82292K
## 47972 S82292M
## 47973 S82292N
## 47974 S82292P
## 47975 S82292Q
## 47976 S82292R
## 47977 S82292S
## 47978 S82299A
## 47979 S82299B
## 47980 S82299C
## 47981 S82299D
## 47982 S82299E
## 47983 S82299F
## 47984 S82299G
## 47985 S82299H
## 47986 S82299J
## 47987 S82299K
## 47988 S82299M
## 47989 S82299N
## 47990 S82299P
## 47991 S82299Q
## 47992 S82299R
## 47993 S82299S
## 47994 S82301A
## 47995 S82301B
## 47996 S82301C
## 47997 S82301D
## 47998 S82301E
## 47999 S82301F
## 48000 S82301G
## 48001 S82301H
## 48002 S82301J
## 48003 S82301K
## 48004 S82301M
## 48005 S82301N
## 48006 S82301P
## 48007 S82301Q
## 48008 S82301R
## 48009 S82301S
## 48010 S82302A
## 48011 S82302B
## 48012 S82302C
## 48013 S82302D
## 48014 S82302E
## 48015 S82302F
## 48016 S82302G
## 48017 S82302H
## 48018 S82302J
## 48019 S82302K
## 48020 S82302M
## 48021 S82302N
## 48022 S82302P
## 48023 S82302Q
## 48024 S82302R
## 48025 S82302S
## 48026 S82309A
## 48027 S82309B
## 48028 S82309C
## 48029 S82309D
## 48030 S82309E
## 48031 S82309F
## 48032 S82309G
## 48033 S82309H
## 48034 S82309J
## 48035 S82309K
## 48036 S82309M
## 48037 S82309N
## 48038 S82309P
## 48039 S82309Q
## 48040 S82309R
## 48041 S82309S
## 48042 S82311A
## 48043 S82311D
## 48044 S82311G
## 48045 S82311K
## 48046 S82311P
## 48047 S82311S
## 48048 S82312A
## 48049 S82312D
## 48050 S82312G
## 48051 S82312K
## 48052 S82312P
## 48053 S82312S
## 48054 S82319A
## 48055 S82319D
## 48056 S82319G
## 48057 S82319K
## 48058 S82319P
## 48059 S82319S
## 48060 S82391A
## 48061 S82391B
## 48062 S82391C
## 48063 S82391D
## 48064 S82391E
## 48065 S82391F
## 48066 S82391G
## 48067 S82391H
## 48068 S82391J
## 48069 S82391K
## 48070 S82391M
## 48071 S82391N
## 48072 S82391P
## 48073 S82391Q
## 48074 S82391R
## 48075 S82391S
## 48076 S82392A
## 48077 S82392B
## 48078 S82392C
## 48079 S82392D
## 48080 S82392E
## 48081 S82392F
## 48082 S82392G
## 48083 S82392H
## 48084 S82392J
## 48085 S82392K
## 48086 S82392M
## 48087 S82392N
## 48088 S82392P
## 48089 S82392Q
## 48090 S82392R
## 48091 S82392S
## 48092 S82399A
## 48093 S82399B
## 48094 S82399C
## 48095 S82399D
## 48096 S82399E
## 48097 S82399F
## 48098 S82399G
## 48099 S82399H
## 48100 S82399J
## 48101 S82399K
## 48102 S82399M
## 48103 S82399N
## 48104 S82399P
## 48105 S82399Q
## 48106 S82399R
## 48107 S82399S
## 48108 S82401A
## 48109 S82401B
## 48110 S82401C
## 48111 S82401D
## 48112 S82401E
## 48113 S82401F
## 48114 S82401G
## 48115 S82401H
## 48116 S82401J
## 48117 S82401K
## 48118 S82401M
## 48119 S82401N
## 48120 S82401P
## 48121 S82401Q
## 48122 S82401R
## 48123 S82401S
## 48124 S82402A
## 48125 S82402B
## 48126 S82402C
## 48127 S82402D
## 48128 S82402E
## 48129 S82402F
## 48130 S82402G
## 48131 S82402H
## 48132 S82402J
## 48133 S82402K
## 48134 S82402M
## 48135 S82402N
## 48136 S82402P
## 48137 S82402Q
## 48138 S82402R
## 48139 S82402S
## 48140 S82409A
## 48141 S82409B
## 48142 S82409C
## 48143 S82409D
## 48144 S82409E
## 48145 S82409F
## 48146 S82409G
## 48147 S82409H
## 48148 S82409J
## 48149 S82409K
## 48150 S82409M
## 48151 S82409N
## 48152 S82409P
## 48153 S82409Q
## 48154 S82409R
## 48155 S82409S
## 48156 S82421A
## 48157 S82421B
## 48158 S82421C
## 48159 S82421D
## 48160 S82421E
## 48161 S82421F
## 48162 S82421G
## 48163 S82421H
## 48164 S82421J
## 48165 S82421K
## 48166 S82421M
## 48167 S82421N
## 48168 S82421P
## 48169 S82421Q
## 48170 S82421R
## 48171 S82421S
## 48172 S82422A
## 48173 S82422B
## 48174 S82422C
## 48175 S82422D
## 48176 S82422E
## 48177 S82422F
## 48178 S82422G
## 48179 S82422H
## 48180 S82422J
## 48181 S82422K
## 48182 S82422M
## 48183 S82422N
## 48184 S82422P
## 48185 S82422Q
## 48186 S82422R
## 48187 S82422S
## 48188 S82423A
## 48189 S82423B
## 48190 S82423C
## 48191 S82423D
## 48192 S82423E
## 48193 S82423F
## 48194 S82423G
## 48195 S82423H
## 48196 S82423J
## 48197 S82423K
## 48198 S82423M
## 48199 S82423N
## 48200 S82423P
## 48201 S82423Q
## 48202 S82423R
## 48203 S82423S
## 48204 S82424A
## 48205 S82424B
## 48206 S82424C
## 48207 S82424D
## 48208 S82424E
## 48209 S82424F
## 48210 S82424G
## 48211 S82424H
## 48212 S82424J
## 48213 S82424K
## 48214 S82424M
## 48215 S82424N
## 48216 S82424P
## 48217 S82424Q
## 48218 S82424R
## 48219 S82424S
## 48220 S82425A
## 48221 S82425B
## 48222 S82425C
## 48223 S82425D
## 48224 S82425E
## 48225 S82425F
## 48226 S82425G
## 48227 S82425H
## 48228 S82425J
## 48229 S82425K
## 48230 S82425M
## 48231 S82425N
## 48232 S82425P
## 48233 S82425Q
## 48234 S82425R
## 48235 S82425S
## 48236 S82426A
## 48237 S82426B
## 48238 S82426C
## 48239 S82426D
## 48240 S82426E
## 48241 S82426F
## 48242 S82426G
## 48243 S82426H
## 48244 S82426J
## 48245 S82426K
## 48246 S82426M
## 48247 S82426N
## 48248 S82426P
## 48249 S82426Q
## 48250 S82426R
## 48251 S82426S
## 48252 S82431A
## 48253 S82431B
## 48254 S82431C
## 48255 S82431D
## 48256 S82431E
## 48257 S82431F
## 48258 S82431G
## 48259 S82431H
## 48260 S82431J
## 48261 S82431K
## 48262 S82431M
## 48263 S82431N
## 48264 S82431P
## 48265 S82431Q
## 48266 S82431R
## 48267 S82431S
## 48268 S82432A
## 48269 S82432B
## 48270 S82432C
## 48271 S82432D
## 48272 S82432E
## 48273 S82432F
## 48274 S82432G
## 48275 S82432H
## 48276 S82432J
## 48277 S82432K
## 48278 S82432M
## 48279 S82432N
## 48280 S82432P
## 48281 S82432Q
## 48282 S82432R
## 48283 S82432S
## 48284 S82433A
## 48285 S82433B
## 48286 S82433C
## 48287 S82433D
## 48288 S82433E
## 48289 S82433F
## 48290 S82433G
## 48291 S82433H
## 48292 S82433J
## 48293 S82433K
## 48294 S82433M
## 48295 S82433N
## 48296 S82433P
## 48297 S82433Q
## 48298 S82433R
## 48299 S82433S
## 48300 S82434A
## 48301 S82434B
## 48302 S82434C
## 48303 S82434D
## 48304 S82434E
## 48305 S82434F
## 48306 S82434G
## 48307 S82434H
## 48308 S82434J
## 48309 S82434K
## 48310 S82434M
## 48311 S82434N
## 48312 S82434P
## 48313 S82434Q
## 48314 S82434R
## 48315 S82434S
## 48316 S82435A
## 48317 S82435B
## 48318 S82435C
## 48319 S82435D
## 48320 S82435E
## 48321 S82435F
## 48322 S82435G
## 48323 S82435H
## 48324 S82435J
## 48325 S82435K
## 48326 S82435M
## 48327 S82435N
## 48328 S82435P
## 48329 S82435Q
## 48330 S82435R
## 48331 S82435S
## 48332 S82436A
## 48333 S82436B
## 48334 S82436C
## 48335 S82436D
## 48336 S82436E
## 48337 S82436F
## 48338 S82436G
## 48339 S82436H
## 48340 S82436J
## 48341 S82436K
## 48342 S82436M
## 48343 S82436N
## 48344 S82436P
## 48345 S82436Q
## 48346 S82436R
## 48347 S82436S
## 48348 S82441A
## 48349 S82441B
## 48350 S82441C
## 48351 S82441D
## 48352 S82441E
## 48353 S82441F
## 48354 S82441G
## 48355 S82441H
## 48356 S82441J
## 48357 S82441K
## 48358 S82441M
## 48359 S82441N
## 48360 S82441P
## 48361 S82441Q
## 48362 S82441R
## 48363 S82441S
## 48364 S82442A
## 48365 S82442B
## 48366 S82442C
## 48367 S82442D
## 48368 S82442E
## 48369 S82442F
## 48370 S82442G
## 48371 S82442H
## 48372 S82442J
## 48373 S82442K
## 48374 S82442M
## 48375 S82442N
## 48376 S82442P
## 48377 S82442Q
## 48378 S82442R
## 48379 S82442S
## 48380 S82443A
## 48381 S82443B
## 48382 S82443C
## 48383 S82443D
## 48384 S82443E
## 48385 S82443F
## 48386 S82443G
## 48387 S82443H
## 48388 S82443J
## 48389 S82443K
## 48390 S82443M
## 48391 S82443N
## 48392 S82443P
## 48393 S82443Q
## 48394 S82443R
## 48395 S82443S
## 48396 S82444A
## 48397 S82444B
## 48398 S82444C
## 48399 S82444D
## 48400 S82444E
## 48401 S82444F
## 48402 S82444G
## 48403 S82444H
## 48404 S82444J
## 48405 S82444K
## 48406 S82444M
## 48407 S82444N
## 48408 S82444P
## 48409 S82444Q
## 48410 S82444R
## 48411 S82444S
## 48412 S82445A
## 48413 S82445B
## 48414 S82445C
## 48415 S82445D
## 48416 S82445E
## 48417 S82445F
## 48418 S82445G
## 48419 S82445H
## 48420 S82445J
## 48421 S82445K
## 48422 S82445M
## 48423 S82445N
## 48424 S82445P
## 48425 S82445Q
## 48426 S82445R
## 48427 S82445S
## 48428 S82446A
## 48429 S82446B
## 48430 S82446C
## 48431 S82446D
## 48432 S82446E
## 48433 S82446F
## 48434 S82446G
## 48435 S82446H
## 48436 S82446J
## 48437 S82446K
## 48438 S82446M
## 48439 S82446N
## 48440 S82446P
## 48441 S82446Q
## 48442 S82446R
## 48443 S82446S
## 48444 S82451A
## 48445 S82451B
## 48446 S82451C
## 48447 S82451D
## 48448 S82451E
## 48449 S82451F
## 48450 S82451G
## 48451 S82451H
## 48452 S82451J
## 48453 S82451K
## 48454 S82451M
## 48455 S82451N
## 48456 S82451P
## 48457 S82451Q
## 48458 S82451R
## 48459 S82451S
## 48460 S82452A
## 48461 S82452B
## 48462 S82452C
## 48463 S82452D
## 48464 S82452E
## 48465 S82452F
## 48466 S82452G
## 48467 S82452H
## 48468 S82452J
## 48469 S82452K
## 48470 S82452M
## 48471 S82452N
## 48472 S82452P
## 48473 S82452Q
## 48474 S82452R
## 48475 S82452S
## 48476 S82453A
## 48477 S82453B
## 48478 S82453C
## 48479 S82453D
## 48480 S82453E
## 48481 S82453F
## 48482 S82453G
## 48483 S82453H
## 48484 S82453J
## 48485 S82453K
## 48486 S82453M
## 48487 S82453N
## 48488 S82453P
## 48489 S82453Q
## 48490 S82453R
## 48491 S82453S
## 48492 S82454A
## 48493 S82454B
## 48494 S82454C
## 48495 S82454D
## 48496 S82454E
## 48497 S82454F
## 48498 S82454G
## 48499 S82454H
## 48500 S82454J
## 48501 S82454K
## 48502 S82454M
## 48503 S82454N
## 48504 S82454P
## 48505 S82454Q
## 48506 S82454R
## 48507 S82454S
## 48508 S82455A
## 48509 S82455B
## 48510 S82455C
## 48511 S82455D
## 48512 S82455E
## 48513 S82455F
## 48514 S82455G
## 48515 S82455H
## 48516 S82455J
## 48517 S82455K
## 48518 S82455M
## 48519 S82455N
## 48520 S82455P
## 48521 S82455Q
## 48522 S82455R
## 48523 S82455S
## 48524 S82456A
## 48525 S82456B
## 48526 S82456C
## 48527 S82456D
## 48528 S82456E
## 48529 S82456F
## 48530 S82456G
## 48531 S82456H
## 48532 S82456J
## 48533 S82456K
## 48534 S82456M
## 48535 S82456N
## 48536 S82456P
## 48537 S82456Q
## 48538 S82456R
## 48539 S82456S
## 48540 S82461A
## 48541 S82461B
## 48542 S82461C
## 48543 S82461D
## 48544 S82461E
## 48545 S82461F
## 48546 S82461G
## 48547 S82461H
## 48548 S82461J
## 48549 S82461K
## 48550 S82461M
## 48551 S82461N
## 48552 S82461P
## 48553 S82461Q
## 48554 S82461R
## 48555 S82461S
## 48556 S82462A
## 48557 S82462B
## 48558 S82462C
## 48559 S82462D
## 48560 S82462E
## 48561 S82462F
## 48562 S82462G
## 48563 S82462H
## 48564 S82462J
## 48565 S82462K
## 48566 S82462M
## 48567 S82462N
## 48568 S82462P
## 48569 S82462Q
## 48570 S82462R
## 48571 S82462S
## 48572 S82463A
## 48573 S82463B
## 48574 S82463C
## 48575 S82463D
## 48576 S82463E
## 48577 S82463F
## 48578 S82463G
## 48579 S82463H
## 48580 S82463J
## 48581 S82463K
## 48582 S82463M
## 48583 S82463N
## 48584 S82463P
## 48585 S82463Q
## 48586 S82463R
## 48587 S82463S
## 48588 S82464A
## 48589 S82464B
## 48590 S82464C
## 48591 S82464D
## 48592 S82464E
## 48593 S82464F
## 48594 S82464G
## 48595 S82464H
## 48596 S82464J
## 48597 S82464K
## 48598 S82464M
## 48599 S82464N
## 48600 S82464P
## 48601 S82464Q
## 48602 S82464R
## 48603 S82464S
## 48604 S82465A
## 48605 S82465B
## 48606 S82465C
## 48607 S82465D
## 48608 S82465E
## 48609 S82465F
## 48610 S82465G
## 48611 S82465H
## 48612 S82465J
## 48613 S82465K
## 48614 S82465M
## 48615 S82465N
## 48616 S82465P
## 48617 S82465Q
## 48618 S82465R
## 48619 S82465S
## 48620 S82466A
## 48621 S82466B
## 48622 S82466C
## 48623 S82466D
## 48624 S82466E
## 48625 S82466F
## 48626 S82466G
## 48627 S82466H
## 48628 S82466J
## 48629 S82466K
## 48630 S82466M
## 48631 S82466N
## 48632 S82466P
## 48633 S82466Q
## 48634 S82466R
## 48635 S82466S
## 48636 S82491A
## 48637 S82491B
## 48638 S82491C
## 48639 S82491D
## 48640 S82491E
## 48641 S82491F
## 48642 S82491G
## 48643 S82491H
## 48644 S82491J
## 48645 S82491K
## 48646 S82491M
## 48647 S82491N
## 48648 S82491P
## 48649 S82491Q
## 48650 S82491R
## 48651 S82491S
## 48652 S82492A
## 48653 S82492B
## 48654 S82492C
## 48655 S82492D
## 48656 S82492E
## 48657 S82492F
## 48658 S82492G
## 48659 S82492H
## 48660 S82492J
## 48661 S82492K
## 48662 S82492M
## 48663 S82492N
## 48664 S82492P
## 48665 S82492Q
## 48666 S82492R
## 48667 S82492S
## 48668 S82499A
## 48669 S82499B
## 48670 S82499C
## 48671 S82499D
## 48672 S82499E
## 48673 S82499F
## 48674 S82499G
## 48675 S82499H
## 48676 S82499J
## 48677 S82499K
## 48678 S82499M
## 48679 S82499N
## 48680 S82499P
## 48681 S82499Q
## 48682 S82499R
## 48683 S82499S
## 48684 S8251XA
## 48685 S8251XB
## 48686 S8251XC
## 48687 S8251XD
## 48688 S8251XE
## 48689 S8251XF
## 48690 S8251XG
## 48691 S8251XH
## 48692 S8251XJ
## 48693 S8251XK
## 48694 S8251XM
## 48695 S8251XN
## 48696 S8251XP
## 48697 S8251XQ
## 48698 S8251XR
## 48699 S8251XS
## 48700 S8252XA
## 48701 S8252XB
## 48702 S8252XC
## 48703 S8252XD
## 48704 S8252XE
## 48705 S8252XF
## 48706 S8252XG
## 48707 S8252XH
## 48708 S8252XJ
## 48709 S8252XK
## 48710 S8252XM
## 48711 S8252XN
## 48712 S8252XP
## 48713 S8252XQ
## 48714 S8252XR
## 48715 S8252XS
## 48716 S8253XA
## 48717 S8253XB
## 48718 S8253XC
## 48719 S8253XD
## 48720 S8253XE
## 48721 S8253XF
## 48722 S8253XG
## 48723 S8253XH
## 48724 S8253XJ
## 48725 S8253XK
## 48726 S8253XM
## 48727 S8253XN
## 48728 S8253XP
## 48729 S8253XQ
## 48730 S8253XR
## 48731 S8253XS
## 48732 S8254XA
## 48733 S8254XB
## 48734 S8254XC
## 48735 S8254XD
## 48736 S8254XE
## 48737 S8254XF
## 48738 S8254XG
## 48739 S8254XH
## 48740 S8254XJ
## 48741 S8254XK
## 48742 S8254XM
## 48743 S8254XN
## 48744 S8254XP
## 48745 S8254XQ
## 48746 S8254XR
## 48747 S8254XS
## 48748 S8255XA
## 48749 S8255XB
## 48750 S8255XC
## 48751 S8255XD
## 48752 S8255XE
## 48753 S8255XF
## 48754 S8255XG
## 48755 S8255XH
## 48756 S8255XJ
## 48757 S8255XK
## 48758 S8255XM
## 48759 S8255XN
## 48760 S8255XP
## 48761 S8255XQ
## 48762 S8255XR
## 48763 S8255XS
## 48764 S8256XA
## 48765 S8256XB
## 48766 S8256XC
## 48767 S8256XD
## 48768 S8256XE
## 48769 S8256XF
## 48770 S8256XG
## 48771 S8256XH
## 48772 S8256XJ
## 48773 S8256XK
## 48774 S8256XM
## 48775 S8256XN
## 48776 S8256XP
## 48777 S8256XQ
## 48778 S8256XR
## 48779 S8256XS
## 48780 S8261XA
## 48781 S8261XB
## 48782 S8261XC
## 48783 S8261XD
## 48784 S8261XE
## 48785 S8261XF
## 48786 S8261XG
## 48787 S8261XH
## 48788 S8261XJ
## 48789 S8261XK
## 48790 S8261XM
## 48791 S8261XN
## 48792 S8261XP
## 48793 S8261XQ
## 48794 S8261XR
## 48795 S8261XS
## 48796 S8262XA
## 48797 S8262XB
## 48798 S8262XC
## 48799 S8262XD
## 48800 S8262XE
## 48801 S8262XF
## 48802 S8262XG
## 48803 S8262XH
## 48804 S8262XJ
## 48805 S8262XK
## 48806 S8262XM
## 48807 S8262XN
## 48808 S8262XP
## 48809 S8262XQ
## 48810 S8262XR
## 48811 S8262XS
## 48812 S8263XA
## 48813 S8263XB
## 48814 S8263XC
## 48815 S8263XD
## 48816 S8263XE
## 48817 S8263XF
## 48818 S8263XG
## 48819 S8263XH
## 48820 S8263XJ
## 48821 S8263XK
## 48822 S8263XM
## 48823 S8263XN
## 48824 S8263XP
## 48825 S8263XQ
## 48826 S8263XR
## 48827 S8263XS
## 48828 S8264XA
## 48829 S8264XB
## 48830 S8264XC
## 48831 S8264XD
## 48832 S8264XE
## 48833 S8264XF
## 48834 S8264XG
## 48835 S8264XH
## 48836 S8264XJ
## 48837 S8264XK
## 48838 S8264XM
## 48839 S8264XN
## 48840 S8264XP
## 48841 S8264XQ
## 48842 S8264XR
## 48843 S8264XS
## 48844 S8265XA
## 48845 S8265XB
## 48846 S8265XC
## 48847 S8265XD
## 48848 S8265XE
## 48849 S8265XF
## 48850 S8265XG
## 48851 S8265XH
## 48852 S8265XJ
## 48853 S8265XK
## 48854 S8265XM
## 48855 S8265XN
## 48856 S8265XP
## 48857 S8265XQ
## 48858 S8265XR
## 48859 S8265XS
## 48860 S8266XA
## 48861 S8266XB
## 48862 S8266XC
## 48863 S8266XD
## 48864 S8266XE
## 48865 S8266XF
## 48866 S8266XG
## 48867 S8266XH
## 48868 S8266XJ
## 48869 S8266XK
## 48870 S8266XM
## 48871 S8266XN
## 48872 S8266XP
## 48873 S8266XQ
## 48874 S8266XR
## 48875 S8266XS
## 48876 S82811A
## 48877 S82811D
## 48878 S82811G
## 48879 S82811K
## 48880 S82811P
## 48881 S82811S
## 48882 S82812A
## 48883 S82812D
## 48884 S82812G
## 48885 S82812K
## 48886 S82812P
## 48887 S82812S
## 48888 S82819A
## 48889 S82819D
## 48890 S82819G
## 48891 S82819K
## 48892 S82819P
## 48893 S82819S
## 48894 S82821A
## 48895 S82821D
## 48896 S82821G
## 48897 S82821K
## 48898 S82821P
## 48899 S82821S
## 48900 S82822A
## 48901 S82822D
## 48902 S82822G
## 48903 S82822K
## 48904 S82822P
## 48905 S82822S
## 48906 S82829A
## 48907 S82829D
## 48908 S82829G
## 48909 S82829K
## 48910 S82829P
## 48911 S82829S
## 48912 S82831A
## 48913 S82831B
## 48914 S82831C
## 48915 S82831D
## 48916 S82831E
## 48917 S82831F
## 48918 S82831G
## 48919 S82831H
## 48920 S82831J
## 48921 S82831K
## 48922 S82831M
## 48923 S82831N
## 48924 S82831P
## 48925 S82831Q
## 48926 S82831R
## 48927 S82831S
## 48928 S82832A
## 48929 S82832B
## 48930 S82832C
## 48931 S82832D
## 48932 S82832E
## 48933 S82832F
## 48934 S82832G
## 48935 S82832H
## 48936 S82832J
## 48937 S82832K
## 48938 S82832M
## 48939 S82832N
## 48940 S82832P
## 48941 S82832Q
## 48942 S82832R
## 48943 S82832S
## 48944 S82839A
## 48945 S82839B
## 48946 S82839C
## 48947 S82839D
## 48948 S82839E
## 48949 S82839F
## 48950 S82839G
## 48951 S82839H
## 48952 S82839J
## 48953 S82839K
## 48954 S82839M
## 48955 S82839N
## 48956 S82839P
## 48957 S82839Q
## 48958 S82839R
## 48959 S82839S
## 48960 S82841A
## 48961 S82841B
## 48962 S82841C
## 48963 S82841D
## 48964 S82841E
## 48965 S82841F
## 48966 S82841G
## 48967 S82841H
## 48968 S82841J
## 48969 S82841K
## 48970 S82841M
## 48971 S82841N
## 48972 S82841P
## 48973 S82841Q
## 48974 S82841R
## 48975 S82841S
## 48976 S82842A
## 48977 S82842B
## 48978 S82842C
## 48979 S82842D
## 48980 S82842E
## 48981 S82842F
## 48982 S82842G
## 48983 S82842H
## 48984 S82842J
## 48985 S82842K
## 48986 S82842M
## 48987 S82842N
## 48988 S82842P
## 48989 S82842Q
## 48990 S82842R
## 48991 S82842S
## 48992 S82843A
## 48993 S82843B
## 48994 S82843C
## 48995 S82843D
## 48996 S82843E
## 48997 S82843F
## 48998 S82843G
## 48999 S82843H
## 49000 S82843J
## 49001 S82843K
## 49002 S82843M
## 49003 S82843N
## 49004 S82843P
## 49005 S82843Q
## 49006 S82843R
## 49007 S82843S
## 49008 S82844A
## 49009 S82844B
## 49010 S82844C
## 49011 S82844D
## 49012 S82844E
## 49013 S82844F
## 49014 S82844G
## 49015 S82844H
## 49016 S82844J
## 49017 S82844K
## 49018 S82844M
## 49019 S82844N
## 49020 S82844P
## 49021 S82844Q
## 49022 S82844R
## 49023 S82844S
## 49024 S82845A
## 49025 S82845B
## 49026 S82845C
## 49027 S82845D
## 49028 S82845E
## 49029 S82845F
## 49030 S82845G
## 49031 S82845H
## 49032 S82845J
## 49033 S82845K
## 49034 S82845M
## 49035 S82845N
## 49036 S82845P
## 49037 S82845Q
## 49038 S82845R
## 49039 S82845S
## 49040 S82846A
## 49041 S82846B
## 49042 S82846C
## 49043 S82846D
## 49044 S82846E
## 49045 S82846F
## 49046 S82846G
## 49047 S82846H
## 49048 S82846J
## 49049 S82846K
## 49050 S82846M
## 49051 S82846N
## 49052 S82846P
## 49053 S82846Q
## 49054 S82846R
## 49055 S82846S
## 49056 S82851A
## 49057 S82851B
## 49058 S82851C
## 49059 S82851D
## 49060 S82851E
## 49061 S82851F
## 49062 S82851G
## 49063 S82851H
## 49064 S82851J
## 49065 S82851K
## 49066 S82851M
## 49067 S82851N
## 49068 S82851P
## 49069 S82851Q
## 49070 S82851R
## 49071 S82851S
## 49072 S82852A
## 49073 S82852B
## 49074 S82852C
## 49075 S82852D
## 49076 S82852E
## 49077 S82852F
## 49078 S82852G
## 49079 S82852H
## 49080 S82852J
## 49081 S82852K
## 49082 S82852M
## 49083 S82852N
## 49084 S82852P
## 49085 S82852Q
## 49086 S82852R
## 49087 S82852S
## 49088 S82853A
## 49089 S82853B
## 49090 S82853C
## 49091 S82853D
## 49092 S82853E
## 49093 S82853F
## 49094 S82853G
## 49095 S82853H
## 49096 S82853J
## 49097 S82853K
## 49098 S82853M
## 49099 S82853N
## 49100 S82853P
## 49101 S82853Q
## 49102 S82853R
## 49103 S82853S
## 49104 S82854A
## 49105 S82854B
## 49106 S82854C
## 49107 S82854D
## 49108 S82854E
## 49109 S82854F
## 49110 S82854G
## 49111 S82854H
## 49112 S82854J
## 49113 S82854K
## 49114 S82854M
## 49115 S82854N
## 49116 S82854P
## 49117 S82854Q
## 49118 S82854R
## 49119 S82854S
## 49120 S82855A
## 49121 S82855B
## 49122 S82855C
## 49123 S82855D
## 49124 S82855E
## 49125 S82855F
## 49126 S82855G
## 49127 S82855H
## 49128 S82855J
## 49129 S82855K
## 49130 S82855M
## 49131 S82855N
## 49132 S82855P
## 49133 S82855Q
## 49134 S82855R
## 49135 S82855S
## 49136 S82856A
## 49137 S82856B
## 49138 S82856C
## 49139 S82856D
## 49140 S82856E
## 49141 S82856F
## 49142 S82856G
## 49143 S82856H
## 49144 S82856J
## 49145 S82856K
## 49146 S82856M
## 49147 S82856N
## 49148 S82856P
## 49149 S82856Q
## 49150 S82856R
## 49151 S82856S
## 49152 S82861A
## 49153 S82861B
## 49154 S82861C
## 49155 S82861D
## 49156 S82861E
## 49157 S82861F
## 49158 S82861G
## 49159 S82861H
## 49160 S82861J
## 49161 S82861K
## 49162 S82861M
## 49163 S82861N
## 49164 S82861P
## 49165 S82861Q
## 49166 S82861R
## 49167 S82861S
## 49168 S82862A
## 49169 S82862B
## 49170 S82862C
## 49171 S82862D
## 49172 S82862E
## 49173 S82862F
## 49174 S82862G
## 49175 S82862H
## 49176 S82862J
## 49177 S82862K
## 49178 S82862M
## 49179 S82862N
## 49180 S82862P
## 49181 S82862Q
## 49182 S82862R
## 49183 S82862S
## 49184 S82863A
## 49185 S82863B
## 49186 S82863C
## 49187 S82863D
## 49188 S82863E
## 49189 S82863F
## 49190 S82863G
## 49191 S82863H
## 49192 S82863J
## 49193 S82863K
## 49194 S82863M
## 49195 S82863N
## 49196 S82863P
## 49197 S82863Q
## 49198 S82863R
## 49199 S82863S
## 49200 S82864A
## 49201 S82864B
## 49202 S82864C
## 49203 S82864D
## 49204 S82864E
## 49205 S82864F
## 49206 S82864G
## 49207 S82864H
## 49208 S82864J
## 49209 S82864K
## 49210 S82864M
## 49211 S82864N
## 49212 S82864P
## 49213 S82864Q
## 49214 S82864R
## 49215 S82864S
## 49216 S82865A
## 49217 S82865B
## 49218 S82865C
## 49219 S82865D
## 49220 S82865E
## 49221 S82865F
## 49222 S82865G
## 49223 S82865H
## 49224 S82865J
## 49225 S82865K
## 49226 S82865M
## 49227 S82865N
## 49228 S82865P
## 49229 S82865Q
## 49230 S82865R
## 49231 S82865S
## 49232 S82866A
## 49233 S82866B
## 49234 S82866C
## 49235 S82866D
## 49236 S82866E
## 49237 S82866F
## 49238 S82866G
## 49239 S82866H
## 49240 S82866J
## 49241 S82866K
## 49242 S82866M
## 49243 S82866N
## 49244 S82866P
## 49245 S82866Q
## 49246 S82866R
## 49247 S82866S
## 49248 S82871A
## 49249 S82871B
## 49250 S82871C
## 49251 S82871D
## 49252 S82871E
## 49253 S82871F
## 49254 S82871G
## 49255 S82871H
## 49256 S82871J
## 49257 S82871K
## 49258 S82871M
## 49259 S82871N
## 49260 S82871P
## 49261 S82871Q
## 49262 S82871R
## 49263 S82871S
## 49264 S82872A
## 49265 S82872B
## 49266 S82872C
## 49267 S82872D
## 49268 S82872E
## 49269 S82872F
## 49270 S82872G
## 49271 S82872H
## 49272 S82872J
## 49273 S82872K
## 49274 S82872M
## 49275 S82872N
## 49276 S82872P
## 49277 S82872Q
## 49278 S82872R
## 49279 S82872S
## 49280 S82873A
## 49281 S82873B
## 49282 S82873C
## 49283 S82873D
## 49284 S82873E
## 49285 S82873F
## 49286 S82873G
## 49287 S82873H
## 49288 S82873J
## 49289 S82873K
## 49290 S82873M
## 49291 S82873N
## 49292 S82873P
## 49293 S82873Q
## 49294 S82873R
## 49295 S82873S
## 49296 S82874A
## 49297 S82874B
## 49298 S82874C
## 49299 S82874D
## 49300 S82874E
## 49301 S82874F
## 49302 S82874G
## 49303 S82874H
## 49304 S82874J
## 49305 S82874K
## 49306 S82874M
## 49307 S82874N
## 49308 S82874P
## 49309 S82874Q
## 49310 S82874R
## 49311 S82874S
## 49312 S82875A
## 49313 S82875B
## 49314 S82875C
## 49315 S82875D
## 49316 S82875E
## 49317 S82875F
## 49318 S82875G
## 49319 S82875H
## 49320 S82875J
## 49321 S82875K
## 49322 S82875M
## 49323 S82875N
## 49324 S82875P
## 49325 S82875Q
## 49326 S82875R
## 49327 S82875S
## 49328 S82876A
## 49329 S82876B
## 49330 S82876C
## 49331 S82876D
## 49332 S82876E
## 49333 S82876F
## 49334 S82876G
## 49335 S82876H
## 49336 S82876J
## 49337 S82876K
## 49338 S82876M
## 49339 S82876N
## 49340 S82876P
## 49341 S82876Q
## 49342 S82876R
## 49343 S82876S
## 49344 S82891A
## 49345 S82891B
## 49346 S82891C
## 49347 S82891D
## 49348 S82891E
## 49349 S82891F
## 49350 S82891G
## 49351 S82891H
## 49352 S82891J
## 49353 S82891K
## 49354 S82891M
## 49355 S82891N
## 49356 S82891P
## 49357 S82891Q
## 49358 S82891R
## 49359 S82891S
## 49360 S82892A
## 49361 S82892B
## 49362 S82892C
## 49363 S82892D
## 49364 S82892E
## 49365 S82892F
## 49366 S82892G
## 49367 S82892H
## 49368 S82892J
## 49369 S82892K
## 49370 S82892M
## 49371 S82892N
## 49372 S82892P
## 49373 S82892Q
## 49374 S82892R
## 49375 S82892S
## 49376 S82899A
## 49377 S82899B
## 49378 S82899C
## 49379 S82899D
## 49380 S82899E
## 49381 S82899F
## 49382 S82899G
## 49383 S82899H
## 49384 S82899J
## 49385 S82899K
## 49386 S82899M
## 49387 S82899N
## 49388 S82899P
## 49389 S82899Q
## 49390 S82899R
## 49391 S82899S
## 49392 S8290XA
## 49393 S8290XB
## 49394 S8290XC
## 49395 S8290XD
## 49396 S8290XE
## 49397 S8290XF
## 49398 S8290XG
## 49399 S8290XH
## 49400 S8290XJ
## 49401 S8290XK
## 49402 S8290XM
## 49403 S8290XN
## 49404 S8290XP
## 49405 S8290XQ
## 49406 S8290XR
## 49407 S8290XS
## 49408 S8291XA
## 49409 S8291XB
## 49410 S8291XC
## 49411 S8291XD
## 49412 S8291XE
## 49413 S8291XF
## 49414 S8291XG
## 49415 S8291XH
## 49416 S8291XJ
## 49417 S8291XK
## 49418 S8291XM
## 49419 S8291XN
## 49420 S8291XP
## 49421 S8291XQ
## 49422 S8291XR
## 49423 S8291XS
## 49424 S8292XA
## 49425 S8292XB
## 49426 S8292XC
## 49427 S8292XD
## 49428 S8292XE
## 49429 S8292XF
## 49430 S8292XG
## 49431 S8292XH
## 49432 S8292XJ
## 49433 S8292XK
## 49434 S8292XM
## 49435 S8292XN
## 49436 S8292XP
## 49437 S8292XQ
## 49438 S8292XR
## 49439 S8292XS
## 49440 S83001A
## 49441 S83001D
## 49442 S83001S
## 49443 S83002A
## 49444 S83002D
## 49445 S83002S
## 49446 S83003A
## 49447 S83003D
## 49448 S83003S
## 49449 S83004A
## 49450 S83004D
## 49451 S83004S
## 49452 S83005A
## 49453 S83005D
## 49454 S83005S
## 49455 S83006A
## 49456 S83006D
## 49457 S83006S
## 49458 S83011A
## 49459 S83011D
## 49460 S83011S
## 49461 S83012A
## 49462 S83012D
## 49463 S83012S
## 49464 S83013A
## 49465 S83013D
## 49466 S83013S
## 49467 S83014A
## 49468 S83014D
## 49469 S83014S
## 49470 S83015A
## 49471 S83015D
## 49472 S83015S
## 49473 S83016A
## 49474 S83016D
## 49475 S83016S
## 49476 S83091A
## 49477 S83091D
## 49478 S83091S
## 49479 S83092A
## 49480 S83092D
## 49481 S83092S
## 49482 S83093A
## 49483 S83093D
## 49484 S83093S
## 49485 S83094A
## 49486 S83094D
## 49487 S83094S
## 49488 S83095A
## 49489 S83095D
## 49490 S83095S
## 49491 S83096A
## 49492 S83096D
## 49493 S83096S
## 49494 S83101A
## 49495 S83101D
## 49496 S83101S
## 49497 S83102A
## 49498 S83102D
## 49499 S83102S
## 49500 S83103A
## 49501 S83103D
## 49502 S83103S
## 49503 S83104A
## 49504 S83104D
## 49505 S83104S
## 49506 S83105A
## 49507 S83105D
## 49508 S83105S
## 49509 S83106A
## 49510 S83106D
## 49511 S83106S
## 49512 S83111A
## 49513 S83111D
## 49514 S83111S
## 49515 S83112A
## 49516 S83112D
## 49517 S83112S
## 49518 S83113A
## 49519 S83113D
## 49520 S83113S
## 49521 S83114A
## 49522 S83114D
## 49523 S83114S
## 49524 S83115A
## 49525 S83115D
## 49526 S83115S
## 49527 S83116A
## 49528 S83116D
## 49529 S83116S
## 49530 S83121A
## 49531 S83121D
## 49532 S83121S
## 49533 S83122A
## 49534 S83122D
## 49535 S83122S
## 49536 S83123A
## 49537 S83123D
## 49538 S83123S
## 49539 S83124A
## 49540 S83124D
## 49541 S83124S
## 49542 S83125A
## 49543 S83125D
## 49544 S83125S
## 49545 S83126A
## 49546 S83126D
## 49547 S83126S
## 49548 S83131A
## 49549 S83131D
## 49550 S83131S
## 49551 S83132A
## 49552 S83132D
## 49553 S83132S
## 49554 S83133A
## 49555 S83133D
## 49556 S83133S
## 49557 S83134A
## 49558 S83134D
## 49559 S83134S
## 49560 S83135A
## 49561 S83135D
## 49562 S83135S
## 49563 S83136A
## 49564 S83136D
## 49565 S83136S
## 49566 S83141A
## 49567 S83141D
## 49568 S83141S
## 49569 S83142A
## 49570 S83142D
## 49571 S83142S
## 49572 S83143A
## 49573 S83143D
## 49574 S83143S
## 49575 S83144A
## 49576 S83144D
## 49577 S83144S
## 49578 S83145A
## 49579 S83145D
## 49580 S83145S
## 49581 S83146A
## 49582 S83146D
## 49583 S83146S
## 49584 S83191A
## 49585 S83191D
## 49586 S83191S
## 49587 S83192A
## 49588 S83192D
## 49589 S83192S
## 49590 S83193A
## 49591 S83193D
## 49592 S83193S
## 49593 S83194A
## 49594 S83194D
## 49595 S83194S
## 49596 S83195A
## 49597 S83195D
## 49598 S83195S
## 49599 S83196A
## 49600 S83196D
## 49601 S83196S
## 49602 S83200A
## 49603 S83200D
## 49604 S83200S
## 49605 S83201A
## 49606 S83201D
## 49607 S83201S
## 49608 S83202A
## 49609 S83202D
## 49610 S83202S
## 49611 S83203A
## 49612 S83203D
## 49613 S83203S
## 49614 S83204A
## 49615 S83204D
## 49616 S83204S
## 49617 S83205A
## 49618 S83205D
## 49619 S83205S
## 49620 S83206A
## 49621 S83206D
## 49622 S83206S
## 49623 S83207A
## 49624 S83207D
## 49625 S83207S
## 49626 S83209A
## 49627 S83209D
## 49628 S83209S
## 49629 S83211A
## 49630 S83211D
## 49631 S83211S
## 49632 S83212A
## 49633 S83212D
## 49634 S83212S
## 49635 S83219A
## 49636 S83219D
## 49637 S83219S
## 49638 S83221A
## 49639 S83221D
## 49640 S83221S
## 49641 S83222A
## 49642 S83222D
## 49643 S83222S
## 49644 S83229A
## 49645 S83229D
## 49646 S83229S
## 49647 S83231A
## 49648 S83231D
## 49649 S83231S
## 49650 S83232A
## 49651 S83232D
## 49652 S83232S
## 49653 S83239A
## 49654 S83239D
## 49655 S83239S
## 49656 S83241A
## 49657 S83241D
## 49658 S83241S
## 49659 S83242A
## 49660 S83242D
## 49661 S83242S
## 49662 S83249A
## 49663 S83249D
## 49664 S83249S
## 49665 S83251A
## 49666 S83251D
## 49667 S83251S
## 49668 S83252A
## 49669 S83252D
## 49670 S83252S
## 49671 S83259A
## 49672 S83259D
## 49673 S83259S
## 49674 S83261A
## 49675 S83261D
## 49676 S83261S
## 49677 S83262A
## 49678 S83262D
## 49679 S83262S
## 49680 S83269A
## 49681 S83269D
## 49682 S83269S
## 49683 S83271A
## 49684 S83271D
## 49685 S83271S
## 49686 S83272A
## 49687 S83272D
## 49688 S83272S
## 49689 S83279A
## 49690 S83279D
## 49691 S83279S
## 49692 S83281A
## 49693 S83281D
## 49694 S83281S
## 49695 S83282A
## 49696 S83282D
## 49697 S83282S
## 49698 S83289A
## 49699 S83289D
## 49700 S83289S
## 49701 S8330XA
## 49702 S8330XD
## 49703 S8330XS
## 49704 S8331XA
## 49705 S8331XD
## 49706 S8331XS
## 49707 S8332XA
## 49708 S8332XD
## 49709 S8332XS
## 49710 S83401A
## 49711 S83401D
## 49712 S83401S
## 49713 S83402A
## 49714 S83402D
## 49715 S83402S
## 49716 S83409A
## 49717 S83409D
## 49718 S83409S
## 49719 S83411A
## 49720 S83411D
## 49721 S83411S
## 49722 S83412A
## 49723 S83412D
## 49724 S83412S
## 49725 S83419A
## 49726 S83419D
## 49727 S83419S
## 49728 S83421A
## 49729 S83421D
## 49730 S83421S
## 49731 S83422A
## 49732 S83422D
## 49733 S83422S
## 49734 S83429A
## 49735 S83429D
## 49736 S83429S
## 49737 S83501A
## 49738 S83501D
## 49739 S83501S
## 49740 S83502A
## 49741 S83502D
## 49742 S83502S
## 49743 S83509A
## 49744 S83509D
## 49745 S83509S
## 49746 S83511A
## 49747 S83511D
## 49748 S83511S
## 49749 S83512A
## 49750 S83512D
## 49751 S83512S
## 49752 S83519A
## 49753 S83519D
## 49754 S83519S
## 49755 S83521A
## 49756 S83521D
## 49757 S83521S
## 49758 S83522A
## 49759 S83522D
## 49760 S83522S
## 49761 S83529A
## 49762 S83529D
## 49763 S83529S
## 49764 S8360XA
## 49765 S8360XD
## 49766 S8360XS
## 49767 S8361XA
## 49768 S8361XD
## 49769 S8361XS
## 49770 S8362XA
## 49771 S8362XD
## 49772 S8362XS
## 49773 S838X1A
## 49774 S838X1D
## 49775 S838X1S
## 49776 S838X2A
## 49777 S838X2D
## 49778 S838X2S
## 49779 S838X9A
## 49780 S838X9D
## 49781 S838X9S
## 49782 S8390XA
## 49783 S8390XD
## 49784 S8390XS
## 49785 S8391XA
## 49786 S8391XD
## 49787 S8391XS
## 49788 S8392XA
## 49789 S8392XD
## 49790 S8392XS
## 49791 S8400XA
## 49792 S8400XD
## 49793 S8400XS
## 49794 S8401XA
## 49795 S8401XD
## 49796 S8401XS
## 49797 S8402XA
## 49798 S8402XD
## 49799 S8402XS
## 49800 S8410XA
## 49801 S8410XD
## 49802 S8410XS
## 49803 S8411XA
## 49804 S8411XD
## 49805 S8411XS
## 49806 S8412XA
## 49807 S8412XD
## 49808 S8412XS
## 49809 S8420XA
## 49810 S8420XD
## 49811 S8420XS
## 49812 S8421XA
## 49813 S8421XD
## 49814 S8421XS
## 49815 S8422XA
## 49816 S8422XD
## 49817 S8422XS
## 49818 S84801A
## 49819 S84801D
## 49820 S84801S
## 49821 S84802A
## 49822 S84802D
## 49823 S84802S
## 49824 S84809A
## 49825 S84809D
## 49826 S84809S
## 49827 S8490XA
## 49828 S8490XD
## 49829 S8490XS
## 49830 S8491XA
## 49831 S8491XD
## 49832 S8491XS
## 49833 S8492XA
## 49834 S8492XD
## 49835 S8492XS
## 49836 S85001A
## 49837 S85001D
## 49838 S85001S
## 49839 S85002A
## 49840 S85002D
## 49841 S85002S
## 49842 S85009A
## 49843 S85009D
## 49844 S85009S
## 49845 S85011A
## 49846 S85011D
## 49847 S85011S
## 49848 S85012A
## 49849 S85012D
## 49850 S85012S
## 49851 S85019A
## 49852 S85019D
## 49853 S85019S
## 49854 S85091A
## 49855 S85091D
## 49856 S85091S
## 49857 S85092A
## 49858 S85092D
## 49859 S85092S
## 49860 S85099A
## 49861 S85099D
## 49862 S85099S
## 49863 S85101A
## 49864 S85101D
## 49865 S85101S
## 49866 S85102A
## 49867 S85102D
## 49868 S85102S
## 49869 S85109A
## 49870 S85109D
## 49871 S85109S
## 49872 S85111A
## 49873 S85111D
## 49874 S85111S
## 49875 S85112A
## 49876 S85112D
## 49877 S85112S
## 49878 S85119A
## 49879 S85119D
## 49880 S85119S
## 49881 S85121A
## 49882 S85121D
## 49883 S85121S
## 49884 S85122A
## 49885 S85122D
## 49886 S85122S
## 49887 S85129A
## 49888 S85129D
## 49889 S85129S
## 49890 S85131A
## 49891 S85131D
## 49892 S85131S
## 49893 S85132A
## 49894 S85132D
## 49895 S85132S
## 49896 S85139A
## 49897 S85139D
## 49898 S85139S
## 49899 S85141A
## 49900 S85141D
## 49901 S85141S
## 49902 S85142A
## 49903 S85142D
## 49904 S85142S
## 49905 S85149A
## 49906 S85149D
## 49907 S85149S
## 49908 S85151A
## 49909 S85151D
## 49910 S85151S
## 49911 S85152A
## 49912 S85152D
## 49913 S85152S
## 49914 S85159A
## 49915 S85159D
## 49916 S85159S
## 49917 S85161A
## 49918 S85161D
## 49919 S85161S
## 49920 S85162A
## 49921 S85162D
## 49922 S85162S
## 49923 S85169A
## 49924 S85169D
## 49925 S85169S
## 49926 S85171A
## 49927 S85171D
## 49928 S85171S
## 49929 S85172A
## 49930 S85172D
## 49931 S85172S
## 49932 S85179A
## 49933 S85179D
## 49934 S85179S
## 49935 S85181A
## 49936 S85181D
## 49937 S85181S
## 49938 S85182A
## 49939 S85182D
## 49940 S85182S
## 49941 S85189A
## 49942 S85189D
## 49943 S85189S
## 49944 S85201A
## 49945 S85201D
## 49946 S85201S
## 49947 S85202A
## 49948 S85202D
## 49949 S85202S
## 49950 S85209A
## 49951 S85209D
## 49952 S85209S
## 49953 S85211A
## 49954 S85211D
## 49955 S85211S
## 49956 S85212A
## 49957 S85212D
## 49958 S85212S
## 49959 S85219A
## 49960 S85219D
## 49961 S85219S
## 49962 S85291A
## 49963 S85291D
## 49964 S85291S
## 49965 S85292A
## 49966 S85292D
## 49967 S85292S
## 49968 S85299A
## 49969 S85299D
## 49970 S85299S
## 49971 S85301A
## 49972 S85301D
## 49973 S85301S
## 49974 S85302A
## 49975 S85302D
## 49976 S85302S
## 49977 S85309A
## 49978 S85309D
## 49979 S85309S
## 49980 S85311A
## 49981 S85311D
## 49982 S85311S
## 49983 S85312A
## 49984 S85312D
## 49985 S85312S
## 49986 S85319A
## 49987 S85319D
## 49988 S85319S
## 49989 S85391A
## 49990 S85391D
## 49991 S85391S
## 49992 S85392A
## 49993 S85392D
## 49994 S85392S
## 49995 S85399A
## 49996 S85399D
## 49997 S85399S
## 49998 S85401A
## 49999 S85401D
## description
## 1 Cholera due to Vibrio cholerae 01, biovar cholerae
## 2 Cholera due to Vibrio cholerae 01, biovar eltor
## 3 Cholera, unspecified
## 4 Typhoid fever, unspecified
## 5 Typhoid meningitis
## 6 Typhoid fever with heart involvement
## 7 Typhoid pneumonia
## 8 Typhoid arthritis
## 9 Typhoid osteomyelitis
## 10 Typhoid fever with other complications
## 11 Paratyphoid fever A
## 12 Paratyphoid fever B
## 13 Paratyphoid fever C
## 14 Paratyphoid fever, unspecified
## 15 Salmonella enteritis
## 16 Salmonella sepsis
## 17 Localized salmonella infection, unspecified
## 18 Salmonella meningitis
## 19 Salmonella pneumonia
## 20 Salmonella arthritis
## 21 Salmonella osteomyelitis
## 22 Salmonella pyelonephritis
## 23 Salmonella with other localized infection
## 24 Other specified salmonella infections
## 25 Salmonella infection, unspecified
## 26 Shigellosis due to Shigella dysenteriae
## 27 Shigellosis due to Shigella flexneri
## 28 Shigellosis due to Shigella boydii
## 29 Shigellosis due to Shigella sonnei
## 30 Other shigellosis
## 31 Shigellosis, unspecified
## 32 Enteropathogenic Escherichia coli infection
## 33 Enterotoxigenic Escherichia coli infection
## 34 Enteroinvasive Escherichia coli infection
## 35 Enterohemorrhagic Escherichia coli infection
## 36 Other intestinal Escherichia coli infections
## 37 Campylobacter enteritis
## 38 Enteritis due to Yersinia enterocolitica
## 39 Enterocolitis due to Clostridium difficile, recurrent
## 40 Enterocolitis due to Clostridium difficile, not specified as recurrent
## 41 Other specified bacterial intestinal infections
## 42 Bacterial intestinal infection, unspecified
## 43 Foodborne staphylococcal intoxication
## 44 Botulism food poisoning
## 45 Foodborne Clostridium perfringens [Clostridium welchii] intoxication
## 46 Foodborne Vibrio parahaemolyticus intoxication
## 47 Foodborne Bacillus cereus intoxication
## 48 Foodborne Vibrio vulnificus intoxication
## 49 Other specified bacterial foodborne intoxications
## 50 Bacterial foodborne intoxication, unspecified
## 51 Acute amebic dysentery
## 52 Chronic intestinal amebiasis
## 53 Amebic nondysenteric colitis
## 54 Ameboma of intestine
## 55 Amebic liver abscess
## 56 Amebic lung abscess
## 57 Amebic brain abscess
## 58 Cutaneous amebiasis
## 59 Amebic cystitis
## 60 Other amebic genitourinary infections
## 61 Other amebic infections
## 62 Amebiasis, unspecified
## 63 Balantidiasis
## 64 Giardiasis [lambliasis]
## 65 Cryptosporidiosis
## 66 Isosporiasis
## 67 Cyclosporiasis
## 68 Other specified protozoal intestinal diseases
## 69 Protozoal intestinal disease, unspecified
## 70 Rotaviral enteritis
## 71 Acute gastroenteropathy due to Norwalk agent
## 72 Acute gastroenteropathy due to other small round viruses
## 73 Adenoviral enteritis
## 74 Calicivirus enteritis
## 75 Astrovirus enteritis
## 76 Other viral enteritis
## 77 Viral intestinal infection, unspecified
## 78 Other specified intestinal infections
## 79 Infectious gastroenteritis and colitis, unspecified
## 80 Tuberculosis of lung
## 81 Tuberculosis of intrathoracic lymph nodes
## 82 Tuberculosis of larynx, trachea and bronchus
## 83 Tuberculous pleurisy
## 84 Primary respiratory tuberculosis
## 85 Other respiratory tuberculosis
## 86 Respiratory tuberculosis unspecified
## 87 Tuberculous meningitis
## 88 Meningeal tuberculoma
## 89 Tuberculoma of brain and spinal cord
## 90 Tuberculous meningoencephalitis
## 91 Tuberculous neuritis
## 92 Other tuberculosis of nervous system
## 93 Tuberculosis of nervous system, unspecified
## 94 Tuberculosis of spine
## 95 Tuberculous arthritis of other joints
## 96 Tuberculosis of other bones
## 97 Other musculoskeletal tuberculosis
## 98 Tuberculosis of genitourinary system, unspecified
## 99 Tuberculosis of kidney and ureter
## 100 Tuberculosis of bladder
## 101 Tuberculosis of other urinary organs
## 102 Tuberculosis of prostate
## 103 Tuberculosis of other male genital organs
## 104 Tuberculosis of cervix
## 105 Tuberculous female pelvic inflammatory disease
## 106 Tuberculosis of other female genital organs
## 107 Tuberculous peripheral lymphadenopathy
## 108 Tuberculous peritonitis
## 109 Tuberculous enteritis
## 110 Retroperitoneal tuberculosis
## 111 Tuberculosis of skin and subcutaneous tissue
## 112 Tuberculosis of eye, unspecified
## 113 Tuberculous episcleritis
## 114 Tuberculous keratitis
## 115 Tuberculous chorioretinitis
## 116 Tuberculous iridocyclitis
## 117 Other tuberculosis of eye
## 118 Tuberculosis of (inner) (middle) ear
## 119 Tuberculosis of adrenal glands
## 120 Tuberculosis of thyroid gland
## 121 Tuberculosis of other endocrine glands
## 122 Tuberculosis of digestive tract organs, not elsewhere classified
## 123 Tuberculosis of heart
## 124 Tuberculosis of spleen
## 125 Tuberculosis of other sites
## 126 Acute miliary tuberculosis of a single specified site
## 127 Acute miliary tuberculosis of multiple sites
## 128 Acute miliary tuberculosis, unspecified
## 129 Other miliary tuberculosis
## 130 Miliary tuberculosis, unspecified
## 131 Bubonic plague
## 132 Cellulocutaneous plague
## 133 Pneumonic plague
## 134 Plague meningitis
## 135 Septicemic plague
## 136 Other forms of plague
## 137 Plague, unspecified
## 138 Ulceroglandular tularemia
## 139 Oculoglandular tularemia
## 140 Pulmonary tularemia
## 141 Gastrointestinal tularemia
## 142 Generalized tularemia
## 143 Other forms of tularemia
## 144 Tularemia, unspecified
## 145 Cutaneous anthrax
## 146 Pulmonary anthrax
## 147 Gastrointestinal anthrax
## 148 Anthrax sepsis
## 149 Other forms of anthrax
## 150 Anthrax, unspecified
## 151 Brucellosis due to Brucella melitensis
## 152 Brucellosis due to Brucella abortus
## 153 Brucellosis due to Brucella suis
## 154 Brucellosis due to Brucella canis
## 155 Other brucellosis
## 156 Brucellosis, unspecified
## 157 Glanders
## 158 Acute and fulminating melioidosis
## 159 Subacute and chronic melioidosis
## 160 Other melioidosis
## 161 Melioidosis, unspecified
## 162 Spirillosis
## 163 Streptobacillosis
## 164 Rat-bite fever, unspecified
## 165 Cutaneous erysipeloid
## 166 Erysipelothrix sepsis
## 167 Other forms of erysipeloid
## 168 Erysipeloid, unspecified
## 169 Leptospirosis icterohemorrhagica
## 170 Aseptic meningitis in leptospirosis
## 171 Other forms of leptospirosis
## 172 Leptospirosis, unspecified
## 173 Pasteurellosis
## 174 Cat-scratch disease
## 175 Extraintestinal yersiniosis
## 176 Other specified zoonotic bacterial diseases, not elsewhere classified
## 177 Zoonotic bacterial disease, unspecified
## 178 Indeterminate leprosy
## 179 Tuberculoid leprosy
## 180 Borderline tuberculoid leprosy
## 181 Borderline leprosy
## 182 Borderline lepromatous leprosy
## 183 Lepromatous leprosy
## 184 Other forms of leprosy
## 185 Leprosy, unspecified
## 186 Pulmonary mycobacterial infection
## 187 Cutaneous mycobacterial infection
## 188 Disseminated mycobacterium avium-intracellulare complex (DMAC)
## 189 Other mycobacterial infections
## 190 Mycobacterial infection, unspecified
## 191 Cutaneous listeriosis
## 192 Listerial meningitis
## 193 Listerial meningoencephalitis
## 194 Listerial sepsis
## 195 Oculoglandular listeriosis
## 196 Listerial endocarditis
## 197 Other forms of listeriosis
## 198 Listeriosis, unspecified
## 199 Tetanus neonatorum
## 200 Obstetrical tetanus
## 201 Other tetanus
## 202 Pharyngeal diphtheria
## 203 Nasopharyngeal diphtheria
## 204 Laryngeal diphtheria
## 205 Cutaneous diphtheria
## 206 Diphtheritic cardiomyopathy
## 207 Diphtheritic radiculomyelitis
## 208 Diphtheritic polyneuritis
## 209 Diphtheritic tubulo-interstitial nephropathy
## 210 Diphtheritic cystitis
## 211 Diphtheritic conjunctivitis
## 212 Other diphtheritic complications
## 213 Diphtheria, unspecified
## 214 Whooping cough due to Bordetella pertussis without pneumonia
## 215 Whooping cough due to Bordetella pertussis with pneumonia
## 216 Whooping cough due to Bordetella parapertussis without pneumonia
## 217 Whooping cough due to Bordetella parapertussis with pneumonia
## 218 Whooping cough due to other Bordetella species without pneumonia
## 219 Whooping cough due to other Bordetella species with pneumonia
## 220 Whooping cough, unspecified species without pneumonia
## 221 Whooping cough, unspecified species with pneumonia
## 222 Scarlet fever with otitis media
## 223 Scarlet fever with myocarditis
## 224 Scarlet fever with other complications
## 225 Scarlet fever, uncomplicated
## 226 Meningococcal meningitis
## 227 Waterhouse-Friderichsen syndrome
## 228 Acute meningococcemia
## 229 Chronic meningococcemia
## 230 Meningococcemia, unspecified
## 231 Meningococcal carditis, unspecified
## 232 Meningococcal endocarditis
## 233 Meningococcal myocarditis
## 234 Meningococcal pericarditis
## 235 Meningococcal encephalitis
## 236 Meningococcal retrobulbar neuritis
## 237 Meningococcal arthritis
## 238 Postmeningococcal arthritis
## 239 Other meningococcal infections
## 240 Meningococcal infection, unspecified
## 241 Sepsis due to streptococcus, group A
## 242 Sepsis due to streptococcus, group B
## 243 Sepsis due to Streptococcus pneumoniae
## 244 Other streptococcal sepsis
## 245 Streptococcal sepsis, unspecified
## 246 Sepsis due to Methicillin susceptible Staphylococcus aureus
## 247 Sepsis due to Methicillin resistant Staphylococcus aureus
## 248 Sepsis due to other specified staphylococcus
## 249 Sepsis due to unspecified staphylococcus
## 250 Sepsis due to Hemophilus influenzae
## 251 Sepsis due to anaerobes
## 252 Gram-negative sepsis, unspecified
## 253 Sepsis due to Escherichia coli [E. coli]
## 254 Sepsis due to Pseudomonas
## 255 Sepsis due to Serratia
## 256 Other Gram-negative sepsis
## 257 Sepsis due to Enterococcus
## 258 Other specified sepsis
## 259 Sepsis, unspecified organism
## 260 Pulmonary actinomycosis
## 261 Abdominal actinomycosis
## 262 Cervicofacial actinomycosis
## 263 Actinomycotic sepsis
## 264 Actinomycotic meningitis
## 265 Actinomycotic encephalitis
## 266 Other forms of actinomycosis
## 267 Actinomycosis, unspecified
## 268 Pulmonary nocardiosis
## 269 Cutaneous nocardiosis
## 270 Other forms of nocardiosis
## 271 Nocardiosis, unspecified
## 272 Systemic bartonellosis
## 273 Cutaneous and mucocutaneous bartonellosis
## 274 Other forms of bartonellosis
## 275 Bartonellosis, unspecified
## 276 Erysipelas
## 277 Gas gangrene
## 278 Legionnaires' disease
## 279 Nonpneumonic Legionnaires' disease [Pontiac fever]
## 280 Toxic shock syndrome
## 281 Brazilian purpuric fever
## 282 Infant botulism
## 283 Wound botulism
## 284 Other specified bacterial diseases
## 285 Methicillin susceptible Staphylococcus aureus infection, unspecified site
## 286 Methicillin resistant Staphylococcus aureus infection, unspecified site
## 287 Streptococcal infection, unspecified site
## 288 Hemophilus influenzae infection, unspecified site
## 289 Mycoplasma infection, unspecified site
## 290 Other bacterial infections of unspecified site
## 291 Bacterial infection, unspecified
## 292 Early congenital syphilitic oculopathy
## 293 Early congenital syphilitic osteochondropathy
## 294 Early congenital syphilitic pharyngitis
## 295 Early congenital syphilitic pneumonia
## 296 Early congenital syphilitic rhinitis
## 297 Early cutaneous congenital syphilis
## 298 Early mucocutaneous congenital syphilis
## 299 Early visceral congenital syphilis
## 300 Other early congenital syphilis, symptomatic
## 301 Early congenital syphilis, latent
## 302 Early congenital syphilis, unspecified
## 303 Late congenital syphilitic oculopathy, unspecified
## 304 Late congenital syphilitic interstitial keratitis
## 305 Late congenital syphilitic chorioretinitis
## 306 Other late congenital syphilitic oculopathy
## 307 Late congenital neurosyphilis, unspecified
## 308 Late congenital syphilitic meningitis
## 309 Late congenital syphilitic encephalitis
## 310 Late congenital syphilitic polyneuropathy
## 311 Late congenital syphilitic optic nerve atrophy
## 312 Juvenile general paresis
## 313 Other late congenital neurosyphilis
## 314 Clutton's joints
## 315 Hutchinson's teeth
## 316 Hutchinson's triad
## 317 Late congenital cardiovascular syphilis
## 318 Late congenital syphilitic arthropathy
## 319 Late congenital syphilitic osteochondropathy
## 320 Syphilitic saddle nose
## 321 Other late congenital syphilis, symptomatic
## 322 Late congenital syphilis, latent
## 323 Late congenital syphilis, unspecified
## 324 Congenital syphilis, unspecified
## 325 Primary genital syphilis
## 326 Primary anal syphilis
## 327 Primary syphilis of other sites
## 328 Condyloma latum
## 329 Syphilitic alopecia
## 330 Other secondary syphilis of skin
## 331 Secondary syphilitic meningitis
## 332 Secondary syphilitic female pelvic disease
## 333 Secondary syphilitic oculopathy
## 334 Secondary syphilitic nephritis
## 335 Secondary syphilitic hepatitis
## 336 Secondary syphilitic osteopathy
## 337 Other secondary syphilitic conditions
## 338 Early syphilis, latent
## 339 Early syphilis, unspecified
## 340 Cardiovascular syphilis, unspecified
## 341 Syphilitic aneurysm of aorta
## 342 Syphilitic aortitis
## 343 Syphilitic endocarditis
## 344 Syphilitic cerebral arteritis
## 345 Other cerebrovascular syphilis
## 346 Other syphilitic heart involvement
## 347 Other cardiovascular syphilis
## 348 Symptomatic neurosyphilis, unspecified
## 349 Tabes dorsalis
## 350 Other cerebrospinal syphilis
## 351 Late syphilitic meningitis
## 352 Late syphilitic encephalitis
## 353 Late syphilitic neuropathy
## 354 Charcot's arthropathy (tabetic)
## 355 General paresis
## 356 Other symptomatic neurosyphilis
## 357 Asymptomatic neurosyphilis
## 358 Neurosyphilis, unspecified
## 359 Late syphilitic oculopathy
## 360 Syphilis of lung and bronchus
## 361 Symptomatic late syphilis of other respiratory organs
## 362 Syphilis of liver and other viscera
## 363 Syphilis of kidney and ureter
## 364 Other genitourinary symptomatic late syphilis
## 365 Syphilis of bone and joint
## 366 Syphilis of other musculoskeletal tissue
## 367 Other symptomatic late syphilis
## 368 Late syphilis, latent
## 369 Late syphilis, unspecified
## 370 Latent syphilis, unspecified as early or late
## 371 Syphilis, unspecified
## 372 Gonococcal infection of lower genitourinary tract, unspecified
## 373 Gonococcal cystitis and urethritis, unspecified
## 374 Gonococcal vulvovaginitis, unspecified
## 375 Gonococcal cervicitis, unspecified
## 376 Other gonococcal infection of lower genitourinary tract
## 377 Gonococcal infection of lower genitourinary tract with periurethral and accessory gland abscess
## 378 Gonococcal infection of kidney and ureter
## 379 Gonococcal prostatitis
## 380 Gonococcal infection of other male genital organs
## 381 Gonococcal female pelvic inflammatory disease
## 382 Other gonococcal genitourinary infections
## 383 Gonococcal infection of eye, unspecified
## 384 Gonococcal conjunctivitis
## 385 Gonococcal iridocyclitis
## 386 Gonococcal keratitis
## 387 Other gonococcal eye infection
## 388 Gonococcal infection of musculoskeletal system, unspecified
## 389 Gonococcal spondylopathy
## 390 Gonococcal arthritis
## 391 Gonococcal osteomyelitis
## 392 Gonococcal infection of other musculoskeletal tissue
## 393 Gonococcal pharyngitis
## 394 Gonococcal infection of anus and rectum
## 395 Gonococcal meningitis
## 396 Gonococcal brain abscess
## 397 Gonococcal heart infection
## 398 Gonococcal pneumonia
## 399 Gonococcal peritonitis
## 400 Gonococcal sepsis
## 401 Other gonococcal infections
## 402 Gonococcal infection, unspecified
## 403 Chlamydial lymphogranuloma (venereum)
## 404 Chlamydial infection of lower genitourinary tract, unspecified
## 405 Chlamydial cystitis and urethritis
## 406 Chlamydial vulvovaginitis
## 407 Other chlamydial infection of lower genitourinary tract
## 408 Chlamydial female pelvic inflammatory disease
## 409 Other chlamydial genitourinary infection
## 410 Chlamydial infection of genitourinary tract, unspecified
## 411 Chlamydial infection of anus and rectum
## 412 Chlamydial infection of pharynx
## 413 Sexually transmitted chlamydial infection of other sites
## 414 Chancroid
## 415 Granuloma inguinale
## 416 Urogenital trichomoniasis, unspecified
## 417 Trichomonal vulvovaginitis
## 418 Trichomonal prostatitis
## 419 Trichomonal cystitis and urethritis
## 420 Other urogenital trichomoniasis
## 421 Trichomoniasis of other sites
## 422 Trichomoniasis, unspecified
## 423 Herpesviral infection of urogenital system, unspecified
## 424 Herpesviral infection of penis
## 425 Herpesviral infection of other male genital organs
## 426 Herpesviral cervicitis
## 427 Herpesviral vulvovaginitis
## 428 Herpesviral infection of other urogenital tract
## 429 Herpesviral infection of perianal skin and rectum
## 430 Anogenital herpesviral infection, unspecified
## 431 Anogenital (venereal) warts
## 432 Other specified predominantly sexually transmitted diseases
## 433 Unspecified sexually transmitted disease
## 434 Nonvenereal syphilis
## 435 Initial lesions of yaws
## 436 Multiple papillomata and wet crab yaws
## 437 Other early skin lesions of yaws
## 438 Hyperkeratosis of yaws
## 439 Gummata and ulcers of yaws
## 440 Gangosa
## 441 Bone and joint lesions of yaws
## 442 Other manifestations of yaws
## 443 Latent yaws
## 444 Yaws, unspecified
## 445 Primary lesions of pinta
## 446 Intermediate lesions of pinta
## 447 Late lesions of pinta
## 448 Mixed lesions of pinta
## 449 Pinta, unspecified
## 450 Louse-borne relapsing fever
## 451 Tick-borne relapsing fever
## 452 Relapsing fever, unspecified
## 453 Necrotizing ulcerative stomatitis
## 454 Other Vincent's infections
## 455 Lyme disease, unspecified
## 456 Meningitis due to Lyme disease
## 457 Other neurologic disorders in Lyme disease
## 458 Arthritis due to Lyme disease
## 459 Other conditions associated with Lyme disease
## 460 Other specified spirochetal infections
## 461 Spirochetal infection, unspecified
## 462 Chlamydia psittaci infections
## 463 Initial stage of trachoma
## 464 Active stage of trachoma
## 465 Trachoma, unspecified
## 466 Chlamydial conjunctivitis
## 467 Chlamydial peritonitis
## 468 Other chlamydial diseases
## 469 Chlamydial infection, unspecified
## 470 Epidemic louse-borne typhus fever due to Rickettsia prowazekii
## 471 Recrudescent typhus [Brill's disease]
## 472 Typhus fever due to Rickettsia typhi
## 473 Typhus fever due to Rickettsia tsutsugamushi
## 474 Typhus fever, unspecified
## 475 Spotted fever due to Rickettsia rickettsii
## 476 Spotted fever due to Rickettsia conorii
## 477 Spotted fever due to Rickettsia siberica
## 478 Spotted fever due to Rickettsia australis
## 479 Ehrlichiosis, unspecified
## 480 Ehrlichiosis chafeensis [E. chafeensis]
## 481 Other ehrlichiosis
## 482 Other spotted fevers
## 483 Spotted fever, unspecified
## 484 Q fever
## 485 Trench fever
## 486 Rickettsialpox due to Rickettsia akari
## 487 Rickettsiosis due to Ehrlichia sennetsu
## 488 Other specified rickettsioses
## 489 Rickettsiosis, unspecified
## 490 Acute paralytic poliomyelitis, vaccine-associated
## 491 Acute paralytic poliomyelitis, wild virus, imported
## 492 Acute paralytic poliomyelitis, wild virus, indigenous
## 493 Acute paralytic poliomyelitis, unspecified
## 494 Other acute paralytic poliomyelitis
## 495 Acute nonparalytic poliomyelitis
## 496 Acute poliomyelitis, unspecified
## 497 Creutzfeldt-Jakob disease, unspecified
## 498 Variant Creutzfeldt-Jakob disease
## 499 Other Creutzfeldt-Jakob disease
## 500 Subacute sclerosing panencephalitis
## 501 Progressive multifocal leukoencephalopathy
## 502 Kuru
## 503 Gerstmann-Straussler-Scheinker syndrome
## 504 Fatal familial insomnia
## 505 Other atypical virus infections of central nervous system
## 506 Atypical virus infection of central nervous system, unspecified
## 507 Sylvatic rabies
## 508 Urban rabies
## 509 Rabies, unspecified
## 510 Japanese encephalitis
## 511 Western equine encephalitis
## 512 Eastern equine encephalitis
## 513 St Louis encephalitis
## 514 Australian encephalitis
## 515 California encephalitis
## 516 Rocio virus disease
## 517 Other mosquito-borne viral encephalitis
## 518 Mosquito-borne viral encephalitis, unspecified
## 519 Far Eastern tick-borne encephalitis [Russian spring-summer encephalitis]
## 520 Central European tick-borne encephalitis
## 521 Other tick-borne viral encephalitis
## 522 Tick-borne viral encephalitis, unspecified
## 523 Enteroviral encephalitis
## 524 Adenoviral encephalitis
## 525 Arthropod-borne viral encephalitis, unspecified
## 526 Other specified viral encephalitis
## 527 Unspecified viral encephalitis
## 528 Enteroviral meningitis
## 529 Adenoviral meningitis
## 530 Lymphocytic choriomeningitis
## 531 Other viral meningitis
## 532 Viral meningitis, unspecified
## 533 Enteroviral exanthematous fever [Boston exanthem]
## 534 Epidemic vertigo
## 535 Other specified viral infections of central nervous system
## 536 Unspecified viral infection of central nervous system
## 537 Dengue fever [classical dengue]
## 538 Dengue hemorrhagic fever
## 539 Chikungunya virus disease
## 540 O'nyong-nyong fever
## 541 Venezuelan equine fever
## 542 West Nile virus infection, unspecified
## 543 West Nile virus infection with encephalitis
## 544 West Nile virus infection with other neurologic manifestation
## 545 West Nile virus infection with other complications
## 546 Rift Valley fever
## 547 Zika virus disease
## 548 Other specified mosquito-borne viral fevers
## 549 Mosquito-borne viral fever, unspecified
## 550 Oropouche virus disease
## 551 Sandfly fever
## 552 Colorado tick fever
## 553 Other specified arthropod-borne viral fevers
## 554 Unspecified arthropod-borne viral fever
## 555 Sylvatic yellow fever
## 556 Urban yellow fever
## 557 Yellow fever, unspecified
## 558 Junin hemorrhagic fever
## 559 Machupo hemorrhagic fever
## 560 Lassa fever
## 561 Other arenaviral hemorrhagic fevers
## 562 Arenaviral hemorrhagic fever, unspecified
## 563 Crimean-Congo hemorrhagic fever
## 564 Omsk hemorrhagic fever
## 565 Kyasanur Forest disease
## 566 Marburg virus disease
## 567 Ebola virus disease
## 568 Hemorrhagic fever with renal syndrome
## 569 Other specified viral hemorrhagic fevers
## 570 Unspecified viral hemorrhagic fever
## 571 Eczema herpeticum
## 572 Herpesviral vesicular dermatitis
## 573 Herpesviral gingivostomatitis and pharyngotonsillitis
## 574 Herpesviral meningitis
## 575 Herpesviral encephalitis
## 576 Herpesviral ocular disease, unspecified
## 577 Herpesviral iridocyclitis
## 578 Herpesviral keratitis
## 579 Herpesviral conjunctivitis
## 580 Other herpesviral disease of eye
## 581 Disseminated herpesviral disease
## 582 Herpesviral hepatitis
## 583 Herpes simplex myelitis
## 584 Other herpesviral infection
## 585 Herpesviral infection, unspecified
## 586 Varicella meningitis
## 587 Varicella encephalitis and encephalomyelitis
## 588 Varicella myelitis
## 589 Varicella pneumonia
## 590 Varicella keratitis
## 591 Other varicella complications
## 592 Varicella without complication
## 593 Zoster encephalitis
## 594 Zoster meningitis
## 595 Postherpetic geniculate ganglionitis
## 596 Postherpetic trigeminal neuralgia
## 597 Postherpetic polyneuropathy
## 598 Postherpetic myelitis
## 599 Other postherpetic nervous system involvement
## 600 Zoster ocular disease, unspecified
## 601 Zoster conjunctivitis
## 602 Zoster iridocyclitis
## 603 Zoster keratitis
## 604 Zoster scleritis
## 605 Other herpes zoster eye disease
## 606 Disseminated zoster
## 607 Zoster with other complications
## 608 Zoster without complications
## 609 Smallpox
## 610 Monkeypox
## 611 Measles complicated by encephalitis
## 612 Measles complicated by meningitis
## 613 Measles complicated by pneumonia
## 614 Measles complicated by otitis media
## 615 Measles with intestinal complications
## 616 Measles keratitis and keratoconjunctivitis
## 617 Other measles complications
## 618 Measles without complication
## 619 Rubella with neurological complication, unspecified
## 620 Rubella encephalitis
## 621 Rubella meningitis
## 622 Other neurological complications of rubella
## 623 Rubella pneumonia
## 624 Rubella arthritis
## 625 Other rubella complications
## 626 Rubella without complication
## 627 Plantar wart
## 628 Other viral warts
## 629 Viral wart, unspecified
## 630 Cowpox
## 631 Vaccinia not from vaccine
## 632 Orf virus disease
## 633 Pseudocowpox [milker's node]
## 634 Paravaccinia, unspecified
## 635 Other orthopoxvirus infections
## 636 Molluscum contagiosum
## 637 Exanthema subitum [sixth disease], unspecified
## 638 Exanthema subitum [sixth disease] due to human herpesvirus 6
## 639 Exanthema subitum [sixth disease] due to human herpesvirus 7
## 640 Erythema infectiosum [fifth disease]
## 641 Enteroviral vesicular stomatitis with exanthem
## 642 Enteroviral vesicular pharyngitis
## 643 Parapoxvirus infection, unspecified
## 644 Bovine stomatitis
## 645 Sealpox
## 646 Other parapoxvirus infections
## 647 Yatapoxvirus infection, unspecified
## 648 Tanapox virus disease
## 649 Yaba pox virus disease
## 650 Other yatapoxvirus infections
## 651 Other specified viral infections characterized by skin and mucous membrane lesions
## 652 Unspecified viral infection characterized by skin and mucous membrane lesions
## 653 Human herpesvirus 6 encephalitis
## 654 Other human herpesvirus encephalitis
## 655 Human herpesvirus 6 infection
## 656 Human herpesvirus 7 infection
## 657 Other human herpesvirus infection
## 658 Hepatitis A with hepatic coma
## 659 Hepatitis A without hepatic coma
## 660 Acute hepatitis B with delta-agent with hepatic coma
## 661 Acute hepatitis B with delta-agent without hepatic coma
## 662 Acute hepatitis B without delta-agent with hepatic coma
## 663 Acute hepatitis B without delta-agent and without hepatic coma
## 664 Acute delta-(super) infection of hepatitis B carrier
## 665 Acute hepatitis C without hepatic coma
## 666 Acute hepatitis C with hepatic coma
## 667 Acute hepatitis E
## 668 Other specified acute viral hepatitis
## 669 Acute viral hepatitis, unspecified
## 670 Chronic viral hepatitis B with delta-agent
## 671 Chronic viral hepatitis B without delta-agent
## 672 Chronic viral hepatitis C
## 673 Other chronic viral hepatitis
## 674 Chronic viral hepatitis, unspecified
## 675 Unspecified viral hepatitis with hepatic coma
## 676 Unspecified viral hepatitis B without hepatic coma
## 677 Unspecified viral hepatitis B with hepatic coma
## 678 Unspecified viral hepatitis C without hepatic coma
## 679 Unspecified viral hepatitis C with hepatic coma
## 680 Unspecified viral hepatitis without hepatic coma
## 681 Human immunodeficiency virus [HIV] disease
## 682 Cytomegaloviral pneumonitis
## 683 Cytomegaloviral hepatitis
## 684 Cytomegaloviral pancreatitis
## 685 Other cytomegaloviral diseases
## 686 Cytomegaloviral disease, unspecified
## 687 Mumps orchitis
## 688 Mumps meningitis
## 689 Mumps encephalitis
## 690 Mumps pancreatitis
## 691 Mumps hepatitis
## 692 Mumps myocarditis
## 693 Mumps nephritis
## 694 Mumps polyneuropathy
## 695 Mumps arthritis
## 696 Other mumps complications
## 697 Mumps without complication
## 698 Gammaherpesviral mononucleosis without complication
## 699 Gammaherpesviral mononucleosis with polyneuropathy
## 700 Gammaherpesviral mononucleosis with meningitis
## 701 Gammaherpesviral mononucleosis with other complications
## 702 Cytomegaloviral mononucleosis without complications
## 703 Cytomegaloviral mononucleosis with polyneuropathy
## 704 Cytomegaloviral mononucleosis with meningitis
## 705 Cytomegaloviral mononucleosis with other complication
## 706 Other infectious mononucleosis without complication
## 707 Other infectious mononucleosis with polyneuropathy
## 708 Other infectious mononucleosis with meningitis
## 709 Other infectious mononucleosis with other complication
## 710 Infectious mononucleosis, unspecified without complication
## 711 Infectious mononucleosis, unspecified with polyneuropathy
## 712 Infectious mononucleosis, unspecified with meningitis
## 713 Infectious mononucleosis, unspecified with other complication
## 714 Keratoconjunctivitis due to adenovirus
## 715 Conjunctivitis due to adenovirus
## 716 Viral pharyngoconjunctivitis
## 717 Acute epidemic hemorrhagic conjunctivitis (enteroviral)
## 718 Other viral conjunctivitis
## 719 Viral conjunctivitis, unspecified
## 720 Epidemic myalgia
## 721 Ross River disease
## 722 Viral carditis, unspecified
## 723 Viral endocarditis
## 724 Viral myocarditis
## 725 Viral pericarditis
## 726 Viral cardiomyopathy
## 727 Retrovirus infections, not elsewhere classified
## 728 Hantavirus (cardio)-pulmonary syndrome [HPS] [HCPS]
## 729 Other specified viral diseases
## 730 Adenovirus infection, unspecified
## 731 Enterovirus infection, unspecified
## 732 Coronavirus infection, unspecified
## 733 Parvovirus infection, unspecified
## 734 Papovavirus infection, unspecified
## 735 Other viral infections of unspecified site
## 736 Viral infection, unspecified
## 737 Tinea barbae and tinea capitis
## 738 Tinea unguium
## 739 Tinea manuum
## 740 Tinea pedis
## 741 Tinea corporis
## 742 Tinea imbricata
## 743 Tinea cruris
## 744 Other dermatophytoses
## 745 Dermatophytosis, unspecified
## 746 Pityriasis versicolor
## 747 Tinea nigra
## 748 White piedra
## 749 Black piedra
## 750 Other specified superficial mycoses
## 751 Superficial mycosis, unspecified
## 752 Candidal stomatitis
## 753 Pulmonary candidiasis
## 754 Candidiasis of skin and nail
## 755 Candidiasis of vulva and vagina
## 756 Candidal cystitis and urethritis
## 757 Candidal balanitis
## 758 Other urogenital candidiasis
## 759 Candidal meningitis
## 760 Candidal endocarditis
## 761 Candidal sepsis
## 762 Candidal esophagitis
## 763 Candidal enteritis
## 764 Candidal cheilitis
## 765 Candidal otitis externa
## 766 Other sites of candidiasis
## 767 Candidiasis, unspecified
## 768 Acute pulmonary coccidioidomycosis
## 769 Chronic pulmonary coccidioidomycosis
## 770 Pulmonary coccidioidomycosis, unspecified
## 771 Cutaneous coccidioidomycosis
## 772 Coccidioidomycosis meningitis
## 773 Disseminated coccidioidomycosis
## 774 Prostatic coccidioidomycosis
## 775 Other forms of coccidioidomycosis
## 776 Coccidioidomycosis, unspecified
## 777 Acute pulmonary histoplasmosis capsulati
## 778 Chronic pulmonary histoplasmosis capsulati
## 779 Pulmonary histoplasmosis capsulati, unspecified
## 780 Disseminated histoplasmosis capsulati
## 781 Histoplasmosis capsulati, unspecified
## 782 Histoplasmosis duboisii
## 783 Histoplasmosis, unspecified
## 784 Acute pulmonary blastomycosis
## 785 Chronic pulmonary blastomycosis
## 786 Pulmonary blastomycosis, unspecified
## 787 Cutaneous blastomycosis
## 788 Disseminated blastomycosis
## 789 Blastomycotic meningoencephalitis
## 790 Other forms of blastomycosis
## 791 Blastomycosis, unspecified
## 792 Pulmonary paracoccidioidomycosis
## 793 Disseminated paracoccidioidomycosis
## 794 Other forms of paracoccidioidomycosis
## 795 Paracoccidioidomycosis, unspecified
## 796 Pulmonary sporotrichosis
## 797 Lymphocutaneous sporotrichosis
## 798 Disseminated sporotrichosis
## 799 Cerebral sporotrichosis
## 800 Sporotrichosis arthritis
## 801 Other forms of sporotrichosis
## 802 Sporotrichosis, unspecified
## 803 Cutaneous chromomycosis
## 804 Pheomycotic brain abscess
## 805 Subcutaneous pheomycotic abscess and cyst
## 806 Other forms of chromomycosis
## 807 Chromomycosis, unspecified
## 808 Invasive pulmonary aspergillosis
## 809 Other pulmonary aspergillosis
## 810 Tonsillar aspergillosis
## 811 Disseminated aspergillosis
## 812 Allergic bronchopulmonary aspergillosis
## 813 Other forms of aspergillosis
## 814 Aspergillosis, unspecified
## 815 Pulmonary cryptococcosis
## 816 Cerebral cryptococcosis
## 817 Cutaneous cryptococcosis
## 818 Osseous cryptococcosis
## 819 Disseminated cryptococcosis
## 820 Other forms of cryptococcosis
## 821 Cryptococcosis, unspecified
## 822 Pulmonary mucormycosis
## 823 Rhinocerebral mucormycosis
## 824 Gastrointestinal mucormycosis
## 825 Cutaneous mucormycosis
## 826 Disseminated mucormycosis
## 827 Mucormycosis, unspecified
## 828 Other zygomycoses
## 829 Zygomycosis, unspecified
## 830 Eumycetoma
## 831 Actinomycetoma
## 832 Mycetoma, unspecified
## 833 Lobomycosis
## 834 Rhinosporidiosis
## 835 Allescheriasis
## 836 Geotrichosis
## 837 Penicillosis
## 838 Other specified mycoses
## 839 Unspecified mycosis
## 840 Plasmodium falciparum malaria with cerebral complications
## 841 Other severe and complicated Plasmodium falciparum malaria
## 842 Plasmodium falciparum malaria, unspecified
## 843 Plasmodium vivax malaria with rupture of spleen
## 844 Plasmodium vivax malaria with other complications
## 845 Plasmodium vivax malaria without complication
## 846 Plasmodium malariae malaria with nephropathy
## 847 Plasmodium malariae malaria with other complications
## 848 Plasmodium malariae malaria without complication
## 849 Plasmodium ovale malaria
## 850 Malaria due to simian plasmodia
## 851 Other malaria, not elsewhere classified
## 852 Unspecified malaria
## 853 Visceral leishmaniasis
## 854 Cutaneous leishmaniasis
## 855 Mucocutaneous leishmaniasis
## 856 Leishmaniasis, unspecified
## 857 Gambiense trypanosomiasis
## 858 Rhodesiense trypanosomiasis
## 859 African trypanosomiasis, unspecified
## 860 Acute Chagas' disease with heart involvement
## 861 Acute Chagas' disease without heart involvement
## 862 Chagas' disease (chronic) with heart involvement
## 863 Chagas' disease with digestive system involvement, unspecified
## 864 Megaesophagus in Chagas' disease
## 865 Megacolon in Chagas' disease
## 866 Other digestive system involvement in Chagas' disease
## 867 Chagas' disease with nervous system involvement, unspecified
## 868 Meningitis in Chagas' disease
## 869 Meningoencephalitis in Chagas' disease
## 870 Other nervous system involvement in Chagas' disease
## 871 Chagas' disease (chronic) with other organ involvement
## 872 Toxoplasma oculopathy, unspecified
## 873 Toxoplasma chorioretinitis
## 874 Other toxoplasma oculopathy
## 875 Toxoplasma hepatitis
## 876 Toxoplasma meningoencephalitis
## 877 Pulmonary toxoplasmosis
## 878 Toxoplasma myocarditis
## 879 Toxoplasma myositis
## 880 Toxoplasma tubulo-interstitial nephropathy
## 881 Toxoplasmosis with other organ involvement
## 882 Toxoplasmosis, unspecified
## 883 Pneumocystosis
## 884 Babesiosis
## 885 Acanthamebiasis, unspecified
## 886 Meningoencephalitis due to Acanthamoeba (culbertsoni)
## 887 Conjunctivitis due to Acanthamoeba
## 888 Keratoconjunctivitis due to Acanthamoeba
## 889 Other acanthamebic disease
## 890 Naegleriasis
## 891 Other specified protozoal diseases
## 892 Unspecified protozoal disease
## 893 Schistosomiasis due to Schistosoma haematobium [urinary schistosomiasis]
## 894 Schistosomiasis due to Schistosoma mansoni [intestinal schistosomiasis]
## 895 Schistosomiasis due to Schistosoma japonicum
## 896 Cercarial dermatitis
## 897 Other schistosomiasis
## 898 Schistosomiasis, unspecified
## 899 Opisthorchiasis
## 900 Clonorchiasis
## 901 Dicroceliasis
## 902 Fascioliasis
## 903 Paragonimiasis
## 904 Fasciolopsiasis
## 905 Other specified fluke infections
## 906 Fluke infection, unspecified
## 907 Echinococcus granulosus infection of liver
## 908 Echinococcus granulosus infection of lung
## 909 Echinococcus granulosus infection of bone
## 910 Echinococcus granulosus infection, thyroid gland
## 911 Echinococcus granulosus infection, multiple sites
## 912 Echinococcus granulosus infection, other sites
## 913 Echinococcus granulosus infection, unspecified
## 914 Echinococcus multilocularis infection of liver
## 915 Echinococcus multilocularis infection, multiple sites
## 916 Echinococcus multilocularis infection, other sites
## 917 Echinococcus multilocularis infection, unspecified
## 918 Echinococcosis, unspecified, of liver
## 919 Echinococcosis, unspecified
## 920 Other echinococcosis
## 921 Taenia solium taeniasis
## 922 Taenia saginata taeniasis
## 923 Taeniasis, unspecified
## 924 Cysticercosis of central nervous system
## 925 Cysticercosis of eye
## 926 Myositis in cysticercosis
## 927 Cysticercosis of other sites
## 928 Cysticercosis, unspecified
## 929 Diphyllobothriasis
## 930 Sparganosis
## 931 Hymenolepiasis
## 932 Dipylidiasis
## 933 Other specified cestode infections
## 934 Cestode infection, unspecified
## 935 Dracunculiasis
## 936 Onchocerciasis with eye involvement, unspecified
## 937 Onchocerciasis with endophthalmitis
## 938 Onchocerciasis with glaucoma
## 939 Onchocerciasis with other eye involvement
## 940 Onchocerciasis without eye disease
## 941 Filariasis due to Wuchereria bancrofti
## 942 Filariasis due to Brugia malayi
## 943 Filariasis due to Brugia timori
## 944 Loiasis
## 945 Mansonelliasis
## 946 Other filariases
## 947 Filariasis, unspecified
## 948 Trichinellosis
## 949 Ancylostomiasis
## 950 Necatoriasis
## 951 Other hookworm diseases
## 952 Hookworm disease, unspecified
## 953 Ascariasis with intestinal complications
## 954 Ascariasis pneumonia
## 955 Ascariasis with other complications
## 956 Ascariasis, unspecified
## 957 Intestinal strongyloidiasis
## 958 Cutaneous strongyloidiasis
## 959 Disseminated strongyloidiasis
## 960 Strongyloidiasis, unspecified
## 961 Trichuriasis
## 962 Enterobiasis
## 963 Anisakiasis
## 964 Intestinal capillariasis
## 965 Trichostrongyliasis
## 966 Intestinal angiostrongyliasis
## 967 Mixed intestinal helminthiases
## 968 Other specified intestinal helminthiases
## 969 Intestinal helminthiasis, unspecified
## 970 Intestinal parasitism, unspecified
## 971 Visceral larva migrans
## 972 Gnathostomiasis
## 973 Angiostrongyliasis due to Parastrongylus cantonensis
## 974 Syngamiasis
## 975 Internal hirudiniasis
## 976 Other specified helminthiases
## 977 Helminthiasis, unspecified
## 978 Pediculosis due to Pediculus humanus capitis
## 979 Pediculosis due to Pediculus humanus corporis
## 980 Pediculosis, unspecified
## 981 Phthiriasis
## 982 Mixed pediculosis and phthiriasis
## 983 Scabies
## 984 Cutaneous myiasis
## 985 Wound myiasis
## 986 Ocular myiasis
## 987 Nasopharyngeal myiasis
## 988 Aural myiasis
## 989 Genitourinary myiasis
## 990 Intestinal myiasis
## 991 Myiasis of other sites
## 992 Myiasis, unspecified
## 993 Other acariasis
## 994 Tungiasis [sandflea infestation]
## 995 Other arthropod infestations
## 996 External hirudiniasis
## 997 Other specified infestations
## 998 Infestation, unspecified
## 999 Unspecified parasitic disease
## 1000 Sequelae of central nervous system tuberculosis
## 1001 Sequelae of genitourinary tuberculosis
## 1002 Sequelae of tuberculosis of bones and joints
## 1003 Sequelae of tuberculosis of other organs
## 1004 Sequelae of respiratory and unspecified tuberculosis
## 1005 Sequelae of poliomyelitis
## 1006 Sequelae of leprosy
## 1007 Sequelae of trachoma
## 1008 Sequelae of viral encephalitis
## 1009 Sequelae of viral hepatitis
## 1010 Sequelae of other specified infectious and parasitic diseases
## 1011 Sequelae of unspecified infectious and parasitic disease
## 1012 Streptococcus, group A, as the cause of diseases classified elsewhere
## 1013 Streptococcus, group B, as the cause of diseases classified elsewhere
## 1014 Enterococcus as the cause of diseases classified elsewhere
## 1015 Streptococcus pneumoniae as the cause of diseases classified elsewhere
## 1016 Other streptococcus as the cause of diseases classified elsewhere
## 1017 Unspecified streptococcus as the cause of diseases classified elsewhere
## 1018 Methicillin susceptible Staphylococcus aureus infection as the cause of diseases classified elsewhere
## 1019 Methicillin resistant Staphylococcus aureus infection as the cause of diseases classified elsewhere
## 1020 Other staphylococcus as the cause of diseases classified elsewhere
## 1021 Unspecified staphylococcus as the cause of diseases classified elsewhere
## 1022 Mycoplasma pneumoniae [M. pneumoniae] as the cause of diseases classified elsewhere
## 1023 Klebsiella pneumoniae [K. pneumoniae] as the cause of diseases classified elsewhere
## 1024 Unspecified Escherichia coli [E. coli] as the cause of diseases classified elsewhere
## 1025 Shiga toxin-producing Escherichia coli [E. coli] [STEC] O157 as the cause of diseases classified elsewhere
## 1026 Other specified Shiga toxin-producing Escherichia coli [E. coli] [STEC] as the cause of diseases classified elsewhere
## 1027 Unspecified Shiga toxin-producing Escherichia coli [E. coli] [STEC] as the cause of diseases classified elsewhere
## 1028 Other Escherichia coli [E. coli] as the cause of diseases classified elsewhere
## 1029 Hemophilus influenzae [H. influenzae] as the cause of diseases classified elsewhere
## 1030 Proteus (mirabilis) (morganii) as the cause of diseases classified elsewhere
## 1031 Pseudomonas (aeruginosa) (mallei) (pseudomallei) as the cause of diseases classified elsewhere
## 1032 Bacteroides fragilis [B. fragilis] as the cause of diseases classified elsewhere
## 1033 Clostridium perfringens [C. perfringens] as the cause of diseases classified elsewhere
## 1034 Helicobacter pylori [H. pylori] as the cause of diseases classified elsewhere
## 1035 Vibrio vulnificus as the cause of diseases classified elsewhere
## 1036 Other specified bacterial agents as the cause of diseases classified elsewhere
## 1037 Adenovirus as the cause of diseases classified elsewhere
## 1038 Unspecified enterovirus as the cause of diseases classified elsewhere
## 1039 Coxsackievirus as the cause of diseases classified elsewhere
## 1040 Echovirus as the cause of diseases classified elsewhere
## 1041 Other enterovirus as the cause of diseases classified elsewhere
## 1042 SARS-associated coronavirus as the cause of diseases classified elsewhere
## 1043 Other coronavirus as the cause of diseases classified elsewhere
## 1044 Unspecified retrovirus as the cause of diseases classified elsewhere
## 1045 Lentivirus as the cause of diseases classified elsewhere
## 1046 Oncovirus as the cause of diseases classified elsewhere
## 1047 Human T-cell lymphotrophic virus, type I [HTLV-I] as the cause of diseases classified elsewhere
## 1048 Human T-cell lymphotrophic virus, type II [HTLV-II] as the cause of diseases classified elsewhere
## 1049 Human immunodeficiency virus, type 2 [HIV 2] as the cause of diseases classified elsewhere
## 1050 Other retrovirus as the cause of diseases classified elsewhere
## 1051 Respiratory syncytial virus as the cause of diseases classified elsewhere
## 1052 Reovirus as the cause of diseases classified elsewhere
## 1053 Parvovirus as the cause of diseases classified elsewhere
## 1054 Papillomavirus as the cause of diseases classified elsewhere
## 1055 Human metapneumovirus as the cause of diseases classified elsewhere
## 1056 Other viral agents as the cause of diseases classified elsewhere
## 1057 Other infectious disease
## 1058 Unspecified infectious disease
## 1059 Malignant neoplasm of external upper lip
## 1060 Malignant neoplasm of external lower lip
## 1061 Malignant neoplasm of external lip, unspecified
## 1062 Malignant neoplasm of upper lip, inner aspect
## 1063 Malignant neoplasm of lower lip, inner aspect
## 1064 Malignant neoplasm of lip, unspecified, inner aspect
## 1065 Malignant neoplasm of commissure of lip, unspecified
## 1066 Malignant neoplasm of overlapping sites of lip
## 1067 Malignant neoplasm of lip, unspecified
## 1068 Malignant neoplasm of base of tongue
## 1069 Malignant neoplasm of dorsal surface of tongue
## 1070 Malignant neoplasm of border of tongue
## 1071 Malignant neoplasm of ventral surface of tongue
## 1072 Malignant neoplasm of anterior two-thirds of tongue, part unspecified
## 1073 Malignant neoplasm of lingual tonsil
## 1074 Malignant neoplasm of overlapping sites of tongue
## 1075 Malignant neoplasm of tongue, unspecified
## 1076 Malignant neoplasm of upper gum
## 1077 Malignant neoplasm of lower gum
## 1078 Malignant neoplasm of gum, unspecified
## 1079 Malignant neoplasm of anterior floor of mouth
## 1080 Malignant neoplasm of lateral floor of mouth
## 1081 Malignant neoplasm of overlapping sites of floor of mouth
## 1082 Malignant neoplasm of floor of mouth, unspecified
## 1083 Malignant neoplasm of hard palate
## 1084 Malignant neoplasm of soft palate
## 1085 Malignant neoplasm of uvula
## 1086 Malignant neoplasm of overlapping sites of palate
## 1087 Malignant neoplasm of palate, unspecified
## 1088 Malignant neoplasm of cheek mucosa
## 1089 Malignant neoplasm of vestibule of mouth
## 1090 Malignant neoplasm of retromolar area
## 1091 Malignant neoplasm of overlapping sites of unspecified parts of mouth
## 1092 Malignant neoplasm of overlapping sites of other parts of mouth
## 1093 Malignant neoplasm of mouth, unspecified
## 1094 Malignant neoplasm of parotid gland
## 1095 Malignant neoplasm of submandibular gland
## 1096 Malignant neoplasm of sublingual gland
## 1097 Malignant neoplasm of major salivary gland, unspecified
## 1098 Malignant neoplasm of tonsillar fossa
## 1099 Malignant neoplasm of tonsillar pillar (anterior) (posterior)
## 1100 Malignant neoplasm of overlapping sites of tonsil
## 1101 Malignant neoplasm of tonsil, unspecified
## 1102 Malignant neoplasm of vallecula
## 1103 Malignant neoplasm of anterior surface of epiglottis
## 1104 Malignant neoplasm of lateral wall of oropharynx
## 1105 Malignant neoplasm of posterior wall of oropharynx
## 1106 Malignant neoplasm of branchial cleft
## 1107 Malignant neoplasm of overlapping sites of oropharynx
## 1108 Malignant neoplasm of oropharynx, unspecified
## 1109 Malignant neoplasm of superior wall of nasopharynx
## 1110 Malignant neoplasm of posterior wall of nasopharynx
## 1111 Malignant neoplasm of lateral wall of nasopharynx
## 1112 Malignant neoplasm of anterior wall of nasopharynx
## 1113 Malignant neoplasm of overlapping sites of nasopharynx
## 1114 Malignant neoplasm of nasopharynx, unspecified
## 1115 Malignant neoplasm of pyriform sinus
## 1116 Malignant neoplasm of postcricoid region
## 1117 Malignant neoplasm of aryepiglottic fold, hypopharyngeal aspect
## 1118 Malignant neoplasm of posterior wall of hypopharynx
## 1119 Malignant neoplasm of overlapping sites of hypopharynx
## 1120 Malignant neoplasm of hypopharynx, unspecified
## 1121 Malignant neoplasm of pharynx, unspecified
## 1122 Malignant neoplasm of Waldeyer's ring
## 1123 Malignant neoplasm of overlapping sites of lip, oral cavity and pharynx
## 1124 Malignant neoplasm of upper third of esophagus
## 1125 Malignant neoplasm of middle third of esophagus
## 1126 Malignant neoplasm of lower third of esophagus
## 1127 Malignant neoplasm of overlapping sites of esophagus
## 1128 Malignant neoplasm of esophagus, unspecified
## 1129 Malignant neoplasm of cardia
## 1130 Malignant neoplasm of fundus of stomach
## 1131 Malignant neoplasm of body of stomach
## 1132 Malignant neoplasm of pyloric antrum
## 1133 Malignant neoplasm of pylorus
## 1134 Malignant neoplasm of lesser curvature of stomach, unspecified
## 1135 Malignant neoplasm of greater curvature of stomach, unspecified
## 1136 Malignant neoplasm of overlapping sites of stomach
## 1137 Malignant neoplasm of stomach, unspecified
## 1138 Malignant neoplasm of duodenum
## 1139 Malignant neoplasm of jejunum
## 1140 Malignant neoplasm of ileum
## 1141 Meckel's diverticulum, malignant
## 1142 Malignant neoplasm of overlapping sites of small intestine
## 1143 Malignant neoplasm of small intestine, unspecified
## 1144 Malignant neoplasm of cecum
## 1145 Malignant neoplasm of appendix
## 1146 Malignant neoplasm of ascending colon
## 1147 Malignant neoplasm of hepatic flexure
## 1148 Malignant neoplasm of transverse colon
## 1149 Malignant neoplasm of splenic flexure
## 1150 Malignant neoplasm of descending colon
## 1151 Malignant neoplasm of sigmoid colon
## 1152 Malignant neoplasm of overlapping sites of colon
## 1153 Malignant neoplasm of colon, unspecified
## 1154 Malignant neoplasm of rectosigmoid junction
## 1155 Malignant neoplasm of rectum
## 1156 Malignant neoplasm of anus, unspecified
## 1157 Malignant neoplasm of anal canal
## 1158 Malignant neoplasm of cloacogenic zone
## 1159 Malignant neoplasm of overlapping sites of rectum, anus and anal canal
## 1160 Liver cell carcinoma
## 1161 Intrahepatic bile duct carcinoma
## 1162 Hepatoblastoma
## 1163 Angiosarcoma of liver
## 1164 Other sarcomas of liver
## 1165 Other specified carcinomas of liver
## 1166 Malignant neoplasm of liver, primary, unspecified as to type
## 1167 Malignant neoplasm of liver, not specified as primary or secondary
## 1168 Malignant neoplasm of gallbladder
## 1169 Malignant neoplasm of extrahepatic bile duct
## 1170 Malignant neoplasm of ampulla of Vater
## 1171 Malignant neoplasm of overlapping sites of biliary tract
## 1172 Malignant neoplasm of biliary tract, unspecified
## 1173 Malignant neoplasm of head of pancreas
## 1174 Malignant neoplasm of body of pancreas
## 1175 Malignant neoplasm of tail of pancreas
## 1176 Malignant neoplasm of pancreatic duct
## 1177 Malignant neoplasm of endocrine pancreas
## 1178 Malignant neoplasm of other parts of pancreas
## 1179 Malignant neoplasm of overlapping sites of pancreas
## 1180 Malignant neoplasm of pancreas, unspecified
## 1181 Malignant neoplasm of intestinal tract, part unspecified
## 1182 Malignant neoplasm of spleen
## 1183 Malignant neoplasm of ill-defined sites within the digestive system
## 1184 Malignant neoplasm of nasal cavity
## 1185 Malignant neoplasm of middle ear
## 1186 Malignant neoplasm of maxillary sinus
## 1187 Malignant neoplasm of ethmoidal sinus
## 1188 Malignant neoplasm of frontal sinus
## 1189 Malignant neoplasm of sphenoid sinus
## 1190 Malignant neoplasm of overlapping sites of accessory sinuses
## 1191 Malignant neoplasm of accessory sinus, unspecified
## 1192 Malignant neoplasm of glottis
## 1193 Malignant neoplasm of supraglottis
## 1194 Malignant neoplasm of subglottis
## 1195 Malignant neoplasm of laryngeal cartilage
## 1196 Malignant neoplasm of overlapping sites of larynx
## 1197 Malignant neoplasm of larynx, unspecified
## 1198 Malignant neoplasm of trachea
## 1199 Malignant neoplasm of unspecified main bronchus
## 1200 Malignant neoplasm of right main bronchus
## 1201 Malignant neoplasm of left main bronchus
## 1202 Malignant neoplasm of upper lobe, unspecified bronchus or lung
## 1203 Malignant neoplasm of upper lobe, right bronchus or lung
## 1204 Malignant neoplasm of upper lobe, left bronchus or lung
## 1205 Malignant neoplasm of middle lobe, bronchus or lung
## 1206 Malignant neoplasm of lower lobe, unspecified bronchus or lung
## 1207 Malignant neoplasm of lower lobe, right bronchus or lung
## 1208 Malignant neoplasm of lower lobe, left bronchus or lung
## 1209 Malignant neoplasm of overlapping sites of unspecified bronchus and lung
## 1210 Malignant neoplasm of overlapping sites of right bronchus and lung
## 1211 Malignant neoplasm of overlapping sites of left bronchus and lung
## 1212 Malignant neoplasm of unspecified part of unspecified bronchus or lung
## 1213 Malignant neoplasm of unspecified part of right bronchus or lung
## 1214 Malignant neoplasm of unspecified part of left bronchus or lung
## 1215 Malignant neoplasm of thymus
## 1216 Malignant neoplasm of heart
## 1217 Malignant neoplasm of anterior mediastinum
## 1218 Malignant neoplasm of posterior mediastinum
## 1219 Malignant neoplasm of mediastinum, part unspecified
## 1220 Malignant neoplasm of pleura
## 1221 Malignant neoplasm of overlapping sites of heart, mediastinum and pleura
## 1222 Malignant neoplasm of upper respiratory tract, part unspecified
## 1223 Malignant neoplasm of lower respiratory tract, part unspecified
## 1224 Malignant neoplasm of scapula and long bones of unspecified upper limb
## 1225 Malignant neoplasm of scapula and long bones of right upper limb
## 1226 Malignant neoplasm of scapula and long bones of left upper limb
## 1227 Malignant neoplasm of short bones of unspecified upper limb
## 1228 Malignant neoplasm of short bones of right upper limb
## 1229 Malignant neoplasm of short bones of left upper limb
## 1230 Malignant neoplasm of long bones of unspecified lower limb
## 1231 Malignant neoplasm of long bones of right lower limb
## 1232 Malignant neoplasm of long bones of left lower limb
## 1233 Malignant neoplasm of short bones of unspecified lower limb
## 1234 Malignant neoplasm of short bones of right lower limb
## 1235 Malignant neoplasm of short bones of left lower limb
## 1236 Malignant neoplasm of overlapping sites of bone and articular cartilage of unspecified limb
## 1237 Malignant neoplasm of overlapping sites of bone and articular cartilage of right limb
## 1238 Malignant neoplasm of overlapping sites of bone and articular cartilage of left limb
## 1239 Malignant neoplasm of unspecified bones and articular cartilage of unspecified limb
## 1240 Malignant neoplasm of unspecified bones and articular cartilage of right limb
## 1241 Malignant neoplasm of unspecified bones and articular cartilage of left limb
## 1242 Malignant neoplasm of bones of skull and face
## 1243 Malignant neoplasm of mandible
## 1244 Malignant neoplasm of vertebral column
## 1245 Malignant neoplasm of ribs, sternum and clavicle
## 1246 Malignant neoplasm of pelvic bones, sacrum and coccyx
## 1247 Malignant neoplasm of bone and articular cartilage, unspecified
## 1248 Malignant melanoma of lip
## 1249 Malignant melanoma of unspecified eyelid, including canthus
## 1250 Malignant melanoma of right upper eyelid, including canthus
## 1251 Malignant melanoma of right lower eyelid, including canthus
## 1252 Malignant melanoma of left upper eyelid, including canthus
## 1253 Malignant melanoma of left lower eyelid, including canthus
## 1254 Malignant melanoma of unspecified ear and external auricular canal
## 1255 Malignant melanoma of right ear and external auricular canal
## 1256 Malignant melanoma of left ear and external auricular canal
## 1257 Malignant melanoma of unspecified part of face
## 1258 Malignant melanoma of nose
## 1259 Malignant melanoma of other parts of face
## 1260 Malignant melanoma of scalp and neck
## 1261 Malignant melanoma of anal skin
## 1262 Malignant melanoma of skin of breast
## 1263 Malignant melanoma of other part of trunk
## 1264 Malignant melanoma of unspecified upper limb, including shoulder
## 1265 Malignant melanoma of right upper limb, including shoulder
## 1266 Malignant melanoma of left upper limb, including shoulder
## 1267 Malignant melanoma of unspecified lower limb, including hip
## 1268 Malignant melanoma of right lower limb, including hip
## 1269 Malignant melanoma of left lower limb, including hip
## 1270 Malignant melanoma of overlapping sites of skin
## 1271 Malignant melanoma of skin, unspecified
## 1272 Merkel cell carcinoma of lip
## 1273 Merkel cell carcinoma of unspecified eyelid, including canthus
## 1274 Merkel cell carcinoma of right upper eyelid, including canthus
## 1275 Merkel cell carcinoma of right lower eyelid, including canthus
## 1276 Merkel cell carcinoma of left upper eyelid, including canthus
## 1277 Merkel cell carcinoma of left lower eyelid, including canthus
## 1278 Merkel cell carcinoma of unspecified ear and external auricular canal
## 1279 Merkel cell carcinoma of right ear and external auricular canal
## 1280 Merkel cell carcinoma of left ear and external auricular canal
## 1281 Merkel cell carcinoma of unspecified part of face
## 1282 Merkel cell carcinoma of nose
## 1283 Merkel cell carcinoma of other parts of face
## 1284 Merkel cell carcinoma of scalp and neck
## 1285 Merkel cell carcinoma of anal skin
## 1286 Merkel cell carcinoma of skin of breast
## 1287 Merkel cell carcinoma of other part of trunk
## 1288 Merkel cell carcinoma of unspecified upper limb, including shoulder
## 1289 Merkel cell carcinoma of right upper limb, including shoulder
## 1290 Merkel cell carcinoma of left upper limb, including shoulder
## 1291 Merkel cell carcinoma of unspecified lower limb, including hip
## 1292 Merkel cell carcinoma of right lower limb, including hip
## 1293 Merkel cell carcinoma of left lower limb, including hip
## 1294 Merkel cell carcinoma of overlapping sites
## 1295 Merkel cell carcinoma, unspecified
## 1296 Unspecified malignant neoplasm of skin of lip
## 1297 Basal cell carcinoma of skin of lip
## 1298 Squamous cell carcinoma of skin of lip
## 1299 Other specified malignant neoplasm of skin of lip
## 1300 Unspecified malignant neoplasm of skin of unspecified eyelid, including canthus
## 1301 Unspecified malignant neoplasm of skin of right upper eyelid, including canthus
## 1302 Unspecified malignant neoplasm of skin of right lower eyelid, including canthus
## 1303 Unspecified malignant neoplasm of skin of left upper eyelid, including canthus
## 1304 Unspecified malignant neoplasm of skin of left lower eyelid, including canthus
## 1305 Basal cell carcinoma of skin of unspecified eyelid, including canthus
## 1306 Basal cell carcinoma of skin of right upper eyelid, including canthus
## 1307 Basal cell carcinoma of skin of right lower eyelid, including canthus
## 1308 Basal cell carcinoma of skin of left upper eyelid, including canthus
## 1309 Basal cell carcinoma of skin of left lower eyelid, including canthus
## 1310 Squamous cell carcinoma of skin of unspecified eyelid, including canthus
## 1311 Squamous cell carcinoma of skin of right upper eyelid, including canthus
## 1312 Squamous cell carcinoma of skin of right lower eyelid, including canthus
## 1313 Squamous cell carcinoma of skin of left upper eyelid, including canthus
## 1314 Squamous cell carcinoma of skin of left lower eyelid, including canthus
## 1315 Sebaceous cell carcinoma of skin of unspecified eyelid, including canthus
## 1316 Sebaceous cell carcinoma of skin of right upper eyelid, including canthus
## 1317 Sebaceous cell carcinoma of skin of right lower eyelid, including canthus
## 1318 Sebaceous cell carcinoma of skin of left upper eyelid, including canthus
## 1319 Sebaceous cell carcinoma of skin of left lower eyelid, including canthus
## 1320 Other specified malignant neoplasm of skin of unspecified eyelid, including canthus
## 1321 Other specified malignant neoplasm of skin of right upper eyelid, including canthus
## 1322 Other specified malignant neoplasm of skin of right lower eyelid, including canthus
## 1323 Other specified malignant neoplasm of skin of left upper eyelid, including canthus
## 1324 Other specified malignant neoplasm of skin of left lower eyelid, including canthus
## 1325 Unspecified malignant neoplasm of skin of unspecified ear and external auricular canal
## 1326 Unspecified malignant neoplasm of skin of right ear and external auricular canal
## 1327 Unspecified malignant neoplasm of skin of left ear and external auricular canal
## 1328 Basal cell carcinoma of skin of unspecified ear and external auricular canal
## 1329 Basal cell carcinoma of skin of right ear and external auricular canal
## 1330 Basal cell carcinoma of skin of left ear and external auricular canal
## 1331 Squamous cell carcinoma of skin of unspecified ear and external auricular canal
## 1332 Squamous cell carcinoma of skin of right ear and external auricular canal
## 1333 Squamous cell carcinoma of skin of left ear and external auricular canal
## 1334 Other specified malignant neoplasm of skin of unspecified ear and external auricular canal
## 1335 Other specified malignant neoplasm of skin of right ear and external auricular canal
## 1336 Other specified malignant neoplasm of skin of left ear and external auricular canal
## 1337 Unspecified malignant neoplasm of skin of unspecified part of face
## 1338 Unspecified malignant neoplasm of skin of nose
## 1339 Unspecified malignant neoplasm of skin of other parts of face
## 1340 Basal cell carcinoma of skin of unspecified parts of face
## 1341 Basal cell carcinoma of skin of nose
## 1342 Basal cell carcinoma of skin of other parts of face
## 1343 Squamous cell carcinoma of skin of unspecified parts of face
## 1344 Squamous cell carcinoma of skin of nose
## 1345 Squamous cell carcinoma of skin of other parts of face
## 1346 Other specified malignant neoplasm of skin of unspecified parts of face
## 1347 Other specified malignant neoplasm of skin of nose
## 1348 Other specified malignant neoplasm of skin of other parts of face
## 1349 Unspecified malignant neoplasm of skin of scalp and neck
## 1350 Basal cell carcinoma of skin of scalp and neck
## 1351 Squamous cell carcinoma of skin of scalp and neck
## 1352 Other specified malignant neoplasm of skin of scalp and neck
## 1353 Unspecified malignant neoplasm of anal skin
## 1354 Unspecified malignant neoplasm of skin of breast
## 1355 Unspecified malignant neoplasm of skin of other part of trunk
## 1356 Basal cell carcinoma of anal skin
## 1357 Basal cell carcinoma of skin of breast
## 1358 Basal cell carcinoma of skin of other part of trunk
## 1359 Squamous cell carcinoma of anal skin
## 1360 Squamous cell carcinoma of skin of breast
## 1361 Squamous cell carcinoma of skin of other part of trunk
## 1362 Other specified malignant neoplasm of anal skin
## 1363 Other specified malignant neoplasm of skin of breast
## 1364 Other specified malignant neoplasm of skin of other part of trunk
## 1365 Unspecified malignant neoplasm of skin of unspecified upper limb, including shoulder
## 1366 Unspecified malignant neoplasm of skin of right upper limb, including shoulder
## 1367 Unspecified malignant neoplasm of skin of left upper limb, including shoulder
## 1368 Basal cell carcinoma of skin of unspecified upper limb, including shoulder
## 1369 Basal cell carcinoma of skin of right upper limb, including shoulder
## 1370 Basal cell carcinoma of skin of left upper limb, including shoulder
## 1371 Squamous cell carcinoma of skin of unspecified upper limb, including shoulder
## 1372 Squamous cell carcinoma of skin of right upper limb, including shoulder
## 1373 Squamous cell carcinoma of skin of left upper limb, including shoulder
## 1374 Other specified malignant neoplasm of skin of unspecified upper limb, including shoulder
## 1375 Other specified malignant neoplasm of skin of right upper limb, including shoulder
## 1376 Other specified malignant neoplasm of skin of left upper limb, including shoulder
## 1377 Unspecified malignant neoplasm of skin of unspecified lower limb, including hip
## 1378 Unspecified malignant neoplasm of skin of right lower limb, including hip
## 1379 Unspecified malignant neoplasm of skin of left lower limb, including hip
## 1380 Basal cell carcinoma of skin of unspecified lower limb, including hip
## 1381 Basal cell carcinoma of skin of right lower limb, including hip
## 1382 Basal cell carcinoma of skin of left lower limb, including hip
## 1383 Squamous cell carcinoma of skin of unspecified lower limb, including hip
## 1384 Squamous cell carcinoma of skin of right lower limb, including hip
## 1385 Squamous cell carcinoma of skin of left lower limb, including hip
## 1386 Other specified malignant neoplasm of skin of unspecified lower limb, including hip
## 1387 Other specified malignant neoplasm of skin of right lower limb, including hip
## 1388 Other specified malignant neoplasm of skin of left lower limb, including hip
## 1389 Unspecified malignant neoplasm of overlapping sites of skin
## 1390 Basal cell carcinoma of overlapping sites of skin
## 1391 Squamous cell carcinoma of overlapping sites of skin
## 1392 Other specified malignant neoplasm of overlapping sites of skin
## 1393 Unspecified malignant neoplasm of skin, unspecified
## 1394 Basal cell carcinoma of skin, unspecified
## 1395 Squamous cell carcinoma of skin, unspecified
## 1396 Other specified malignant neoplasm of skin, unspecified
## 1397 Mesothelioma of pleura
## 1398 Mesothelioma of peritoneum
## 1399 Mesothelioma of pericardium
## 1400 Mesothelioma of other sites
## 1401 Mesothelioma, unspecified
## 1402 Kaposi's sarcoma of skin
## 1403 Kaposi's sarcoma of soft tissue
## 1404 Kaposi's sarcoma of palate
## 1405 Kaposi's sarcoma of lymph nodes
## 1406 Kaposi's sarcoma of gastrointestinal sites
## 1407 Kaposi's sarcoma of unspecified lung
## 1408 Kaposi's sarcoma of right lung
## 1409 Kaposi's sarcoma of left lung
## 1410 Kaposi's sarcoma of other sites
## 1411 Kaposi's sarcoma, unspecified
## 1412 Malignant neoplasm of peripheral nerves of head, face and neck
## 1413 Malignant neoplasm of peripheral nerves of unspecified upper limb, including shoulder
## 1414 Malignant neoplasm of peripheral nerves of right upper limb, including shoulder
## 1415 Malignant neoplasm of peripheral nerves of left upper limb, including shoulder
## 1416 Malignant neoplasm of peripheral nerves of unspecified lower limb, including hip
## 1417 Malignant neoplasm of peripheral nerves of right lower limb, including hip
## 1418 Malignant neoplasm of peripheral nerves of left lower limb, including hip
## 1419 Malignant neoplasm of peripheral nerves of thorax
## 1420 Malignant neoplasm of peripheral nerves of abdomen
## 1421 Malignant neoplasm of peripheral nerves of pelvis
## 1422 Malignant neoplasm of peripheral nerves of trunk, unspecified
## 1423 Malignant neoplasm of overlapping sites of peripheral nerves and autonomic nervous system
## 1424 Malignant neoplasm of peripheral nerves and autonomic nervous system, unspecified
## 1425 Malignant neoplasm of retroperitoneum
## 1426 Malignant neoplasm of specified parts of peritoneum
## 1427 Malignant neoplasm of peritoneum, unspecified
## 1428 Malignant neoplasm of overlapping sites of retroperitoneum and peritoneum
## 1429 Malignant neoplasm of connective and soft tissue of head, face and neck
## 1430 Malignant neoplasm of connective and soft tissue of unspecified upper limb, including shoulder
## 1431 Malignant neoplasm of connective and soft tissue of right upper limb, including shoulder
## 1432 Malignant neoplasm of connective and soft tissue of left upper limb, including shoulder
## 1433 Malignant neoplasm of connective and soft tissue of unspecified lower limb, including hip
## 1434 Malignant neoplasm of connective and soft tissue of right lower limb, including hip
## 1435 Malignant neoplasm of connective and soft tissue of left lower limb, including hip
## 1436 Malignant neoplasm of connective and soft tissue of thorax
## 1437 Malignant neoplasm of connective and soft tissue of abdomen
## 1438 Malignant neoplasm of connective and soft tissue of pelvis
## 1439 Malignant neoplasm of connective and soft tissue of trunk, unspecified
## 1440 Malignant neoplasm of overlapping sites of connective and soft tissue
## 1441 Malignant neoplasm of connective and soft tissue, unspecified
## 1442 Gastrointestinal stromal tumor, unspecified site
## 1443 Gastrointestinal stromal tumor of esophagus
## 1444 Gastrointestinal stromal tumor of stomach
## 1445 Gastrointestinal stromal tumor of small intestine
## 1446 Gastrointestinal stromal tumor of large intestine
## 1447 Gastrointestinal stromal tumor of rectum
## 1448 Gastrointestinal stromal tumor of other sites
## 1449 Malignant neoplasm of nipple and areola, right female breast
## 1450 Malignant neoplasm of nipple and areola, left female breast
## 1451 Malignant neoplasm of nipple and areola, unspecified female breast
## 1452 Malignant neoplasm of nipple and areola, right male breast
## 1453 Malignant neoplasm of nipple and areola, left male breast
## 1454 Malignant neoplasm of nipple and areola, unspecified male breast
## 1455 Malignant neoplasm of central portion of right female breast
## 1456 Malignant neoplasm of central portion of left female breast
## 1457 Malignant neoplasm of central portion of unspecified female breast
## 1458 Malignant neoplasm of central portion of right male breast
## 1459 Malignant neoplasm of central portion of left male breast
## 1460 Malignant neoplasm of central portion of unspecified male breast
## 1461 Malignant neoplasm of upper-inner quadrant of right female breast
## 1462 Malignant neoplasm of upper-inner quadrant of left female breast
## 1463 Malignant neoplasm of upper-inner quadrant of unspecified female breast
## 1464 Malignant neoplasm of upper-inner quadrant of right male breast
## 1465 Malignant neoplasm of upper-inner quadrant of left male breast
## 1466 Malignant neoplasm of upper-inner quadrant of unspecified male breast
## 1467 Malignant neoplasm of lower-inner quadrant of right female breast
## 1468 Malignant neoplasm of lower-inner quadrant of left female breast
## 1469 Malignant neoplasm of lower-inner quadrant of unspecified female breast
## 1470 Malignant neoplasm of lower-inner quadrant of right male breast
## 1471 Malignant neoplasm of lower-inner quadrant of left male breast
## 1472 Malignant neoplasm of lower-inner quadrant of unspecified male breast
## 1473 Malignant neoplasm of upper-outer quadrant of right female breast
## 1474 Malignant neoplasm of upper-outer quadrant of left female breast
## 1475 Malignant neoplasm of upper-outer quadrant of unspecified female breast
## 1476 Malignant neoplasm of upper-outer quadrant of right male breast
## 1477 Malignant neoplasm of upper-outer quadrant of left male breast
## 1478 Malignant neoplasm of upper-outer quadrant of unspecified male breast
## 1479 Malignant neoplasm of lower-outer quadrant of right female breast
## 1480 Malignant neoplasm of lower-outer quadrant of left female breast
## 1481 Malignant neoplasm of lower-outer quadrant of unspecified female breast
## 1482 Malignant neoplasm of lower-outer quadrant of right male breast
## 1483 Malignant neoplasm of lower-outer quadrant of left male breast
## 1484 Malignant neoplasm of lower-outer quadrant of unspecified male breast
## 1485 Malignant neoplasm of axillary tail of right female breast
## 1486 Malignant neoplasm of axillary tail of left female breast
## 1487 Malignant neoplasm of axillary tail of unspecified female breast
## 1488 Malignant neoplasm of axillary tail of right male breast
## 1489 Malignant neoplasm of axillary tail of left male breast
## 1490 Malignant neoplasm of axillary tail of unspecified male breast
## 1491 Malignant neoplasm of overlapping sites of right female breast
## 1492 Malignant neoplasm of overlapping sites of left female breast
## 1493 Malignant neoplasm of overlapping sites of unspecified female breast
## 1494 Malignant neoplasm of overlapping sites of right male breast
## 1495 Malignant neoplasm of overlapping sites of left male breast
## 1496 Malignant neoplasm of overlapping sites of unspecified male breast
## 1497 Malignant neoplasm of unspecified site of right female breast
## 1498 Malignant neoplasm of unspecified site of left female breast
## 1499 Malignant neoplasm of unspecified site of unspecified female breast
## 1500 Malignant neoplasm of unspecified site of right male breast
## 1501 Malignant neoplasm of unspecified site of left male breast
## 1502 Malignant neoplasm of unspecified site of unspecified male breast
## 1503 Malignant neoplasm of labium majus
## 1504 Malignant neoplasm of labium minus
## 1505 Malignant neoplasm of clitoris
## 1506 Malignant neoplasm of overlapping sites of vulva
## 1507 Malignant neoplasm of vulva, unspecified
## 1508 Malignant neoplasm of vagina
## 1509 Malignant neoplasm of endocervix
## 1510 Malignant neoplasm of exocervix
## 1511 Malignant neoplasm of overlapping sites of cervix uteri
## 1512 Malignant neoplasm of cervix uteri, unspecified
## 1513 Malignant neoplasm of isthmus uteri
## 1514 Malignant neoplasm of endometrium
## 1515 Malignant neoplasm of myometrium
## 1516 Malignant neoplasm of fundus uteri
## 1517 Malignant neoplasm of overlapping sites of corpus uteri
## 1518 Malignant neoplasm of corpus uteri, unspecified
## 1519 Malignant neoplasm of uterus, part unspecified
## 1520 Malignant neoplasm of right ovary
## 1521 Malignant neoplasm of left ovary
## 1522 Malignant neoplasm of unspecified ovary
## 1523 Malignant neoplasm of unspecified fallopian tube
## 1524 Malignant neoplasm of right fallopian tube
## 1525 Malignant neoplasm of left fallopian tube
## 1526 Malignant neoplasm of unspecified broad ligament
## 1527 Malignant neoplasm of right broad ligament
## 1528 Malignant neoplasm of left broad ligament
## 1529 Malignant neoplasm of unspecified round ligament
## 1530 Malignant neoplasm of right round ligament
## 1531 Malignant neoplasm of left round ligament
## 1532 Malignant neoplasm of parametrium
## 1533 Malignant neoplasm of uterine adnexa, unspecified
## 1534 Malignant neoplasm of other specified female genital organs
## 1535 Malignant neoplasm of overlapping sites of female genital organs
## 1536 Malignant neoplasm of female genital organ, unspecified
## 1537 Malignant neoplasm of placenta
## 1538 Malignant neoplasm of prepuce
## 1539 Malignant neoplasm of glans penis
## 1540 Malignant neoplasm of body of penis
## 1541 Malignant neoplasm of overlapping sites of penis
## 1542 Malignant neoplasm of penis, unspecified
## 1543 Malignant neoplasm of prostate
## 1544 Malignant neoplasm of unspecified undescended testis
## 1545 Malignant neoplasm of undescended right testis
## 1546 Malignant neoplasm of undescended left testis
## 1547 Malignant neoplasm of unspecified descended testis
## 1548 Malignant neoplasm of descended right testis
## 1549 Malignant neoplasm of descended left testis
## 1550 Malignant neoplasm of unspecified testis, unspecified whether descended or undescended
## 1551 Malignant neoplasm of right testis, unspecified whether descended or undescended
## 1552 Malignant neoplasm of left testis, unspecified whether descended or undescended
## 1553 Malignant neoplasm of unspecified epididymis
## 1554 Malignant neoplasm of right epididymis
## 1555 Malignant neoplasm of left epididymis
## 1556 Malignant neoplasm of unspecified spermatic cord
## 1557 Malignant neoplasm of right spermatic cord
## 1558 Malignant neoplasm of left spermatic cord
## 1559 Malignant neoplasm of scrotum
## 1560 Malignant neoplasm of other specified male genital organs
## 1561 Malignant neoplasm of overlapping sites of male genital organs
## 1562 Malignant neoplasm of male genital organ, unspecified
## 1563 Malignant neoplasm of right kidney, except renal pelvis
## 1564 Malignant neoplasm of left kidney, except renal pelvis
## 1565 Malignant neoplasm of unspecified kidney, except renal pelvis
## 1566 Malignant neoplasm of right renal pelvis
## 1567 Malignant neoplasm of left renal pelvis
## 1568 Malignant neoplasm of unspecified renal pelvis
## 1569 Malignant neoplasm of right ureter
## 1570 Malignant neoplasm of left ureter
## 1571 Malignant neoplasm of unspecified ureter
## 1572 Malignant neoplasm of trigone of bladder
## 1573 Malignant neoplasm of dome of bladder
## 1574 Malignant neoplasm of lateral wall of bladder
## 1575 Malignant neoplasm of anterior wall of bladder
## 1576 Malignant neoplasm of posterior wall of bladder
## 1577 Malignant neoplasm of bladder neck
## 1578 Malignant neoplasm of ureteric orifice
## 1579 Malignant neoplasm of urachus
## 1580 Malignant neoplasm of overlapping sites of bladder
## 1581 Malignant neoplasm of bladder, unspecified
## 1582 Malignant neoplasm of urethra
## 1583 Malignant neoplasm of paraurethral glands
## 1584 Malignant neoplasm of overlapping sites of urinary organs
## 1585 Malignant neoplasm of urinary organ, unspecified
## 1586 Malignant neoplasm of unspecified conjunctiva
## 1587 Malignant neoplasm of right conjunctiva
## 1588 Malignant neoplasm of left conjunctiva
## 1589 Malignant neoplasm of unspecified cornea
## 1590 Malignant neoplasm of right cornea
## 1591 Malignant neoplasm of left cornea
## 1592 Malignant neoplasm of unspecified retina
## 1593 Malignant neoplasm of right retina
## 1594 Malignant neoplasm of left retina
## 1595 Malignant neoplasm of unspecified choroid
## 1596 Malignant neoplasm of right choroid
## 1597 Malignant neoplasm of left choroid
## 1598 Malignant neoplasm of unspecified ciliary body
## 1599 Malignant neoplasm of right ciliary body
## 1600 Malignant neoplasm of left ciliary body
## 1601 Malignant neoplasm of unspecified lacrimal gland and duct
## 1602 Malignant neoplasm of right lacrimal gland and duct
## 1603 Malignant neoplasm of left lacrimal gland and duct
## 1604 Malignant neoplasm of unspecified orbit
## 1605 Malignant neoplasm of right orbit
## 1606 Malignant neoplasm of left orbit
## 1607 Malignant neoplasm of overlapping sites of unspecified eye and adnexa
## 1608 Malignant neoplasm of overlapping sites of right eye and adnexa
## 1609 Malignant neoplasm of overlapping sites of left eye and adnexa
## 1610 Malignant neoplasm of unspecified site of unspecified eye
## 1611 Malignant neoplasm of unspecified site of right eye
## 1612 Malignant neoplasm of unspecified site of left eye
## 1613 Malignant neoplasm of cerebral meninges
## 1614 Malignant neoplasm of spinal meninges
## 1615 Malignant neoplasm of meninges, unspecified
## 1616 Malignant neoplasm of cerebrum, except lobes and ventricles
## 1617 Malignant neoplasm of frontal lobe
## 1618 Malignant neoplasm of temporal lobe
## 1619 Malignant neoplasm of parietal lobe
## 1620 Malignant neoplasm of occipital lobe
## 1621 Malignant neoplasm of cerebral ventricle
## 1622 Malignant neoplasm of cerebellum
## 1623 Malignant neoplasm of brain stem
## 1624 Malignant neoplasm of overlapping sites of brain
## 1625 Malignant neoplasm of brain, unspecified
## 1626 Malignant neoplasm of spinal cord
## 1627 Malignant neoplasm of cauda equina
## 1628 Malignant neoplasm of unspecified olfactory nerve
## 1629 Malignant neoplasm of right olfactory nerve
## 1630 Malignant neoplasm of left olfactory nerve
## 1631 Malignant neoplasm of unspecified optic nerve
## 1632 Malignant neoplasm of right optic nerve
## 1633 Malignant neoplasm of left optic nerve
## 1634 Malignant neoplasm of unspecified acoustic nerve
## 1635 Malignant neoplasm of right acoustic nerve
## 1636 Malignant neoplasm of left acoustic nerve
## 1637 Malignant neoplasm of unspecified cranial nerve
## 1638 Malignant neoplasm of other cranial nerves
## 1639 Malignant neoplasm of central nervous system, unspecified
## 1640 Malignant neoplasm of thyroid gland
## 1641 Malignant neoplasm of cortex of unspecified adrenal gland
## 1642 Malignant neoplasm of cortex of right adrenal gland
## 1643 Malignant neoplasm of cortex of left adrenal gland
## 1644 Malignant neoplasm of medulla of unspecified adrenal gland
## 1645 Malignant neoplasm of medulla of right adrenal gland
## 1646 Malignant neoplasm of medulla of left adrenal gland
## 1647 Malignant neoplasm of unspecified part of unspecified adrenal gland
## 1648 Malignant neoplasm of unspecified part of right adrenal gland
## 1649 Malignant neoplasm of unspecified part of left adrenal gland
## 1650 Malignant neoplasm of parathyroid gland
## 1651 Malignant neoplasm of pituitary gland
## 1652 Malignant neoplasm of craniopharyngeal duct
## 1653 Malignant neoplasm of pineal gland
## 1654 Malignant neoplasm of carotid body
## 1655 Malignant neoplasm of aortic body and other paraganglia
## 1656 Malignant neoplasm with pluriglandular involvement, unspecified
## 1657 Malignant neoplasm of endocrine gland, unspecified
## 1658 Malignant carcinoid tumor of unspecified site
## 1659 Malignant carcinoid tumor of the duodenum
## 1660 Malignant carcinoid tumor of the jejunum
## 1661 Malignant carcinoid tumor of the ileum
## 1662 Malignant carcinoid tumor of the small intestine, unspecified portion
## 1663 Malignant carcinoid tumor of the appendix
## 1664 Malignant carcinoid tumor of the cecum
## 1665 Malignant carcinoid tumor of the ascending colon
## 1666 Malignant carcinoid tumor of the transverse colon
## 1667 Malignant carcinoid tumor of the descending colon
## 1668 Malignant carcinoid tumor of the sigmoid colon
## 1669 Malignant carcinoid tumor of the rectum
## 1670 Malignant carcinoid tumor of the large intestine, unspecified portion
## 1671 Malignant carcinoid tumor of the bronchus and lung
## 1672 Malignant carcinoid tumor of the thymus
## 1673 Malignant carcinoid tumor of the stomach
## 1674 Malignant carcinoid tumor of the kidney
## 1675 Malignant carcinoid tumor of the foregut, unspecified
## 1676 Malignant carcinoid tumor of the midgut, unspecified
## 1677 Malignant carcinoid tumor of the hindgut, unspecified
## 1678 Malignant carcinoid tumors of other sites
## 1679 Malignant poorly differentiated neuroendocrine tumors
## 1680 Other malignant neuroendocrine tumors
## 1681 Secondary carcinoid tumors, unspecified site
## 1682 Secondary carcinoid tumors of distant lymph nodes
## 1683 Secondary carcinoid tumors of liver
## 1684 Secondary carcinoid tumors of bone
## 1685 Secondary carcinoid tumors of peritoneum
## 1686 Secondary carcinoid tumors of other sites
## 1687 Secondary Merkel cell carcinoma
## 1688 Other secondary neuroendocrine tumors
## 1689 Malignant neoplasm of head, face and neck
## 1690 Malignant neoplasm of thorax
## 1691 Malignant neoplasm of abdomen
## 1692 Malignant neoplasm of pelvis
## 1693 Malignant neoplasm of unspecified upper limb
## 1694 Malignant neoplasm of right upper limb
## 1695 Malignant neoplasm of left upper limb
## 1696 Malignant neoplasm of unspecified lower limb
## 1697 Malignant neoplasm of right lower limb
## 1698 Malignant neoplasm of left lower limb
## 1699 Malignant neoplasm of other specified ill-defined sites
## 1700 Secondary and unspecified malignant neoplasm of lymph nodes of head, face and neck
## 1701 Secondary and unspecified malignant neoplasm of intrathoracic lymph nodes
## 1702 Secondary and unspecified malignant neoplasm of intra-abdominal lymph nodes
## 1703 Secondary and unspecified malignant neoplasm of axilla and upper limb lymph nodes
## 1704 Secondary and unspecified malignant neoplasm of inguinal and lower limb lymph nodes
## 1705 Secondary and unspecified malignant neoplasm of intrapelvic lymph nodes
## 1706 Secondary and unspecified malignant neoplasm of lymph nodes of multiple regions
## 1707 Secondary and unspecified malignant neoplasm of lymph node, unspecified
## 1708 Secondary malignant neoplasm of unspecified lung
## 1709 Secondary malignant neoplasm of right lung
## 1710 Secondary malignant neoplasm of left lung
## 1711 Secondary malignant neoplasm of mediastinum
## 1712 Secondary malignant neoplasm of pleura
## 1713 Secondary malignant neoplasm of unspecified respiratory organ
## 1714 Secondary malignant neoplasm of other respiratory organs
## 1715 Secondary malignant neoplasm of small intestine
## 1716 Secondary malignant neoplasm of large intestine and rectum
## 1717 Secondary malignant neoplasm of retroperitoneum and peritoneum
## 1718 Secondary malignant neoplasm of liver and intrahepatic bile duct
## 1719 Secondary malignant neoplasm of unspecified digestive organ
## 1720 Secondary malignant neoplasm of other digestive organs
## 1721 Secondary malignant neoplasm of unspecified kidney and renal pelvis
## 1722 Secondary malignant neoplasm of right kidney and renal pelvis
## 1723 Secondary malignant neoplasm of left kidney and renal pelvis
## 1724 Secondary malignant neoplasm of unspecified urinary organs
## 1725 Secondary malignant neoplasm of bladder
## 1726 Secondary malignant neoplasm of other urinary organs
## 1727 Secondary malignant neoplasm of skin
## 1728 Secondary malignant neoplasm of brain
## 1729 Secondary malignant neoplasm of cerebral meninges
## 1730 Secondary malignant neoplasm of unspecified part of nervous system
## 1731 Secondary malignant neoplasm of other parts of nervous system
## 1732 Secondary malignant neoplasm of bone
## 1733 Secondary malignant neoplasm of bone marrow
## 1734 Secondary malignant neoplasm of unspecified ovary
## 1735 Secondary malignant neoplasm of right ovary
## 1736 Secondary malignant neoplasm of left ovary
## 1737 Secondary malignant neoplasm of unspecified adrenal gland
## 1738 Secondary malignant neoplasm of right adrenal gland
## 1739 Secondary malignant neoplasm of left adrenal gland
## 1740 Secondary malignant neoplasm of breast
## 1741 Secondary malignant neoplasm of genital organs
## 1742 Secondary malignant neoplasm of other specified sites
## 1743 Secondary malignant neoplasm of unspecified site
## 1744 Disseminated malignant neoplasm, unspecified
## 1745 Malignant (primary) neoplasm, unspecified
## 1746 Malignant neoplasm associated with transplanted organ
## 1747 Nodular lymphocyte predominant Hodgkin lymphoma, unspecified site
## 1748 Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of head, face, and neck
## 1749 Nodular lymphocyte predominant Hodgkin lymphoma, intrathoracic lymph nodes
## 1750 Nodular lymphocyte predominant Hodgkin lymphoma, intra-abdominal lymph nodes
## 1751 Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of axilla and upper limb
## 1752 Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of inguinal region and lower limb
## 1753 Nodular lymphocyte predominant Hodgkin lymphoma, intrapelvic lymph nodes
## 1754 Nodular lymphocyte predominant Hodgkin lymphoma, spleen
## 1755 Nodular lymphocyte predominant Hodgkin lymphoma, lymph nodes of multiple sites
## 1756 Nodular lymphocyte predominant Hodgkin lymphoma, extranodal and solid organ sites
## 1757 Nodular sclerosis Hodgkin lymphoma, unspecified site
## 1758 Nodular sclerosis Hodgkin lymphoma, lymph nodes of head, face, and neck
## 1759 Nodular sclerosis Hodgkin lymphoma, intrathoracic lymph nodes
## 1760 Nodular sclerosis Hodgkin lymphoma, intra-abdominal lymph nodes
## 1761 Nodular sclerosis Hodgkin lymphoma, lymph nodes of axilla and upper limb
## 1762 Nodular sclerosis Hodgkin lymphoma, lymph nodes of inguinal region and lower limb
## 1763 Nodular sclerosis Hodgkin lymphoma, intrapelvic lymph nodes
## 1764 Nodular sclerosis Hodgkin lymphoma, spleen
## 1765 Nodular sclerosis Hodgkin lymphoma, lymph nodes of multiple sites
## 1766 Nodular sclerosis Hodgkin lymphoma, extranodal and solid organ sites
## 1767 Mixed cellularity Hodgkin lymphoma, unspecified site
## 1768 Mixed cellularity Hodgkin lymphoma, lymph nodes of head, face, and neck
## 1769 Mixed cellularity Hodgkin lymphoma, intrathoracic lymph nodes
## 1770 Mixed cellularity Hodgkin lymphoma, intra-abdominal lymph nodes
## 1771 Mixed cellularity Hodgkin lymphoma, lymph nodes of axilla and upper limb
## 1772 Mixed cellularity Hodgkin lymphoma, lymph nodes of inguinal region and lower limb
## 1773 Mixed cellularity Hodgkin lymphoma, intrapelvic lymph nodes
## 1774 Mixed cellularity Hodgkin lymphoma, spleen
## 1775 Mixed cellularity Hodgkin lymphoma, lymph nodes of multiple sites
## 1776 Mixed cellularity Hodgkin lymphoma, extranodal and solid organ sites
## 1777 Lymphocyte depleted Hodgkin lymphoma, unspecified site
## 1778 Lymphocyte depleted Hodgkin lymphoma, lymph nodes of head, face, and neck
## 1779 Lymphocyte depleted Hodgkin lymphoma, intrathoracic lymph nodes
## 1780 Lymphocyte depleted Hodgkin lymphoma, intra-abdominal lymph nodes
## 1781 Lymphocyte depleted Hodgkin lymphoma, lymph nodes of axilla and upper limb
## 1782 Lymphocyte depleted Hodgkin lymphoma, lymph nodes of inguinal region and lower limb
## 1783 Lymphocyte depleted Hodgkin lymphoma, intrapelvic lymph nodes
## 1784 Lymphocyte depleted Hodgkin lymphoma, spleen
## 1785 Lymphocyte depleted Hodgkin lymphoma, lymph nodes of multiple sites
## 1786 Lymphocyte depleted Hodgkin lymphoma, extranodal and solid organ sites
## 1787 Lymphocyte-rich Hodgkin lymphoma, unspecified site
## 1788 Lymphocyte-rich Hodgkin lymphoma, lymph nodes of head, face, and neck
## 1789 Lymphocyte-rich Hodgkin lymphoma, intrathoracic lymph nodes
## 1790 Lymphocyte-rich Hodgkin lymphoma, intra-abdominal lymph nodes
## 1791 Lymphocyte-rich Hodgkin lymphoma, lymph nodes of axilla and upper limb
## 1792 Lymphocyte-rich Hodgkin lymphoma, lymph nodes of inguinal region and lower limb
## 1793 Lymphocyte-rich Hodgkin lymphoma, intrapelvic lymph nodes
## 1794 Lymphocyte-rich Hodgkin lymphoma, spleen
## 1795 Lymphocyte-rich Hodgkin lymphoma, lymph nodes of multiple sites
## 1796 Lymphocyte-rich Hodgkin lymphoma, extranodal and solid organ sites
## 1797 Other Hodgkin lymphoma, unspecified site
## 1798 Other Hodgkin lymphoma, lymph nodes of head, face, and neck
## 1799 Other Hodgkin lymphoma, intrathoracic lymph nodes
## 1800 Other Hodgkin lymphoma, intra-abdominal lymph nodes
## 1801 Other Hodgkin lymphoma, lymph nodes of axilla and upper limb
## 1802 Other Hodgkin lymphoma, lymph nodes of inguinal region and lower limb
## 1803 Other Hodgkin lymphoma, intrapelvic lymph nodes
## 1804 Other Hodgkin lymphoma, spleen
## 1805 Other Hodgkin lymphoma, lymph nodes of multiple sites
## 1806 Other Hodgkin lymphoma, extranodal and solid organ sites
## 1807 Hodgkin lymphoma, unspecified, unspecified site
## 1808 Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck
## 1809 Hodgkin lymphoma, unspecified, intrathoracic lymph nodes
## 1810 Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes
## 1811 Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb
## 1812 Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb
## 1813 Hodgkin lymphoma, unspecified, intrapelvic lymph nodes
## 1814 Hodgkin lymphoma, unspecified, spleen
## 1815 Hodgkin lymphoma, unspecified, lymph nodes of multiple sites
## 1816 Hodgkin lymphoma, unspecified, extranodal and solid organ sites
## 1817 Follicular lymphoma grade I, unspecified site
## 1818 Follicular lymphoma grade I, lymph nodes of head, face, and neck
## 1819 Follicular lymphoma grade I, intrathoracic lymph nodes
## 1820 Follicular lymphoma grade I, intra-abdominal lymph nodes
## 1821 Follicular lymphoma grade I, lymph nodes of axilla and upper limb
## 1822 Follicular lymphoma grade I, lymph nodes of inguinal region and lower limb
## 1823 Follicular lymphoma grade I, intrapelvic lymph nodes
## 1824 Follicular lymphoma grade I, spleen
## 1825 Follicular lymphoma grade I, lymph nodes of multiple sites
## 1826 Follicular lymphoma grade I, extranodal and solid organ sites
## 1827 Follicular lymphoma grade II, unspecified site
## 1828 Follicular lymphoma grade II, lymph nodes of head, face, and neck
## 1829 Follicular lymphoma grade II, intrathoracic lymph nodes
## 1830 Follicular lymphoma grade II, intra-abdominal lymph nodes
## 1831 Follicular lymphoma grade II, lymph nodes of axilla and upper limb
## 1832 Follicular lymphoma grade II, lymph nodes of inguinal region and lower limb
## 1833 Follicular lymphoma grade II, intrapelvic lymph nodes
## 1834 Follicular lymphoma grade II, spleen
## 1835 Follicular lymphoma grade II, lymph nodes of multiple sites
## 1836 Follicular lymphoma grade II, extranodal and solid organ sites
## 1837 Follicular lymphoma grade III, unspecified, unspecified site
## 1838 Follicular lymphoma grade III, unspecified, lymph nodes of head, face, and neck
## 1839 Follicular lymphoma grade III, unspecified, intrathoracic lymph nodes
## 1840 Follicular lymphoma grade III, unspecified, intra-abdominal lymph nodes
## 1841 Follicular lymphoma grade III, unspecified, lymph nodes of axilla and upper limb
## 1842 Follicular lymphoma grade III, unspecified, lymph nodes of inguinal region and lower limb
## 1843 Follicular lymphoma grade III, unspecified, intrapelvic lymph nodes
## 1844 Follicular lymphoma grade III, unspecified, spleen
## 1845 Follicular lymphoma grade III, unspecified, lymph nodes of multiple sites
## 1846 Follicular lymphoma grade III, unspecified, extranodal and solid organ sites
## 1847 Follicular lymphoma grade IIIa, unspecified site
## 1848 Follicular lymphoma grade IIIa, lymph nodes of head, face, and neck
## 1849 Follicular lymphoma grade IIIa, intrathoracic lymph nodes
## 1850 Follicular lymphoma grade IIIa, intra-abdominal lymph nodes
## 1851 Follicular lymphoma grade IIIa, lymph nodes of axilla and upper limb
## 1852 Follicular lymphoma grade IIIa, lymph nodes of inguinal region and lower limb
## 1853 Follicular lymphoma grade IIIa, intrapelvic lymph nodes
## 1854 Follicular lymphoma grade IIIa, spleen
## 1855 Follicular lymphoma grade IIIa, lymph nodes of multiple sites
## 1856 Follicular lymphoma grade IIIa, extranodal and solid organ sites
## 1857 Follicular lymphoma grade IIIb, unspecified site
## 1858 Follicular lymphoma grade IIIb, lymph nodes of head, face, and neck
## 1859 Follicular lymphoma grade IIIb, intrathoracic lymph nodes
## 1860 Follicular lymphoma grade IIIb, intra-abdominal lymph nodes
## 1861 Follicular lymphoma grade IIIb, lymph nodes of axilla and upper limb
## 1862 Follicular lymphoma grade IIIb, lymph nodes of inguinal region and lower limb
## 1863 Follicular lymphoma grade IIIb, intrapelvic lymph nodes
## 1864 Follicular lymphoma grade IIIb, spleen
## 1865 Follicular lymphoma grade IIIb, lymph nodes of multiple sites
## 1866 Follicular lymphoma grade IIIb, extranodal and solid organ sites
## 1867 Diffuse follicle center lymphoma, unspecified site
## 1868 Diffuse follicle center lymphoma, lymph nodes of head, face, and neck
## 1869 Diffuse follicle center lymphoma, intrathoracic lymph nodes
## 1870 Diffuse follicle center lymphoma, intra-abdominal lymph nodes
## 1871 Diffuse follicle center lymphoma, lymph nodes of axilla and upper limb
## 1872 Diffuse follicle center lymphoma, lymph nodes of inguinal region and lower limb
## 1873 Diffuse follicle center lymphoma, intrapelvic lymph nodes
## 1874 Diffuse follicle center lymphoma, spleen
## 1875 Diffuse follicle center lymphoma, lymph nodes of multiple sites
## 1876 Diffuse follicle center lymphoma, extranodal and solid organ sites
## 1877 Cutaneous follicle center lymphoma, unspecified site
## 1878 Cutaneous follicle center lymphoma, lymph nodes of head, face, and neck
## 1879 Cutaneous follicle center lymphoma, intrathoracic lymph nodes
## 1880 Cutaneous follicle center lymphoma, intra-abdominal lymph nodes
## 1881 Cutaneous follicle center lymphoma, lymph nodes of axilla and upper limb
## 1882 Cutaneous follicle center lymphoma, lymph nodes of inguinal region and lower limb
## 1883 Cutaneous follicle center lymphoma, intrapelvic lymph nodes
## 1884 Cutaneous follicle center lymphoma, spleen
## 1885 Cutaneous follicle center lymphoma, lymph nodes of multiple sites
## 1886 Cutaneous follicle center lymphoma, extranodal and solid organ sites
## 1887 Other types of follicular lymphoma, unspecified site
## 1888 Other types of follicular lymphoma, lymph nodes of head, face, and neck
## 1889 Other types of follicular lymphoma, intrathoracic lymph nodes
## 1890 Other types of follicular lymphoma, intra-abdominal lymph nodes
## 1891 Other types of follicular lymphoma, lymph nodes of axilla and upper limb
## 1892 Other types of follicular lymphoma, lymph nodes of inguinal region and lower limb
## 1893 Other types of follicular lymphoma, intrapelvic lymph nodes
## 1894 Other types of follicular lymphoma, spleen
## 1895 Other types of follicular lymphoma, lymph nodes of multiple sites
## 1896 Other types of follicular lymphoma, extranodal and solid organ sites
## 1897 Follicular lymphoma, unspecified, unspecified site
## 1898 Follicular lymphoma, unspecified, lymph nodes of head, face, and neck
## 1899 Follicular lymphoma, unspecified, intrathoracic lymph nodes
## 1900 Follicular lymphoma, unspecified, intra-abdominal lymph nodes
## 1901 Follicular lymphoma, unspecified, lymph nodes of axilla and upper limb
## 1902 Follicular lymphoma, unspecified, lymph nodes of inguinal region and lower limb
## 1903 Follicular lymphoma, unspecified, intrapelvic lymph nodes
## 1904 Follicular lymphoma, unspecified, spleen
## 1905 Follicular lymphoma, unspecified, lymph nodes of multiple sites
## 1906 Follicular lymphoma, unspecified, extranodal and solid organ sites
## 1907 Small cell B-cell lymphoma, unspecified site
## 1908 Small cell B-cell lymphoma, lymph nodes of head, face, and neck
## 1909 Small cell B-cell lymphoma, intrathoracic lymph nodes
## 1910 Small cell B-cell lymphoma, intra-abdominal lymph nodes
## 1911 Small cell B-cell lymphoma, lymph nodes of axilla and upper limb
## 1912 Small cell B-cell lymphoma, lymph nodes of inguinal region and lower limb
## 1913 Small cell B-cell lymphoma, intrapelvic lymph nodes
## 1914 Small cell B-cell lymphoma, spleen
## 1915 Small cell B-cell lymphoma, lymph nodes of multiple sites
## 1916 Small cell B-cell lymphoma, extranodal and solid organ sites
## 1917 Mantle cell lymphoma, unspecified site
## 1918 Mantle cell lymphoma, lymph nodes of head, face, and neck
## 1919 Mantle cell lymphoma, intrathoracic lymph nodes
## 1920 Mantle cell lymphoma, intra-abdominal lymph nodes
## 1921 Mantle cell lymphoma, lymph nodes of axilla and upper limb
## 1922 Mantle cell lymphoma, lymph nodes of inguinal region and lower limb
## 1923 Mantle cell lymphoma, intrapelvic lymph nodes
## 1924 Mantle cell lymphoma, spleen
## 1925 Mantle cell lymphoma, lymph nodes of multiple sites
## 1926 Mantle cell lymphoma, extranodal and solid organ sites
## 1927 Diffuse large B-cell lymphoma, unspecified site
## 1928 Diffuse large B-cell lymphoma, lymph nodes of head, face, and neck
## 1929 Diffuse large B-cell lymphoma, intrathoracic lymph nodes
## 1930 Diffuse large B-cell lymphoma, intra-abdominal lymph nodes
## 1931 Diffuse large B-cell lymphoma, lymph nodes of axilla and upper limb
## 1932 Diffuse large B-cell lymphoma, lymph nodes of inguinal region and lower limb
## 1933 Diffuse large B-cell lymphoma, intrapelvic lymph nodes
## 1934 Diffuse large B-cell lymphoma, spleen
## 1935 Diffuse large B-cell lymphoma, lymph nodes of multiple sites
## 1936 Diffuse large B-cell lymphoma, extranodal and solid organ sites
## 1937 Lymphoblastic (diffuse) lymphoma, unspecified site
## 1938 Lymphoblastic (diffuse) lymphoma, lymph nodes of head, face, and neck
## 1939 Lymphoblastic (diffuse) lymphoma, intrathoracic lymph nodes
## 1940 Lymphoblastic (diffuse) lymphoma, intra-abdominal lymph nodes
## 1941 Lymphoblastic (diffuse) lymphoma, lymph nodes of axilla and upper limb
## 1942 Lymphoblastic (diffuse) lymphoma, lymph nodes of inguinal region and lower limb
## 1943 Lymphoblastic (diffuse) lymphoma, intrapelvic lymph nodes
## 1944 Lymphoblastic (diffuse) lymphoma, spleen
## 1945 Lymphoblastic (diffuse) lymphoma, lymph nodes of multiple sites
## 1946 Lymphoblastic (diffuse) lymphoma, extranodal and solid organ sites
## 1947 Burkitt lymphoma, unspecified site
## 1948 Burkitt lymphoma, lymph nodes of head, face, and neck
## 1949 Burkitt lymphoma, intrathoracic lymph nodes
## 1950 Burkitt lymphoma, intra-abdominal lymph nodes
## 1951 Burkitt lymphoma, lymph nodes of axilla and upper limb
## 1952 Burkitt lymphoma, lymph nodes of inguinal region and lower limb
## 1953 Burkitt lymphoma, intrapelvic lymph nodes
## 1954 Burkitt lymphoma, spleen
## 1955 Burkitt lymphoma, lymph nodes of multiple sites
## 1956 Burkitt lymphoma, extranodal and solid organ sites
## 1957 Other non-follicular lymphoma, unspecified site
## 1958 Other non-follicular lymphoma, lymph nodes of head, face, and neck
## 1959 Other non-follicular lymphoma, intrathoracic lymph nodes
## 1960 Other non-follicular lymphoma, intra-abdominal lymph nodes
## 1961 Other non-follicular lymphoma, lymph nodes of axilla and upper limb
## 1962 Other non-follicular lymphoma, lymph nodes of inguinal region and lower limb
## 1963 Other non-follicular lymphoma, intrapelvic lymph nodes
## 1964 Other non-follicular lymphoma, spleen
## 1965 Other non-follicular lymphoma, lymph nodes of multiple sites
## 1966 Other non-follicular lymphoma, extranodal and solid organ sites
## 1967 Non-follicular (diffuse) lymphoma, unspecified, unspecified site
## 1968 Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of head, face, and neck
## 1969 Non-follicular (diffuse) lymphoma, unspecified, intrathoracic lymph nodes
## 1970 Non-follicular (diffuse) lymphoma, unspecified, intra-abdominal lymph nodes
## 1971 Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of axilla and upper limb
## 1972 Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of inguinal region and lower limb
## 1973 Non-follicular (diffuse) lymphoma, unspecified, intrapelvic lymph nodes
## 1974 Non-follicular (diffuse) lymphoma, unspecified, spleen
## 1975 Non-follicular (diffuse) lymphoma, unspecified, lymph nodes of multiple sites
## 1976 Non-follicular (diffuse) lymphoma, unspecified, extranodal and solid organ sites
## 1977 Mycosis fungoides, unspecified site
## 1978 Mycosis fungoides, lymph nodes of head, face, and neck
## 1979 Mycosis fungoides, intrathoracic lymph nodes
## 1980 Mycosis fungoides, intra-abdominal lymph nodes
## 1981 Mycosis fungoides, lymph nodes of axilla and upper limb
## 1982 Mycosis fungoides, lymph nodes of inguinal region and lower limb
## 1983 Mycosis fungoides, intrapelvic lymph nodes
## 1984 Mycosis fungoides, spleen
## 1985 Mycosis fungoides, lymph nodes of multiple sites
## 1986 Mycosis fungoides, extranodal and solid organ sites
## 1987 Sezary disease, unspecified site
## 1988 Sezary disease, lymph nodes of head, face, and neck
## 1989 Sezary disease, intrathoracic lymph nodes
## 1990 Sezary disease, intra-abdominal lymph nodes
## 1991 Sezary disease, lymph nodes of axilla and upper limb
## 1992 Sezary disease, lymph nodes of inguinal region and lower limb
## 1993 Sezary disease, intrapelvic lymph nodes
## 1994 Sezary disease, spleen
## 1995 Sezary disease, lymph nodes of multiple sites
## 1996 Sezary disease, extranodal and solid organ sites
## 1997 Peripheral T-cell lymphoma, not classified, unspecified site
## 1998 Peripheral T-cell lymphoma, not classified, lymph nodes of head, face, and neck
## 1999 Peripheral T-cell lymphoma, not classified, intrathoracic lymph nodes
## 2000 Peripheral T-cell lymphoma, not classified, intra-abdominal lymph nodes
## 2001 Peripheral T-cell lymphoma, not classified, lymph nodes of axilla and upper limb
## 2002 Peripheral T-cell lymphoma, not classified, lymph nodes of inguinal region and lower limb
## 2003 Peripheral T-cell lymphoma, not classified, intrapelvic lymph nodes
## 2004 Peripheral T-cell lymphoma, not classified, spleen
## 2005 Peripheral T-cell lymphoma, not classified, lymph nodes of multiple sites
## 2006 Peripheral T-cell lymphoma, not classified, extranodal and solid organ sites
## 2007 Anaplastic large cell lymphoma, ALK-positive, unspecified site
## 2008 Anaplastic large cell lymphoma, ALK-positive, lymph nodes of head, face, and neck
## 2009 Anaplastic large cell lymphoma, ALK-positive, intrathoracic lymph nodes
## 2010 Anaplastic large cell lymphoma, ALK-positive, intra-abdominal lymph nodes
## 2011 Anaplastic large cell lymphoma, ALK-positive, lymph nodes of axilla and upper limb
## 2012 Anaplastic large cell lymphoma, ALK-positive, lymph nodes of inguinal region and lower limb
## 2013 Anaplastic large cell lymphoma, ALK-positive, intrapelvic lymph nodes
## 2014 Anaplastic large cell lymphoma, ALK-positive, spleen
## 2015 Anaplastic large cell lymphoma, ALK-positive, lymph nodes of multiple sites
## 2016 Anaplastic large cell lymphoma, ALK-positive, extranodal and solid organ sites
## 2017 Anaplastic large cell lymphoma, ALK-negative, unspecified site
## 2018 Anaplastic large cell lymphoma, ALK-negative, lymph nodes of head, face, and neck
## 2019 Anaplastic large cell lymphoma, ALK-negative, intrathoracic lymph nodes
## 2020 Anaplastic large cell lymphoma, ALK-negative, intra-abdominal lymph nodes
## 2021 Anaplastic large cell lymphoma, ALK-negative, lymph nodes of axilla and upper limb
## 2022 Anaplastic large cell lymphoma, ALK-negative, lymph nodes of inguinal region and lower limb
## 2023 Anaplastic large cell lymphoma, ALK-negative, intrapelvic lymph nodes
## 2024 Anaplastic large cell lymphoma, ALK-negative, spleen
## 2025 Anaplastic large cell lymphoma, ALK-negative, lymph nodes of multiple sites
## 2026 Anaplastic large cell lymphoma, ALK-negative, extranodal and solid organ sites
## 2027 Cutaneous T-cell lymphoma, unspecified, unspecified site
## 2028 Cutaneous T-cell lymphoma, unspecified lymph nodes of head, face, and neck
## 2029 Cutaneous T-cell lymphoma, unspecified, intrathoracic lymph nodes
## 2030 Cutaneous T-cell lymphoma, unspecified, intra-abdominal lymph nodes
## 2031 Cutaneous T-cell lymphoma, unspecified, lymph nodes of axilla and upper limb
## 2032 Cutaneous T-cell lymphoma, unspecified, lymph nodes of inguinal region and lower limb
## 2033 Cutaneous T-cell lymphoma, unspecified, intrapelvic lymph nodes
## 2034 Cutaneous T-cell lymphoma, unspecified, spleen
## 2035 Cutaneous T-cell lymphoma, unspecified, lymph nodes of multiple sites
## 2036 Cutaneous T-cell lymphoma, unspecified, extranodal and solid organ sites
## 2037 Other mature T/NK-cell lymphomas, unspecified site
## 2038 Other mature T/NK-cell lymphomas, lymph nodes of head, face, and neck
## 2039 Other mature T/NK-cell lymphomas, intrathoracic lymph nodes
## 2040 Other mature T/NK-cell lymphomas, intra-abdominal lymph nodes
## 2041 Other mature T/NK-cell lymphomas, lymph nodes of axilla and upper limb
## 2042 Other mature T/NK-cell lymphomas, lymph nodes of inguinal region and lower limb
## 2043 Other mature T/NK-cell lymphomas, intrapelvic lymph nodes
## 2044 Other mature T/NK-cell lymphomas, spleen
## 2045 Other mature T/NK-cell lymphomas, lymph nodes of multiple sites
## 2046 Other mature T/NK-cell lymphomas, extranodal and solid organ sites
## 2047 Mature T/NK-cell lymphomas, unspecified, unspecified site
## 2048 Mature T/NK-cell lymphomas, unspecified, lymph nodes of head, face, and neck
## 2049 Mature T/NK-cell lymphomas, unspecified, intrathoracic lymph nodes
## 2050 Mature T/NK-cell lymphomas, unspecified, intra-abdominal lymph nodes
## 2051 Mature T/NK-cell lymphomas, unspecified, lymph nodes of axilla and upper limb
## 2052 Mature T/NK-cell lymphomas, unspecified, lymph nodes of inguinal region and lower limb
## 2053 Mature T/NK-cell lymphomas, unspecified, intrapelvic lymph nodes
## 2054 Mature T/NK-cell lymphomas, unspecified, spleen
## 2055 Mature T/NK-cell lymphomas, unspecified, lymph nodes of multiple sites
## 2056 Mature T/NK-cell lymphomas, unspecified, extranodal and solid organ sites
## 2057 Unspecified B-cell lymphoma, unspecified site
## 2058 Unspecified B-cell lymphoma, lymph nodes of head, face, and neck
## 2059 Unspecified B-cell lymphoma, intrathoracic lymph nodes
## 2060 Unspecified B-cell lymphoma, intra-abdominal lymph nodes
## 2061 Unspecified B-cell lymphoma, lymph nodes of axilla and upper limb
## 2062 Unspecified B-cell lymphoma, lymph nodes of inguinal region and lower limb
## 2063 Unspecified B-cell lymphoma, intrapelvic lymph nodes
## 2064 Unspecified B-cell lymphoma, spleen
## 2065 Unspecified B-cell lymphoma, lymph nodes of multiple sites
## 2066 Unspecified B-cell lymphoma, extranodal and solid organ sites
## 2067 Mediastinal (thymic) large B-cell lymphoma, unspecified site
## 2068 Mediastinal (thymic) large B-cell lymphoma, lymph nodes of head, face, and neck
## 2069 Mediastinal (thymic) large B-cell lymphoma, intrathoracic lymph nodes
## 2070 Mediastinal (thymic) large B-cell lymphoma, intra-abdominal lymph nodes
## 2071 Mediastinal (thymic) large B-cell lymphoma, lymph nodes of axilla and upper limb
## 2072 Mediastinal (thymic) large B-cell lymphoma, lymph nodes of inguinal region and lower limb
## 2073 Mediastinal (thymic) large B-cell lymphoma, intrapelvic lymph nodes
## 2074 Mediastinal (thymic) large B-cell lymphoma, spleen
## 2075 Mediastinal (thymic) large B-cell lymphoma, lymph nodes of multiple sites
## 2076 Mediastinal (thymic) large B-cell lymphoma, extranodal and solid organ sites
## 2077 Other specified types of non-Hodgkin lymphoma, unspecified site
## 2078 Other specified types of non-Hodgkin lymphoma, lymph nodes of head, face, and neck
## 2079 Other specified types of non-Hodgkin lymphoma, intrathoracic lymph nodes
## 2080 Other specified types of non-Hodgkin lymphoma, intra-abdominal lymph nodes
## 2081 Other specified types of non-Hodgkin lymphoma, lymph nodes of axilla and upper limb
## 2082 Other specified types of non-Hodgkin lymphoma, lymph nodes of inguinal region and lower limb
## 2083 Other specified types of non-Hodgkin lymphoma, intrapelvic lymph nodes
## 2084 Other specified types of non-Hodgkin lymphoma, spleen
## 2085 Other specified types of non-Hodgkin lymphoma, lymph nodes of multiple sites
## 2086 Other specified types of non-Hodgkin lymphoma, extranodal and solid organ sites
## 2087 Non-Hodgkin lymphoma, unspecified, unspecified site
## 2088 Non-Hodgkin lymphoma, unspecified, lymph nodes of head, face, and neck
## 2089 Non-Hodgkin lymphoma, unspecified, intrathoracic lymph nodes
## 2090 Non-Hodgkin lymphoma, unspecified, intra-abdominal lymph nodes
## 2091 Non-Hodgkin lymphoma, unspecified, lymph nodes of axilla and upper limb
## 2092 Non-Hodgkin lymphoma, unspecified, lymph nodes of inguinal region and lower limb
## 2093 Non-Hodgkin lymphoma, unspecified, intrapelvic lymph nodes
## 2094 Non-Hodgkin lymphoma, unspecified, spleen
## 2095 Non-Hodgkin lymphoma, unspecified, lymph nodes of multiple sites
## 2096 Non-Hodgkin lymphoma, unspecified, extranodal and solid organ sites
## 2097 Extranodal NK/T-cell lymphoma, nasal type
## 2098 Hepatosplenic T-cell lymphoma
## 2099 Enteropathy-type (intestinal) T-cell lymphoma
## 2100 Subcutaneous panniculitis-like T-cell lymphoma
## 2101 Blastic NK-cell lymphoma
## 2102 Angioimmunoblastic T-cell lymphoma
## 2103 Primary cutaneous CD30-positive T-cell proliferations
## 2104 Waldenstrom macroglobulinemia
## 2105 Heavy chain disease
## 2106 Immunoproliferative small intestinal disease
## 2107 Extranodal marginal zone B-cell lymphoma of mucosa-associated lymphoid tissue [MALT-lymphoma]
## 2108 Other malignant immunoproliferative diseases
## 2109 Malignant immunoproliferative disease, unspecified
## 2110 Multiple myeloma not having achieved remission
## 2111 Multiple myeloma in remission
## 2112 Multiple myeloma in relapse
## 2113 Plasma cell leukemia not having achieved remission
## 2114 Plasma cell leukemia in remission
## 2115 Plasma cell leukemia in relapse
## 2116 Extramedullary plasmacytoma not having achieved remission
## 2117 Extramedullary plasmacytoma in remission
## 2118 Extramedullary plasmacytoma in relapse
## 2119 Solitary plasmacytoma not having achieved remission
## 2120 Solitary plasmacytoma in remission
## 2121 Solitary plasmacytoma in relapse
## 2122 Acute lymphoblastic leukemia not having achieved remission
## 2123 Acute lymphoblastic leukemia, in remission
## 2124 Acute lymphoblastic leukemia, in relapse
## 2125 Chronic lymphocytic leukemia of B-cell type not having achieved remission
## 2126 Chronic lymphocytic leukemia of B-cell type in remission
## 2127 Chronic lymphocytic leukemia of B-cell type in relapse
## 2128 Prolymphocytic leukemia of B-cell type not having achieved remission
## 2129 Prolymphocytic leukemia of B-cell type, in remission
## 2130 Prolymphocytic leukemia of B-cell type, in relapse
## 2131 Hairy cell leukemia not having achieved remission
## 2132 Hairy cell leukemia, in remission
## 2133 Hairy cell leukemia, in relapse
## 2134 Adult T-cell lymphoma/leukemia (HTLV-1-associated) not having achieved remission
## 2135 Adult T-cell lymphoma/leukemia (HTLV-1-associated), in remission
## 2136 Adult T-cell lymphoma/leukemia (HTLV-1-associated), in relapse
## 2137 Prolymphocytic leukemia of T-cell type not having achieved remission
## 2138 Prolymphocytic leukemia of T-cell type, in remission
## 2139 Prolymphocytic leukemia of T-cell type, in relapse
## 2140 Mature B-cell leukemia Burkitt-type not having achieved remission
## 2141 Mature B-cell leukemia Burkitt-type, in remission
## 2142 Mature B-cell leukemia Burkitt-type, in relapse
## 2143 Other lymphoid leukemia not having achieved remission
## 2144 Other lymphoid leukemia, in remission
## 2145 Other lymphoid leukemia, in relapse
## 2146 Lymphoid leukemia, unspecified not having achieved remission
## 2147 Lymphoid leukemia, unspecified, in remission
## 2148 Lymphoid leukemia, unspecified, in relapse
## 2149 Acute myeloblastic leukemia, not having achieved remission
## 2150 Acute myeloblastic leukemia, in remission
## 2151 Acute myeloblastic leukemia, in relapse
## 2152 Chronic myeloid leukemia, BCR/ABL-positive, not having achieved remission
## 2153 Chronic myeloid leukemia, BCR/ABL-positive, in remission
## 2154 Chronic myeloid leukemia, BCR/ABL-positive, in relapse
## 2155 Atypical chronic myeloid leukemia, BCR/ABL-negative, not having achieved remission
## 2156 Atypical chronic myeloid leukemia, BCR/ABL-negative, in remission
## 2157 Atypical chronic myeloid leukemia, BCR/ABL-negative, in relapse
## 2158 Myeloid sarcoma, not having achieved remission
## 2159 Myeloid sarcoma, in remission
## 2160 Myeloid sarcoma, in relapse
## 2161 Acute promyelocytic leukemia, not having achieved remission
## 2162 Acute promyelocytic leukemia, in remission
## 2163 Acute promyelocytic leukemia, in relapse
## 2164 Acute myelomonocytic leukemia, not having achieved remission
## 2165 Acute myelomonocytic leukemia, in remission
## 2166 Acute myelomonocytic leukemia, in relapse
## 2167 Acute myeloid leukemia with 11q23-abnormality not having achieved remission
## 2168 Acute myeloid leukemia with 11q23-abnormality in remission
## 2169 Acute myeloid leukemia with 11q23-abnormality in relapse
## 2170 Acute myeloid leukemia with multilineage dysplasia, not having achieved remission
## 2171 Acute myeloid leukemia with multilineage dysplasia, in remission
## 2172 Acute myeloid leukemia with multilineage dysplasia, in relapse
## 2173 Other myeloid leukemia not having achieved remission
## 2174 Other myeloid leukemia, in remission
## 2175 Other myeloid leukemia, in relapse
## 2176 Myeloid leukemia, unspecified, not having achieved remission
## 2177 Myeloid leukemia, unspecified in remission
## 2178 Myeloid leukemia, unspecified in relapse
## 2179 Acute monoblastic/monocytic leukemia, not having achieved remission
## 2180 Acute monoblastic/monocytic leukemia, in remission
## 2181 Acute monoblastic/monocytic leukemia, in relapse
## 2182 Chronic myelomonocytic leukemia not having achieved remission
## 2183 Chronic myelomonocytic leukemia, in remission
## 2184 Chronic myelomonocytic leukemia, in relapse
## 2185 Juvenile myelomonocytic leukemia, not having achieved remission
## 2186 Juvenile myelomonocytic leukemia, in remission
## 2187 Juvenile myelomonocytic leukemia, in relapse
## 2188 Other monocytic leukemia, not having achieved remission
## 2189 Other monocytic leukemia, in remission
## 2190 Other monocytic leukemia, in relapse
## 2191 Monocytic leukemia, unspecified, not having achieved remission
## 2192 Monocytic leukemia, unspecified in remission
## 2193 Monocytic leukemia, unspecified in relapse
## 2194 Acute erythroid leukemia, not having achieved remission
## 2195 Acute erythroid leukemia, in remission
## 2196 Acute erythroid leukemia, in relapse
## 2197 Acute megakaryoblastic leukemia not having achieved remission
## 2198 Acute megakaryoblastic leukemia, in remission
## 2199 Acute megakaryoblastic leukemia, in relapse
## 2200 Mast cell leukemia not having achieved remission
## 2201 Mast cell leukemia, in remission
## 2202 Mast cell leukemia, in relapse
## 2203 Acute panmyelosis with myelofibrosis not having achieved remission
## 2204 Acute panmyelosis with myelofibrosis, in remission
## 2205 Acute panmyelosis with myelofibrosis, in relapse
## 2206 Myelodysplastic disease, not classified
## 2207 Other specified leukemias not having achieved remission
## 2208 Other specified leukemias, in remission
## 2209 Other specified leukemias, in relapse
## 2210 Acute leukemia of unspecified cell type not having achieved remission
## 2211 Acute leukemia of unspecified cell type, in remission
## 2212 Acute leukemia of unspecified cell type, in relapse
## 2213 Chronic leukemia of unspecified cell type not having achieved remission
## 2214 Chronic leukemia of unspecified cell type, in remission
## 2215 Chronic leukemia of unspecified cell type, in relapse
## 2216 Leukemia, unspecified not having achieved remission
## 2217 Leukemia, unspecified, in remission
## 2218 Leukemia, unspecified, in relapse
## 2219 Multifocal and multisystemic (disseminated) Langerhans-cell histiocytosis
## 2220 Malignant mast cell neoplasm, unspecified
## 2221 Aggressive systemic mastocytosis
## 2222 Mast cell sarcoma
## 2223 Other malignant mast cell neoplasm
## 2224 Sarcoma of dendritic cells (accessory cells)
## 2225 Multifocal and unisystemic Langerhans-cell histiocytosis
## 2226 Unifocal Langerhans-cell histiocytosis
## 2227 Histiocytic sarcoma
## 2228 Other specified malignant neoplasms of lymphoid, hematopoietic and related tissue
## 2229 Malignant neoplasm of lymphoid, hematopoietic and related tissue, unspecified
## 2230 Carcinoma in situ of oral cavity, unspecified site
## 2231 Carcinoma in situ of labial mucosa and vermilion border
## 2232 Carcinoma in situ of buccal mucosa
## 2233 Carcinoma in situ of gingiva and edentulous alveolar ridge
## 2234 Carcinoma in situ of soft palate
## 2235 Carcinoma in situ of hard palate
## 2236 Carcinoma in situ of floor of mouth
## 2237 Carcinoma in situ of tongue
## 2238 Carcinoma in situ of pharynx
## 2239 Carcinoma in situ of esophagus
## 2240 Carcinoma in situ of stomach
## 2241 Carcinoma in situ of colon
## 2242 Carcinoma in situ of rectosigmoid junction
## 2243 Carcinoma in situ of rectum
## 2244 Carcinoma in situ of anus and anal canal
## 2245 Carcinoma in situ of unspecified part of intestine
## 2246 Carcinoma in situ of other parts of intestine
## 2247 Carcinoma in situ of liver, gallbladder and bile ducts
## 2248 Carcinoma in situ of other specified digestive organs
## 2249 Carcinoma in situ of digestive organ, unspecified
## 2250 Carcinoma in situ of larynx
## 2251 Carcinoma in situ of trachea
## 2252 Carcinoma in situ of unspecified bronchus and lung
## 2253 Carcinoma in situ of right bronchus and lung
## 2254 Carcinoma in situ of left bronchus and lung
## 2255 Carcinoma in situ of other parts of respiratory system
## 2256 Carcinoma in situ of respiratory system, unspecified
## 2257 Melanoma in situ of lip
## 2258 Melanoma in situ of unspecified eyelid, including canthus
## 2259 Melanoma in situ of right upper eyelid, including canthus
## 2260 Melanoma in situ of right lower eyelid, including canthus
## 2261 Melanoma in situ of left upper eyelid, including canthus
## 2262 Melanoma in situ of left lower eyelid, including canthus
## 2263 Melanoma in situ of unspecified ear and external auricular canal
## 2264 Melanoma in situ of right ear and external auricular canal
## 2265 Melanoma in situ of left ear and external auricular canal
## 2266 Melanoma in situ of unspecified part of face
## 2267 Melanoma in situ of other parts of face
## 2268 Melanoma in situ of scalp and neck
## 2269 Melanoma in situ of anal skin
## 2270 Melanoma in situ of breast (skin) (soft tissue)
## 2271 Melanoma in situ of other part of trunk
## 2272 Melanoma in situ of unspecified upper limb, including shoulder
## 2273 Melanoma in situ of right upper limb, including shoulder
## 2274 Melanoma in situ of left upper limb, including shoulder
## 2275 Melanoma in situ of unspecified lower limb, including hip
## 2276 Melanoma in situ of right lower limb, including hip
## 2277 Melanoma in situ of left lower limb, including hip
## 2278 Melanoma in situ of other sites
## 2279 Melanoma in situ, unspecified
## 2280 Carcinoma in situ of skin of lip
## 2281 Carcinoma in situ of skin of unspecified eyelid, including canthus
## 2282 Carcinoma in situ of skin of right upper eyelid, including canthus
## 2283 Carcinoma in situ of skin of right lower eyelid, including canthus
## 2284 Carcinoma in situ of skin of left upper eyelid, including canthus
## 2285 Carcinoma in situ of skin of left lower eyelid, including canthus
## 2286 Carcinoma in situ of skin of unspecified ear and external auricular canal
## 2287 Carcinoma in situ of skin of right ear and external auricular canal
## 2288 Carcinoma in situ of skin of left ear and external auricular canal
## 2289 Carcinoma in situ of skin of unspecified part of face
## 2290 Carcinoma in situ of skin of other parts of face
## 2291 Carcinoma in situ of skin of scalp and neck
## 2292 Carcinoma in situ of skin of trunk
## 2293 Carcinoma in situ of skin of unspecified upper limb, including shoulder
## 2294 Carcinoma in situ of skin of right upper limb, including shoulder
## 2295 Carcinoma in situ of skin of left upper limb, including shoulder
## 2296 Carcinoma in situ of skin of unspecified lower limb, including hip
## 2297 Carcinoma in situ of skin of right lower limb, including hip
## 2298 Carcinoma in situ of skin of left lower limb, including hip
## 2299 Carcinoma in situ of skin of other sites
## 2300 Carcinoma in situ of skin, unspecified
## 2301 Lobular carcinoma in situ of unspecified breast
## 2302 Lobular carcinoma in situ of right breast
## 2303 Lobular carcinoma in situ of left breast
## 2304 Intraductal carcinoma in situ of unspecified breast
## 2305 Intraductal carcinoma in situ of right breast
## 2306 Intraductal carcinoma in situ of left breast
## 2307 Other specified type of carcinoma in situ of unspecified breast
## 2308 Other specified type of carcinoma in situ of right breast
## 2309 Other specified type of carcinoma in situ of left breast
## 2310 Unspecified type of carcinoma in situ of unspecified breast
## 2311 Unspecified type of carcinoma in situ of right breast
## 2312 Unspecified type of carcinoma in situ of left breast
## 2313 Carcinoma in situ of endocervix
## 2314 Carcinoma in situ of exocervix
## 2315 Carcinoma in situ of other parts of cervix
## 2316 Carcinoma in situ of cervix, unspecified
## 2317 Carcinoma in situ of endometrium
## 2318 Carcinoma in situ of vulva
## 2319 Carcinoma in situ of vagina
## 2320 Carcinoma in situ of unspecified female genital organs
## 2321 Carcinoma in situ of other female genital organs
## 2322 Carcinoma in situ of penis
## 2323 Carcinoma in situ of prostate
## 2324 Carcinoma in situ of unspecified male genital organs
## 2325 Carcinoma in situ of scrotum
## 2326 Carcinoma in situ of other male genital organs
## 2327 Carcinoma in situ of bladder
## 2328 Carcinoma in situ of unspecified urinary organ
## 2329 Carcinoma in situ of other urinary organs
## 2330 Carcinoma in situ of unspecified eye
## 2331 Carcinoma in situ of right eye
## 2332 Carcinoma in situ of left eye
## 2333 Carcinoma in situ of thyroid and other endocrine glands
## 2334 Carcinoma in situ of other specified sites
## 2335 Carcinoma in situ, unspecified
## 2336 Benign neoplasm of lip
## 2337 Benign neoplasm of tongue
## 2338 Benign neoplasm of floor of mouth
## 2339 Benign neoplasm of unspecified part of mouth
## 2340 Benign neoplasm of other parts of mouth
## 2341 Benign neoplasm of tonsil
## 2342 Benign neoplasm of other parts of oropharynx
## 2343 Benign neoplasm of nasopharynx
## 2344 Benign neoplasm of hypopharynx
## 2345 Benign neoplasm of pharynx, unspecified
## 2346 Benign neoplasm of parotid gland
## 2347 Benign neoplasm of other major salivary glands
## 2348 Benign neoplasm of major salivary gland, unspecified
## 2349 Benign neoplasm of cecum
## 2350 Benign neoplasm of appendix
## 2351 Benign neoplasm of ascending colon
## 2352 Benign neoplasm of transverse colon
## 2353 Benign neoplasm of descending colon
## 2354 Benign neoplasm of sigmoid colon
## 2355 Benign neoplasm of colon, unspecified
## 2356 Benign neoplasm of rectosigmoid junction
## 2357 Benign neoplasm of rectum
## 2358 Benign neoplasm of anus and anal canal
## 2359 Benign neoplasm of esophagus
## 2360 Benign neoplasm of stomach
## 2361 Benign neoplasm of duodenum
## 2362 Benign neoplasm of unspecified part of small intestine
## 2363 Benign neoplasm of other parts of small intestine
## 2364 Benign neoplasm of liver
## 2365 Benign neoplasm of extrahepatic bile ducts
## 2366 Benign neoplasm of pancreas
## 2367 Benign neoplasm of endocrine pancreas
## 2368 Benign neoplasm of ill-defined sites within the digestive system
## 2369 Benign neoplasm of middle ear, nasal cavity and accessory sinuses
## 2370 Benign neoplasm of larynx
## 2371 Benign neoplasm of trachea
## 2372 Benign neoplasm of unspecified bronchus and lung
## 2373 Benign neoplasm of right bronchus and lung
## 2374 Benign neoplasm of left bronchus and lung
## 2375 Benign neoplasm of respiratory system, unspecified
## 2376 Benign neoplasm of thymus
## 2377 Benign neoplasm of heart
## 2378 Benign neoplasm of mediastinum
## 2379 Benign neoplasm of other specified intrathoracic organs
## 2380 Benign neoplasm of intrathoracic organ, unspecified
## 2381 Benign neoplasm of scapula and long bones of unspecified upper limb
## 2382 Benign neoplasm of scapula and long bones of right upper limb
## 2383 Benign neoplasm of scapula and long bones of left upper limb
## 2384 Benign neoplasm of short bones of unspecified upper limb
## 2385 Benign neoplasm of short bones of right upper limb
## 2386 Benign neoplasm of short bones of left upper limb
## 2387 Benign neoplasm of long bones of unspecified lower limb
## 2388 Benign neoplasm of long bones of right lower limb
## 2389 Benign neoplasm of long bones of left lower limb
## 2390 Benign neoplasm of short bones of unspecified lower limb
## 2391 Benign neoplasm of short bones of right lower limb
## 2392 Benign neoplasm of short bones of left lower limb
## 2393 Benign neoplasm of bones of skull and face
## 2394 Benign neoplasm of lower jaw bone
## 2395 Benign neoplasm of vertebral column
## 2396 Benign neoplasm of ribs, sternum and clavicle
## 2397 Benign neoplasm of pelvic bones, sacrum and coccyx
## 2398 Benign neoplasm of bone and articular cartilage, unspecified
## 2399 Benign lipomatous neoplasm of skin and subcutaneous tissue of head, face and neck
## 2400 Benign lipomatous neoplasm of skin and subcutaneous tissue of trunk
## 2401 Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified limb
## 2402 Benign lipomatous neoplasm of skin and subcutaneous tissue of right arm
## 2403 Benign lipomatous neoplasm of skin and subcutaneous tissue of left arm
## 2404 Benign lipomatous neoplasm of skin and subcutaneous tissue of right leg
## 2405 Benign lipomatous neoplasm of skin and subcutaneous tissue of left leg
## 2406 Benign lipomatous neoplasm of skin and subcutaneous tissue of unspecified sites
## 2407 Benign lipomatous neoplasm of skin and subcutaneous tissue of other sites
## 2408 Benign lipomatous neoplasm of intrathoracic organs
## 2409 Benign lipomatous neoplasm of intra-abdominal organs
## 2410 Benign lipomatous neoplasm of spermatic cord
## 2411 Benign lipomatous neoplasm of kidney
## 2412 Benign lipomatous neoplasm of other genitourinary organ
## 2413 Benign lipomatous neoplasm of other sites
## 2414 Benign lipomatous neoplasm, unspecified
## 2415 Hemangioma unspecified site
## 2416 Hemangioma of skin and subcutaneous tissue
## 2417 Hemangioma of intracranial structures
## 2418 Hemangioma of intra-abdominal structures
## 2419 Hemangioma of other sites
## 2420 Lymphangioma, any site
## 2421 Benign neoplasm of mesothelial tissue of pleura
## 2422 Benign neoplasm of mesothelial tissue of peritoneum
## 2423 Benign neoplasm of mesothelial tissue of other sites
## 2424 Benign neoplasm of mesothelial tissue, unspecified
## 2425 Benign neoplasm of soft tissue of retroperitoneum
## 2426 Benign neoplasm of soft tissue of peritoneum
## 2427 Benign neoplasm of connective and other soft tissue of head, face and neck
## 2428 Benign neoplasm of connective and other soft tissue of unspecified upper limb, including shoulder
## 2429 Benign neoplasm of connective and other soft tissue of right upper limb, including shoulder
## 2430 Benign neoplasm of connective and other soft tissue of left upper limb, including shoulder
## 2431 Benign neoplasm of connective and other soft tissue of unspecified lower limb, including hip
## 2432 Benign neoplasm of connective and other soft tissue of right lower limb, including hip
## 2433 Benign neoplasm of connective and other soft tissue of left lower limb, including hip
## 2434 Benign neoplasm of connective and other soft tissue of thorax
## 2435 Benign neoplasm of connective and other soft tissue of abdomen
## 2436 Benign neoplasm of connective and other soft tissue of pelvis
## 2437 Benign neoplasm of connective and other soft tissue of trunk, unspecified
## 2438 Benign neoplasm of connective and other soft tissue, unspecified
## 2439 Melanocytic nevi of lip
## 2440 Melanocytic nevi of unspecified eyelid, including canthus
## 2441 Melanocytic nevi of right upper eyelid, including canthus
## 2442 Melanocytic nevi of right lower eyelid, including canthus
## 2443 Melanocytic nevi of left upper eyelid, including canthus
## 2444 Melanocytic nevi of left lower eyelid, including canthus
## 2445 Melanocytic nevi of unspecified ear and external auricular canal
## 2446 Melanocytic nevi of right ear and external auricular canal
## 2447 Melanocytic nevi of left ear and external auricular canal
## 2448 Melanocytic nevi of unspecified part of face
## 2449 Melanocytic nevi of other parts of face
## 2450 Melanocytic nevi of scalp and neck
## 2451 Melanocytic nevi of trunk
## 2452 Melanocytic nevi of unspecified upper limb, including shoulder
## 2453 Melanocytic nevi of right upper limb, including shoulder
## 2454 Melanocytic nevi of left upper limb, including shoulder
## 2455 Melanocytic nevi of unspecified lower limb, including hip
## 2456 Melanocytic nevi of right lower limb, including hip
## 2457 Melanocytic nevi of left lower limb, including hip
## 2458 Melanocytic nevi, unspecified
## 2459 Other benign neoplasm of skin of lip
## 2460 Other benign neoplasm of skin of unspecified eyelid, including canthus
## 2461 Other benign neoplasm of skin of right upper eyelid, including canthus
## 2462 Other benign neoplasm of skin of right lower eyelid, including canthus
## 2463 Other benign neoplasm of skin of left upper eyelid, including canthus
## 2464 Other benign neoplasm of skin of left lower eyelid, including canthus
## 2465 Other benign neoplasm of skin of unspecified ear and external auricular canal
## 2466 Other benign neoplasm of skin of right ear and external auricular canal
## 2467 Other benign neoplasm of skin of left ear and external auricular canal
## 2468 Other benign neoplasm of skin of unspecified part of face
## 2469 Other benign neoplasm of skin of other parts of face
## 2470 Other benign neoplasm of skin of scalp and neck
## 2471 Other benign neoplasm of skin of trunk
## 2472 Other benign neoplasm of skin of unspecified upper limb, including shoulder
## 2473 Other benign neoplasm of skin of right upper limb, including shoulder
## 2474 Other benign neoplasm of skin of left upper limb, including shoulder
## 2475 Other benign neoplasm of skin of unspecified lower limb, including hip
## 2476 Other benign neoplasm of skin of right lower limb, including hip
## 2477 Other benign neoplasm of skin of left lower limb, including hip
## 2478 Other benign neoplasm of skin, unspecified
## 2479 Benign neoplasm of right breast
## 2480 Benign neoplasm of left breast
## 2481 Benign neoplasm of unspecified breast
## 2482 Submucous leiomyoma of uterus
## 2483 Intramural leiomyoma of uterus
## 2484 Subserosal leiomyoma of uterus
## 2485 Leiomyoma of uterus, unspecified
## 2486 Other benign neoplasm of cervix uteri
## 2487 Other benign neoplasm of corpus uteri
## 2488 Other benign neoplasm of other parts of uterus
## 2489 Other benign neoplasm of uterus, unspecified
## 2490 Benign neoplasm of right ovary
## 2491 Benign neoplasm of left ovary
## 2492 Benign neoplasm of unspecified ovary
## 2493 Benign neoplasm of vulva
## 2494 Benign neoplasm of vagina
## 2495 Benign neoplasm of uterine tubes and ligaments
## 2496 Benign neoplasm of other specified female genital organs
## 2497 Benign neoplasm of female genital organ, unspecified
## 2498 Benign neoplasm of penis
## 2499 Benign neoplasm of prostate
## 2500 Benign neoplasm of unspecified testis
## 2501 Benign neoplasm of right testis
## 2502 Benign neoplasm of left testis
## 2503 Benign neoplasm of unspecified epididymis
## 2504 Benign neoplasm of right epididymis
## 2505 Benign neoplasm of left epididymis
## 2506 Benign neoplasm of scrotum
## 2507 Benign neoplasm of other specified male genital organs
## 2508 Benign neoplasm of male genital organ, unspecified
## 2509 Benign neoplasm of unspecified kidney
## 2510 Benign neoplasm of right kidney
## 2511 Benign neoplasm of left kidney
## 2512 Benign neoplasm of unspecified renal pelvis
## 2513 Benign neoplasm of right renal pelvis
## 2514 Benign neoplasm of left renal pelvis
## 2515 Benign neoplasm of unspecified ureter
## 2516 Benign neoplasm of right ureter
## 2517 Benign neoplasm of left ureter
## 2518 Benign neoplasm of bladder
## 2519 Benign neoplasm of urethra
## 2520 Benign neoplasm of other specified urinary organs
## 2521 Benign neoplasm of urinary organ, unspecified
## 2522 Benign neoplasm of unspecified conjunctiva
## 2523 Benign neoplasm of right conjunctiva
## 2524 Benign neoplasm of left conjunctiva
## 2525 Benign neoplasm of unspecified cornea
## 2526 Benign neoplasm of right cornea
## 2527 Benign neoplasm of left cornea
## 2528 Benign neoplasm of unspecified retina
## 2529 Benign neoplasm of right retina
## 2530 Benign neoplasm of left retina
## 2531 Benign neoplasm of unspecified choroid
## 2532 Benign neoplasm of right choroid
## 2533 Benign neoplasm of left choroid
## 2534 Benign neoplasm of unspecified ciliary body
## 2535 Benign neoplasm of right ciliary body
## 2536 Benign neoplasm of left ciliary body
## 2537 Benign neoplasm of unspecified lacrimal gland and duct
## 2538 Benign neoplasm of right lacrimal gland and duct
## 2539 Benign neoplasm of left lacrimal gland and duct
## 2540 Benign neoplasm of unspecified site of unspecified orbit
## 2541 Benign neoplasm of unspecified site of right orbit
## 2542 Benign neoplasm of unspecified site of left orbit
## 2543 Benign neoplasm of unspecified part of unspecified eye
## 2544 Benign neoplasm of unspecified part of right eye
## 2545 Benign neoplasm of unspecified part of left eye
## 2546 Benign neoplasm of cerebral meninges
## 2547 Benign neoplasm of spinal meninges
## 2548 Benign neoplasm of meninges, unspecified
## 2549 Benign neoplasm of brain, supratentorial
## 2550 Benign neoplasm of brain, infratentorial
## 2551 Benign neoplasm of brain, unspecified
## 2552 Benign neoplasm of cranial nerves
## 2553 Benign neoplasm of spinal cord
## 2554 Benign neoplasm of other specified parts of central nervous system
## 2555 Benign neoplasm of central nervous system, unspecified
## 2556 Benign neoplasm of thyroid gland
## 2557 Benign neoplasm of unspecified adrenal gland
## 2558 Benign neoplasm of right adrenal gland
## 2559 Benign neoplasm of left adrenal gland
## 2560 Benign neoplasm of parathyroid gland
## 2561 Benign neoplasm of pituitary gland
## 2562 Benign neoplasm of craniopharyngeal duct
## 2563 Benign neoplasm of pineal gland
## 2564 Benign neoplasm of carotid body
## 2565 Benign neoplasm of aortic body and other paraganglia
## 2566 Benign neoplasm of other specified endocrine glands
## 2567 Benign neoplasm of endocrine gland, unspecified
## 2568 Benign neoplasm of lymph nodes
## 2569 Benign neoplasm of peripheral nerves and autonomic nervous system, unspecified
## 2570 Benign neoplasm of peripheral nerves and autonomic nervous system of face, head, and neck
## 2571 Benign neoplasm of peripheral nerves and autonomic nervous system, upper limb, including shoulder
## 2572 Benign neoplasm of peripheral nerves and autonomic nervous system of lower limb, including hip
## 2573 Benign neoplasm of peripheral nerves and autonomic nervous system of thorax
## 2574 Benign neoplasm of peripheral nerves and autonomic nervous system of abdomen
## 2575 Benign neoplasm of peripheral nerves and autonomic nervous system of pelvis
## 2576 Benign neoplasm of peripheral nerves and autonomic nervous system of trunk, unspecified
## 2577 Benign neoplasm of other specified sites
## 2578 Benign neoplasm, unspecified site
## 2579 Benign carcinoid tumor of unspecified site
## 2580 Benign carcinoid tumor of the duodenum
## 2581 Benign carcinoid tumor of the jejunum
## 2582 Benign carcinoid tumor of the ileum
## 2583 Benign carcinoid tumor of the small intestine, unspecified portion
## 2584 Benign carcinoid tumor of the appendix
## 2585 Benign carcinoid tumor of the cecum
## 2586 Benign carcinoid tumor of the ascending colon
## 2587 Benign carcinoid tumor of the transverse colon
## 2588 Benign carcinoid tumor of the descending colon
## 2589 Benign carcinoid tumor of the sigmoid colon
## 2590 Benign carcinoid tumor of the rectum
## 2591 Benign carcinoid tumor of the large intestine, unspecified portion
## 2592 Benign carcinoid tumor of the bronchus and lung
## 2593 Benign carcinoid tumor of the thymus
## 2594 Benign carcinoid tumor of the stomach
## 2595 Benign carcinoid tumor of the kidney
## 2596 Benign carcinoid tumor of the foregut, unspecified
## 2597 Benign carcinoid tumor of the midgut, unspecified
## 2598 Benign carcinoid tumor of the hindgut, unspecified
## 2599 Benign carcinoid tumors of other sites
## 2600 Other benign neuroendocrine tumors
## 2601 Neoplasm of uncertain behavior of lip
## 2602 Neoplasm of uncertain behavior of tongue
## 2603 Neoplasm of uncertain behavior of the parotid salivary glands
## 2604 Neoplasm of uncertain behavior of the sublingual salivary glands
## 2605 Neoplasm of uncertain behavior of the submandibular salivary glands
## 2606 Neoplasm of uncertain behavior of the major salivary glands, unspecified
## 2607 Neoplasm of uncertain behavior of the minor salivary glands
## 2608 Neoplasm of uncertain behavior of pharynx
## 2609 Neoplasm of uncertain behavior of other specified sites of the oral cavity
## 2610 Neoplasm of uncertain behavior of stomach
## 2611 Neoplasm of uncertain behavior of small intestine
## 2612 Neoplasm of uncertain behavior of appendix
## 2613 Neoplasm of uncertain behavior of colon
## 2614 Neoplasm of uncertain behavior of rectum
## 2615 Neoplasm of uncertain behavior of liver, gallbladder and bile ducts
## 2616 Neoplasm of uncertain behavior of other specified digestive organs
## 2617 Neoplasm of uncertain behavior of digestive organ, unspecified
## 2618 Neoplasm of uncertain behavior of larynx
## 2619 Neoplasm of uncertain behavior of trachea, bronchus and lung
## 2620 Neoplasm of uncertain behavior of pleura
## 2621 Neoplasm of uncertain behavior of mediastinum
## 2622 Neoplasm of uncertain behavior of thymus
## 2623 Neoplasm of uncertain behavior of other respiratory organs
## 2624 Neoplasm of uncertain behavior of respiratory organ, unspecified
## 2625 Neoplasm of uncertain behavior of uterus
## 2626 Neoplasm of uncertain behavior of unspecified ovary
## 2627 Neoplasm of uncertain behavior of right ovary
## 2628 Neoplasm of uncertain behavior of left ovary
## 2629 Neoplasm of uncertain behavior of placenta
## 2630 Neoplasm of uncertain behavior of other specified female genital organs
## 2631 Neoplasm of uncertain behavior of female genital organ, unspecified
## 2632 Neoplasm of uncertain behavior of prostate
## 2633 Neoplasm of uncertain behavior of unspecified testis
## 2634 Neoplasm of uncertain behavior of right testis
## 2635 Neoplasm of uncertain behavior of left testis
## 2636 Neoplasm of uncertain behavior of other specified male genital organs
## 2637 Neoplasm of uncertain behavior of male genital organ, unspecified
## 2638 Neoplasm of uncertain behavior of unspecified kidney
## 2639 Neoplasm of uncertain behavior of right kidney
## 2640 Neoplasm of uncertain behavior of left kidney
## 2641 Neoplasm of uncertain behavior of unspecified renal pelvis
## 2642 Neoplasm of uncertain behavior of right renal pelvis
## 2643 Neoplasm of uncertain behavior of left renal pelvis
## 2644 Neoplasm of uncertain behavior of unspecified ureter
## 2645 Neoplasm of uncertain behavior of right ureter
## 2646 Neoplasm of uncertain behavior of left ureter
## 2647 Neoplasm of uncertain behavior of urethra
## 2648 Neoplasm of uncertain behavior of bladder
## 2649 Neoplasm of uncertain behavior of other specified urinary organs
## 2650 Neoplasm of uncertain behavior of unspecified urinary organ
## 2651 Neoplasm of uncertain behavior of cerebral meninges
## 2652 Neoplasm of uncertain behavior of spinal meninges
## 2653 Neoplasm of uncertain behavior of meninges, unspecified
## 2654 Neoplasm of uncertain behavior of brain, supratentorial
## 2655 Neoplasm of uncertain behavior of brain, infratentorial
## 2656 Neoplasm of uncertain behavior of brain, unspecified
## 2657 Neoplasm of uncertain behavior of cranial nerves
## 2658 Neoplasm of uncertain behavior of spinal cord
## 2659 Neoplasm of uncertain behavior of other specified parts of central nervous system
## 2660 Neoplasm of uncertain behavior of central nervous system, unspecified
## 2661 Neoplasm of uncertain behavior of thyroid gland
## 2662 Neoplasm of uncertain behavior of unspecified adrenal gland
## 2663 Neoplasm of uncertain behavior of right adrenal gland
## 2664 Neoplasm of uncertain behavior of left adrenal gland
## 2665 Neoplasm of uncertain behavior of parathyroid gland
## 2666 Neoplasm of uncertain behavior of pituitary gland
## 2667 Neoplasm of uncertain behavior of craniopharyngeal duct
## 2668 Neoplasm of uncertain behavior of pineal gland
## 2669 Neoplasm of uncertain behavior of carotid body
## 2670 Neoplasm of uncertain behavior of aortic body and other paraganglia
## 2671 Neoplasm of uncertain behavior of unspecified endocrine gland
## 2672 Polycythemia vera
## 2673 Refractory anemia without ring sideroblasts, so stated
## 2674 Refractory anemia with ring sideroblasts
## 2675 Refractory anemia with excess of blasts, unspecified
## 2676 Refractory anemia with excess of blasts 1
## 2677 Refractory anemia with excess of blasts 2
## 2678 Refractory cytopenia with multilineage dysplasia
## 2679 Refractory cytopenia with multilineage dysplasia and ring sideroblasts
## 2680 Myelodysplastic syndrome with isolated del(5q) chromosomal abnormality
## 2681 Refractory anemia, unspecified
## 2682 Other myelodysplastic syndromes
## 2683 Myelodysplastic syndrome, unspecified
## 2684 Cutaneous mastocytosis
## 2685 Systemic mastocytosis
## 2686 Other mast cell neoplasms of uncertain behavior
## 2687 Chronic myeloproliferative disease
## 2688 Monoclonal gammopathy
## 2689 Essential (hemorrhagic) thrombocythemia
## 2690 Osteomyelofibrosis
## 2691 Post-transplant lymphoproliferative disorder (PTLD)
## 2692 Castleman disease
## 2693 Other specified neoplasms of uncertain behavior of lymphoid, hematopoietic and related tissue
## 2694 Neoplasm of uncertain behavior of lymphoid, hematopoietic and related tissue, unspecified
## 2695 Neoplasm of uncertain behavior of bone and articular cartilage
## 2696 Neoplasm of uncertain behavior of connective and other soft tissue
## 2697 Neoplasm of uncertain behavior of peripheral nerves and autonomic nervous system
## 2698 Neoplasm of uncertain behavior of retroperitoneum
## 2699 Neoplasm of uncertain behavior of peritoneum
## 2700 Neoplasm of uncertain behavior of skin
## 2701 Neoplasm of uncertain behavior of unspecified breast
## 2702 Neoplasm of uncertain behavior of right breast
## 2703 Neoplasm of uncertain behavior of left breast
## 2704 Neoplasm of uncertain behavior of other specified sites
## 2705 Neoplasm of uncertain behavior, unspecified
## 2706 Neoplasm of unspecified behavior of digestive system
## 2707 Neoplasm of unspecified behavior of respiratory system
## 2708 Neoplasm of unspecified behavior of bone, soft tissue, and skin
## 2709 Neoplasm of unspecified behavior of breast
## 2710 Neoplasm of unspecified behavior of bladder
## 2711 Neoplasm of unspecified behavior of right kidney
## 2712 Neoplasm of unspecified behavior of left kidney
## 2713 Neoplasm of unspecified behavior of unspecified kidney
## 2714 Neoplasm of unspecified behavior of other genitourinary organ
## 2715 Neoplasm of unspecified behavior of brain
## 2716 Neoplasm of unspecified behavior of endocrine glands and other parts of nervous system
## 2717 Neoplasm of unspecified behavior of retina and choroid
## 2718 Neoplasm of unspecified behavior of other specified sites
## 2719 Neoplasm of unspecified behavior of unspecified site
## 2720 Iron deficiency anemia secondary to blood loss (chronic)
## 2721 Sideropenic dysphagia
## 2722 Other iron deficiency anemias
## 2723 Iron deficiency anemia, unspecified
## 2724 Vitamin B12 deficiency anemia due to intrinsic factor deficiency
## 2725 Vitamin B12 deficiency anemia due to selective vitamin B12 malabsorption with proteinuria
## 2726 Transcobalamin II deficiency
## 2727 Other dietary vitamin B12 deficiency anemia
## 2728 Other vitamin B12 deficiency anemias
## 2729 Vitamin B12 deficiency anemia, unspecified
## 2730 Dietary folate deficiency anemia
## 2731 Drug-induced folate deficiency anemia
## 2732 Other folate deficiency anemias
## 2733 Folate deficiency anemia, unspecified
## 2734 Protein deficiency anemia
## 2735 Other megaloblastic anemias, not elsewhere classified
## 2736 Scorbutic anemia
## 2737 Other specified nutritional anemias
## 2738 Nutritional anemia, unspecified
## 2739 Anemia due to glucose-6-phosphate dehydrogenase [G6PD] deficiency
## 2740 Anemia due to other disorders of glutathione metabolism
## 2741 Anemia due to disorders of glycolytic enzymes
## 2742 Anemia due to disorders of nucleotide metabolism
## 2743 Other anemias due to enzyme disorders
## 2744 Anemia due to enzyme disorder, unspecified
## 2745 Alpha thalassemia
## 2746 Beta thalassemia
## 2747 Delta-beta thalassemia
## 2748 Thalassemia minor
## 2749 Hereditary persistence of fetal hemoglobin [HPFH]
## 2750 Hemoglobin E-beta thalassemia
## 2751 Other thalassemias
## 2752 Thalassemia, unspecified
## 2753 Hb-SS disease with crisis, unspecified
## 2754 Hb-SS disease with acute chest syndrome
## 2755 Hb-SS disease with splenic sequestration
## 2756 Sickle-cell disease without crisis
## 2757 Sickle-cell/Hb-C disease without crisis
## 2758 Sickle-cell/Hb-C disease with acute chest syndrome
## 2759 Sickle-cell/Hb-C disease with splenic sequestration
## 2760 Sickle-cell/Hb-C disease with crisis, unspecified
## 2761 Sickle-cell trait
## 2762 Sickle-cell thalassemia without crisis
## 2763 Sickle-cell thalassemia with acute chest syndrome
## 2764 Sickle-cell thalassemia with splenic sequestration
## 2765 Sickle-cell thalassemia with crisis, unspecified
## 2766 Other sickle-cell disorders without crisis
## 2767 Other sickle-cell disorders with acute chest syndrome
## 2768 Other sickle-cell disorders with splenic sequestration
## 2769 Other sickle-cell disorders with crisis, unspecified
## 2770 Hereditary spherocytosis
## 2771 Hereditary elliptocytosis
## 2772 Other hemoglobinopathies
## 2773 Other specified hereditary hemolytic anemias
## 2774 Hereditary hemolytic anemia, unspecified
## 2775 Drug-induced autoimmune hemolytic anemia
## 2776 Other autoimmune hemolytic anemias
## 2777 Drug-induced nonautoimmune hemolytic anemia
## 2778 Hemolytic-uremic syndrome
## 2779 Other nonautoimmune hemolytic anemias
## 2780 Paroxysmal nocturnal hemoglobinuria [Marchiafava-Micheli]
## 2781 Hemoglobinuria due to hemolysis from other external causes
## 2782 Other acquired hemolytic anemias
## 2783 Acquired hemolytic anemia, unspecified
## 2784 Chronic acquired pure red cell aplasia
## 2785 Transient acquired pure red cell aplasia
## 2786 Other acquired pure red cell aplasias
## 2787 Acquired pure red cell aplasia, unspecified
## 2788 Constitutional (pure) red blood cell aplasia
## 2789 Other constitutional aplastic anemia
## 2790 Drug-induced aplastic anemia
## 2791 Aplastic anemia due to other external agents
## 2792 Idiopathic aplastic anemia
## 2793 Antineoplastic chemotherapy induced pancytopenia
## 2794 Other drug-induced pancytopenia
## 2795 Other pancytopenia
## 2796 Myelophthisis
## 2797 Other specified aplastic anemias and other bone marrow failure syndromes
## 2798 Aplastic anemia, unspecified
## 2799 Acute posthemorrhagic anemia
## 2800 Anemia in neoplastic disease
## 2801 Anemia in chronic kidney disease
## 2802 Anemia in other chronic diseases classified elsewhere
## 2803 Hereditary sideroblastic anemia
## 2804 Secondary sideroblastic anemia due to disease
## 2805 Secondary sideroblastic anemia due to drugs and toxins
## 2806 Other sideroblastic anemias
## 2807 Congenital dyserythropoietic anemia
## 2808 Anemia due to antineoplastic chemotherapy
## 2809 Other specified anemias
## 2810 Anemia, unspecified
## 2811 Disseminated intravascular coagulation [defibrination syndrome]
## 2812 Hereditary factor VIII deficiency
## 2813 Hereditary factor IX deficiency
## 2814 Von Willebrand's disease
## 2815 Hereditary factor XI deficiency
## 2816 Hereditary deficiency of other clotting factors
## 2817 Acquired hemophilia
## 2818 Antiphospholipid antibody with hemorrhagic disorder
## 2819 Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors
## 2820 Hemorrhagic disorder due to extrinsic circulating anticoagulants
## 2821 Acquired coagulation factor deficiency
## 2822 Activated protein C resistance
## 2823 Prothrombin gene mutation
## 2824 Other primary thrombophilia
## 2825 Antiphospholipid syndrome
## 2826 Lupus anticoagulant syndrome
## 2827 Other thrombophilia
## 2828 Other specified coagulation defects
## 2829 Coagulation defect, unspecified
## 2830 Allergic purpura
## 2831 Qualitative platelet defects
## 2832 Other nonthrombocytopenic purpura
## 2833 Immune thrombocytopenic purpura
## 2834 Evans syndrome
## 2835 Congenital and hereditary thrombocytopenia purpura
## 2836 Other primary thrombocytopenia
## 2837 Posttransfusion purpura
## 2838 Other secondary thrombocytopenia
## 2839 Thrombocytopenia, unspecified
## 2840 Other specified hemorrhagic conditions
## 2841 Hemorrhagic condition, unspecified
## 2842 Congenital agranulocytosis
## 2843 Agranulocytosis secondary to cancer chemotherapy
## 2844 Other drug-induced agranulocytosis
## 2845 Neutropenia due to infection
## 2846 Cyclic neutropenia
## 2847 Other neutropenia
## 2848 Neutropenia, unspecified
## 2849 Functional disorders of polymorphonuclear neutrophils
## 2850 Genetic anomalies of leukocytes
## 2851 Eosinophilia
## 2852 Lymphocytopenia
## 2853 Other decreased white blood cell count
## 2854 Decreased white blood cell count, unspecified
## 2855 Lymphocytosis (symptomatic)
## 2856 Monocytosis (symptomatic)
## 2857 Plasmacytosis
## 2858 Leukemoid reaction
## 2859 Basophilia
## 2860 Bandemia
## 2861 Other elevated white blood cell count
## 2862 Elevated white blood cell count, unspecified
## 2863 Other specified disorders of white blood cells
## 2864 Disorder of white blood cells, unspecified
## 2865 Hyposplenism
## 2866 Hypersplenism
## 2867 Chronic congestive splenomegaly
## 2868 Abscess of spleen
## 2869 Cyst of spleen
## 2870 Infarction of spleen
## 2871 Neutropenic splenomegaly
## 2872 Other diseases of spleen
## 2873 Disease of spleen, unspecified
## 2874 Congenital methemoglobinemia
## 2875 Other methemoglobinemias
## 2876 Methemoglobinemia, unspecified
## 2877 Familial erythrocytosis
## 2878 Secondary polycythemia
## 2879 Myelofibrosis
## 2880 Heparin induced thrombocytopenia (HIT)
## 2881 Other specified diseases of blood and blood-forming organs
## 2882 Disease of blood and blood-forming organs, unspecified
## 2883 Glucose-6-phosphate dehydrogenase (G6PD) deficiency without anemia
## 2884 Hemophagocytic lymphohistiocytosis
## 2885 Hemophagocytic syndrome, infection-associated
## 2886 Other histiocytosis syndromes
## 2887 Other disorders of blood and blood-forming organs in diseases classified elsewhere
## 2888 Intraoperative hemorrhage and hematoma of the spleen complicating a procedure on the spleen
## 2889 Intraoperative hemorrhage and hematoma of the spleen complicating other procedure
## 2890 Accidental puncture and laceration of the spleen during a procedure on the spleen
## 2891 Accidental puncture and laceration of the spleen during other procedure
## 2892 Postprocedural hemorrhage of the spleen following a procedure on the spleen
## 2893 Postprocedural hemorrhage of the spleen following other procedure
## 2894 Postprocedural hematoma of the spleen following a procedure on the spleen
## 2895 Postprocedural hematoma of the spleen following other procedure
## 2896 Postprocedural seroma of the spleen following a procedure on the spleen
## 2897 Postprocedural seroma of the spleen following other procedure
## 2898 Other intraoperative complications of the spleen
## 2899 Other postprocedural complications of the spleen
## 2900 Hereditary hypogammaglobulinemia
## 2901 Nonfamilial hypogammaglobulinemia
## 2902 Selective deficiency of immunoglobulin A [IgA]
## 2903 Selective deficiency of immunoglobulin G [IgG] subclasses
## 2904 Selective deficiency of immunoglobulin M [IgM]
## 2905 Immunodeficiency with increased immunoglobulin M [IgM]
## 2906 Antibody deficiency with near-normal immunoglobulins or with hyperimmunoglobulinemia
## 2907 Transient hypogammaglobulinemia of infancy
## 2908 Other immunodeficiencies with predominantly antibody defects
## 2909 Immunodeficiency with predominantly antibody defects, unspecified
## 2910 Severe combined immunodeficiency [SCID] with reticular dysgenesis
## 2911 Severe combined immunodeficiency [SCID] with low T- and B-cell numbers
## 2912 Severe combined immunodeficiency [SCID] with low or normal B-cell numbers
## 2913 Adenosine deaminase deficiency, unspecified
## 2914 Severe combined immunodeficiency due to adenosine deaminase deficiency
## 2915 Adenosine deaminase 2 deficiency
## 2916 Other adenosine deaminase deficiency
## 2917 Nezelof's syndrome
## 2918 Purine nucleoside phosphorylase [PNP] deficiency
## 2919 Major histocompatibility complex class I deficiency
## 2920 Major histocompatibility complex class II deficiency
## 2921 Biotinidase deficiency
## 2922 Other biotin-dependent carboxylase deficiency
## 2923 Biotin-dependent carboxylase deficiency, unspecified
## 2924 Other combined immunodeficiencies
## 2925 Combined immunodeficiency, unspecified
## 2926 Wiskott-Aldrich syndrome
## 2927 Di George's syndrome
## 2928 Immunodeficiency with short-limbed stature
## 2929 Immunodeficiency following hereditary defective response to Epstein-Barr virus
## 2930 Hyperimmunoglobulin E [IgE] syndrome
## 2931 Immunodeficiency associated with other specified major defects
## 2932 Immunodeficiency associated with major defect, unspecified
## 2933 Common variable immunodeficiency with predominant abnormalities of B-cell numbers and function
## 2934 Common variable immunodeficiency with predominant immunoregulatory T-cell disorders
## 2935 Common variable immunodeficiency with autoantibodies to B- or T-cells
## 2936 Other common variable immunodeficiencies
## 2937 Common variable immunodeficiency, unspecified
## 2938 Lymphocyte function antigen-1 [LFA-1] defect
## 2939 Defects in the complement system
## 2940 Other specified immunodeficiencies
## 2941 Immunodeficiency, unspecified
## 2942 Sarcoidosis of lung
## 2943 Sarcoidosis of lymph nodes
## 2944 Sarcoidosis of lung with sarcoidosis of lymph nodes
## 2945 Sarcoidosis of skin
## 2946 Sarcoid meningitis
## 2947 Multiple cranial nerve palsies in sarcoidosis
## 2948 Sarcoid iridocyclitis
## 2949 Sarcoid pyelonephritis
## 2950 Sarcoid myocarditis
## 2951 Sarcoid arthropathy
## 2952 Sarcoid myositis
## 2953 Sarcoidosis of other sites
## 2954 Sarcoidosis, unspecified
## 2955 Polyclonal hypergammaglobulinemia
## 2956 Cryoglobulinemia
## 2957 Hypergammaglobulinemia, unspecified
## 2958 Immune reconstitution syndrome
## 2959 Mast cell activation, unspecified
## 2960 Monoclonal mast cell activation syndrome
## 2961 Idiopathic mast cell activation syndrome
## 2962 Secondary mast cell activation
## 2963 Other mast cell activation disorder
## 2964 Acute graft-versus-host disease
## 2965 Chronic graft-versus-host disease
## 2966 Acute on chronic graft-versus-host disease
## 2967 Graft-versus-host disease, unspecified
## 2968 Autoimmune lymphoproliferative syndrome [ALPS]
## 2969 Other specified disorders involving the immune mechanism, not elsewhere classified
## 2970 Disorder involving the immune mechanism, unspecified
## 2971 Congenital iodine-deficiency syndrome, neurological type
## 2972 Congenital iodine-deficiency syndrome, myxedematous type
## 2973 Congenital iodine-deficiency syndrome, mixed type
## 2974 Congenital iodine-deficiency syndrome, unspecified
## 2975 Iodine-deficiency related diffuse (endemic) goiter
## 2976 Iodine-deficiency related multinodular (endemic) goiter
## 2977 Iodine-deficiency related (endemic) goiter, unspecified
## 2978 Other iodine-deficiency related thyroid disorders and allied conditions
## 2979 Subclinical iodine-deficiency hypothyroidism
## 2980 Congenital hypothyroidism with diffuse goiter
## 2981 Congenital hypothyroidism without goiter
## 2982 Hypothyroidism due to medicaments and other exogenous substances
## 2983 Postinfectious hypothyroidism
## 2984 Atrophy of thyroid (acquired)
## 2985 Myxedema coma
## 2986 Other specified hypothyroidism
## 2987 Hypothyroidism, unspecified
## 2988 Nontoxic diffuse goiter
## 2989 Nontoxic single thyroid nodule
## 2990 Nontoxic multinodular goiter
## 2991 Other specified nontoxic goiter
## 2992 Nontoxic goiter, unspecified
## 2993 Thyrotoxicosis with diffuse goiter without thyrotoxic crisis or storm
## 2994 Thyrotoxicosis with diffuse goiter with thyrotoxic crisis or storm
## 2995 Thyrotoxicosis with toxic single thyroid nodule without thyrotoxic crisis or storm
## 2996 Thyrotoxicosis with toxic single thyroid nodule with thyrotoxic crisis or storm
## 2997 Thyrotoxicosis with toxic multinodular goiter without thyrotoxic crisis or storm
## 2998 Thyrotoxicosis with toxic multinodular goiter with thyrotoxic crisis or storm
## 2999 Thyrotoxicosis from ectopic thyroid tissue without thyrotoxic crisis or storm
## 3000 Thyrotoxicosis from ectopic thyroid tissue with thyrotoxic crisis or storm
## 3001 Thyrotoxicosis factitia without thyrotoxic crisis or storm
## 3002 Thyrotoxicosis factitia with thyrotoxic crisis or storm
## 3003 Other thyrotoxicosis without thyrotoxic crisis or storm
## 3004 Other thyrotoxicosis with thyrotoxic crisis or storm
## 3005 Thyrotoxicosis, unspecified without thyrotoxic crisis or storm
## 3006 Thyrotoxicosis, unspecified with thyrotoxic crisis or storm
## 3007 Acute thyroiditis
## 3008 Subacute thyroiditis
## 3009 Chronic thyroiditis with transient thyrotoxicosis
## 3010 Autoimmune thyroiditis
## 3011 Drug-induced thyroiditis
## 3012 Other chronic thyroiditis
## 3013 Thyroiditis, unspecified
## 3014 Hypersecretion of calcitonin
## 3015 Dyshormogenetic goiter
## 3016 Sick-euthyroid syndrome
## 3017 Other specified disorders of thyroid
## 3018 Disorder of thyroid, unspecified
## 3019 Diabetes mellitus due to underlying condition with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)
## 3020 Diabetes mellitus due to underlying condition with hyperosmolarity with coma
## 3021 Diabetes mellitus due to underlying condition with ketoacidosis without coma
## 3022 Diabetes mellitus due to underlying condition with ketoacidosis with coma
## 3023 Diabetes mellitus due to underlying condition with diabetic nephropathy
## 3024 Diabetes mellitus due to underlying condition with diabetic chronic kidney disease
## 3025 Diabetes mellitus due to underlying condition with other diabetic kidney complication
## 3026 Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy with macular edema
## 3027 Diabetes mellitus due to underlying condition with unspecified diabetic retinopathy without macular edema
## 3028 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, right eye
## 3029 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, left eye
## 3030 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, bilateral
## 3031 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3032 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, right eye
## 3033 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, left eye
## 3034 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, bilateral
## 3035 Diabetes mellitus due to underlying condition with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3036 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, right eye
## 3037 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, left eye
## 3038 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, bilateral
## 3039 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3040 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, right eye
## 3041 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, left eye
## 3042 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, bilateral
## 3043 Diabetes mellitus due to underlying condition with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3044 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, right eye
## 3045 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, left eye
## 3046 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, bilateral
## 3047 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3048 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, right eye
## 3049 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, left eye
## 3050 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, bilateral
## 3051 Diabetes mellitus due to underlying condition with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3052 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, right eye
## 3053 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, left eye
## 3054 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, bilateral
## 3055 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with macular edema, unspecified eye
## 3056 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye
## 3057 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye
## 3058 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral
## 3059 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye
## 3060 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye
## 3061 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye
## 3062 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral
## 3063 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye
## 3064 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye
## 3065 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye
## 3066 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral
## 3067 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye
## 3068 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, right eye
## 3069 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, left eye
## 3070 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, bilateral
## 3071 Diabetes mellitus due to underlying condition with stable proliferative diabetic retinopathy, unspecified eye
## 3072 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, right eye
## 3073 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, left eye
## 3074 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, bilateral
## 3075 Diabetes mellitus due to underlying condition with proliferative diabetic retinopathy without macular edema, unspecified eye
## 3076 Diabetes mellitus due to underlying condition with diabetic cataract
## 3077 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, right eye
## 3078 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, left eye
## 3079 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, bilateral
## 3080 Diabetes mellitus due to underlying condition with diabetic macular edema, resolved following treatment, unspecified eye
## 3081 Diabetes mellitus due to underlying condition with other diabetic ophthalmic complication
## 3082 Diabetes mellitus due to underlying condition with diabetic neuropathy, unspecified
## 3083 Diabetes mellitus due to underlying condition with diabetic mononeuropathy
## 3084 Diabetes mellitus due to underlying condition with diabetic polyneuropathy
## 3085 Diabetes mellitus due to underlying condition with diabetic autonomic (poly)neuropathy
## 3086 Diabetes mellitus due to underlying condition with diabetic amyotrophy
## 3087 Diabetes mellitus due to underlying condition with other diabetic neurological complication
## 3088 Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy without gangrene
## 3089 Diabetes mellitus due to underlying condition with diabetic peripheral angiopathy with gangrene
## 3090 Diabetes mellitus due to underlying condition with other circulatory complications
## 3091 Diabetes mellitus due to underlying condition with diabetic neuropathic arthropathy
## 3092 Diabetes mellitus due to underlying condition with other diabetic arthropathy
## 3093 Diabetes mellitus due to underlying condition with diabetic dermatitis
## 3094 Diabetes mellitus due to underlying condition with foot ulcer
## 3095 Diabetes mellitus due to underlying condition with other skin ulcer
## 3096 Diabetes mellitus due to underlying condition with other skin complications
## 3097 Diabetes mellitus due to underlying condition with periodontal disease
## 3098 Diabetes mellitus due to underlying condition with other oral complications
## 3099 Diabetes mellitus due to underlying condition with hypoglycemia with coma
## 3100 Diabetes mellitus due to underlying condition with hypoglycemia without coma
## 3101 Diabetes mellitus due to underlying condition with hyperglycemia
## 3102 Diabetes mellitus due to underlying condition with other specified complication
## 3103 Diabetes mellitus due to underlying condition with unspecified complications
## 3104 Diabetes mellitus due to underlying condition without complications
## 3105 Drug or chemical induced diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)
## 3106 Drug or chemical induced diabetes mellitus with hyperosmolarity with coma
## 3107 Drug or chemical induced diabetes mellitus with ketoacidosis without coma
## 3108 Drug or chemical induced diabetes mellitus with ketoacidosis with coma
## 3109 Drug or chemical induced diabetes mellitus with diabetic nephropathy
## 3110 Drug or chemical induced diabetes mellitus with diabetic chronic kidney disease
## 3111 Drug or chemical induced diabetes mellitus with other diabetic kidney complication
## 3112 Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy with macular edema
## 3113 Drug or chemical induced diabetes mellitus with unspecified diabetic retinopathy without macular edema
## 3114 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye
## 3115 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye
## 3116 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral
## 3117 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3118 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye
## 3119 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye
## 3120 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral
## 3121 Drug or chemical induced diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3122 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye
## 3123 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye
## 3124 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral
## 3125 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3126 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye
## 3127 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye
## 3128 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral
## 3129 Drug or chemical induced diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3130 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye
## 3131 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye
## 3132 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral
## 3133 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3134 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye
## 3135 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye
## 3136 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral
## 3137 Drug or chemical induced diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3138 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye
## 3139 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye
## 3140 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral
## 3141 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye
## 3142 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye
## 3143 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye
## 3144 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral
## 3145 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye
## 3146 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye
## 3147 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye
## 3148 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral
## 3149 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye
## 3150 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye
## 3151 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye
## 3152 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral
## 3153 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye
## 3154 Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, right eye
## 3155 Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, left eye
## 3156 Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, bilateral
## 3157 Drug or chemical induced diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye
## 3158 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye
## 3159 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye
## 3160 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral
## 3161 Drug or chemical induced diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye
## 3162 Drug or chemical induced diabetes mellitus with diabetic cataract
## 3163 Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, right eye
## 3164 Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, left eye
## 3165 Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral
## 3166 Drug or chemical induced diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye
## 3167 Drug or chemical induced diabetes mellitus with other diabetic ophthalmic complication
## 3168 Drug or chemical induced diabetes mellitus with neurological complications with diabetic neuropathy, unspecified
## 3169 Drug or chemical induced diabetes mellitus with neurological complications with diabetic mononeuropathy
## 3170 Drug or chemical induced diabetes mellitus with neurological complications with diabetic polyneuropathy
## 3171 Drug or chemical induced diabetes mellitus with neurological complications with diabetic autonomic (poly)neuropathy
## 3172 Drug or chemical induced diabetes mellitus with neurological complications with diabetic amyotrophy
## 3173 Drug or chemical induced diabetes mellitus with neurological complications with other diabetic neurological complication
## 3174 Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy without gangrene
## 3175 Drug or chemical induced diabetes mellitus with diabetic peripheral angiopathy with gangrene
## 3176 Drug or chemical induced diabetes mellitus with other circulatory complications
## 3177 Drug or chemical induced diabetes mellitus with diabetic neuropathic arthropathy
## 3178 Drug or chemical induced diabetes mellitus with other diabetic arthropathy
## 3179 Drug or chemical induced diabetes mellitus with diabetic dermatitis
## 3180 Drug or chemical induced diabetes mellitus with foot ulcer
## 3181 Drug or chemical induced diabetes mellitus with other skin ulcer
## 3182 Drug or chemical induced diabetes mellitus with other skin complications
## 3183 Drug or chemical induced diabetes mellitus with periodontal disease
## 3184 Drug or chemical induced diabetes mellitus with other oral complications
## 3185 Drug or chemical induced diabetes mellitus with hypoglycemia with coma
## 3186 Drug or chemical induced diabetes mellitus with hypoglycemia without coma
## 3187 Drug or chemical induced diabetes mellitus with hyperglycemia
## 3188 Drug or chemical induced diabetes mellitus with other specified complication
## 3189 Drug or chemical induced diabetes mellitus with unspecified complications
## 3190 Drug or chemical induced diabetes mellitus without complications
## 3191 Type 1 diabetes mellitus with ketoacidosis without coma
## 3192 Type 1 diabetes mellitus with ketoacidosis with coma
## 3193 Type 1 diabetes mellitus with diabetic nephropathy
## 3194 Type 1 diabetes mellitus with diabetic chronic kidney disease
## 3195 Type 1 diabetes mellitus with other diabetic kidney complication
## 3196 Type 1 diabetes mellitus with unspecified diabetic retinopathy with macular edema
## 3197 Type 1 diabetes mellitus with unspecified diabetic retinopathy without macular edema
## 3198 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye
## 3199 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye
## 3200 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral
## 3201 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3202 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye
## 3203 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye
## 3204 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral
## 3205 Type 1 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3206 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye
## 3207 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye
## 3208 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral
## 3209 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3210 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye
## 3211 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye
## 3212 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral
## 3213 Type 1 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3214 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye
## 3215 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye
## 3216 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral
## 3217 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3218 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye
## 3219 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye
## 3220 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral
## 3221 Type 1 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3222 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye
## 3223 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye
## 3224 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral
## 3225 Type 1 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye
## 3226 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye
## 3227 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye
## 3228 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral
## 3229 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye
## 3230 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye
## 3231 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye
## 3232 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral
## 3233 Type 1 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye
## 3234 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye
## 3235 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye
## 3236 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral
## 3237 Type 1 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye
## 3238 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, right eye
## 3239 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, left eye
## 3240 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral
## 3241 Type 1 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye
## 3242 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye
## 3243 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye
## 3244 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral
## 3245 Type 1 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye
## 3246 Type 1 diabetes mellitus with diabetic cataract
## 3247 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye
## 3248 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye
## 3249 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral
## 3250 Type 1 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye
## 3251 Type 1 diabetes mellitus with other diabetic ophthalmic complication
## 3252 Type 1 diabetes mellitus with diabetic neuropathy, unspecified
## 3253 Type 1 diabetes mellitus with diabetic mononeuropathy
## 3254 Type 1 diabetes mellitus with diabetic polyneuropathy
## 3255 Type 1 diabetes mellitus with diabetic autonomic (poly)neuropathy
## 3256 Type 1 diabetes mellitus with diabetic amyotrophy
## 3257 Type 1 diabetes mellitus with other diabetic neurological complication
## 3258 Type 1 diabetes mellitus with diabetic peripheral angiopathy without gangrene
## 3259 Type 1 diabetes mellitus with diabetic peripheral angiopathy with gangrene
## 3260 Type 1 diabetes mellitus with other circulatory complications
## 3261 Type 1 diabetes mellitus with diabetic neuropathic arthropathy
## 3262 Type 1 diabetes mellitus with other diabetic arthropathy
## 3263 Type 1 diabetes mellitus with diabetic dermatitis
## 3264 Type 1 diabetes mellitus with foot ulcer
## 3265 Type 1 diabetes mellitus with other skin ulcer
## 3266 Type 1 diabetes mellitus with other skin complications
## 3267 Type 1 diabetes mellitus with periodontal disease
## 3268 Type 1 diabetes mellitus with other oral complications
## 3269 Type 1 diabetes mellitus with hypoglycemia with coma
## 3270 Type 1 diabetes mellitus with hypoglycemia without coma
## 3271 Type 1 diabetes mellitus with hyperglycemia
## 3272 Type 1 diabetes mellitus with other specified complication
## 3273 Type 1 diabetes mellitus with unspecified complications
## 3274 Type 1 diabetes mellitus without complications
## 3275 Type 2 diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)
## 3276 Type 2 diabetes mellitus with hyperosmolarity with coma
## 3277 Type 2 diabetes mellitus with ketoacidosis without coma
## 3278 Type 2 diabetes mellitus with ketoacidosis with coma
## 3279 Type 2 diabetes mellitus with diabetic nephropathy
## 3280 Type 2 diabetes mellitus with diabetic chronic kidney disease
## 3281 Type 2 diabetes mellitus with other diabetic kidney complication
## 3282 Type 2 diabetes mellitus with unspecified diabetic retinopathy with macular edema
## 3283 Type 2 diabetes mellitus with unspecified diabetic retinopathy without macular edema
## 3284 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye
## 3285 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye
## 3286 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral
## 3287 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3288 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye
## 3289 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye
## 3290 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral
## 3291 Type 2 diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3292 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye
## 3293 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye
## 3294 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral
## 3295 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3296 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye
## 3297 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye
## 3298 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral
## 3299 Type 2 diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3300 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye
## 3301 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye
## 3302 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral
## 3303 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3304 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye
## 3305 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye
## 3306 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral
## 3307 Type 2 diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3308 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye
## 3309 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye
## 3310 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral
## 3311 Type 2 diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye
## 3312 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye
## 3313 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye
## 3314 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral
## 3315 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye
## 3316 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye
## 3317 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye
## 3318 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral
## 3319 Type 2 diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye
## 3320 Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye
## 3321 Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye
## 3322 Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral
## 3323 Type 2 diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye
## 3324 Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, right eye
## 3325 Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, left eye
## 3326 Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, bilateral
## 3327 Type 2 diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye
## 3328 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye
## 3329 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye
## 3330 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral
## 3331 Type 2 diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye
## 3332 Type 2 diabetes mellitus with diabetic cataract
## 3333 Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, right eye
## 3334 Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, left eye
## 3335 Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral
## 3336 Type 2 diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye
## 3337 Type 2 diabetes mellitus with other diabetic ophthalmic complication
## 3338 Type 2 diabetes mellitus with diabetic neuropathy, unspecified
## 3339 Type 2 diabetes mellitus with diabetic mononeuropathy
## 3340 Type 2 diabetes mellitus with diabetic polyneuropathy
## 3341 Type 2 diabetes mellitus with diabetic autonomic (poly)neuropathy
## 3342 Type 2 diabetes mellitus with diabetic amyotrophy
## 3343 Type 2 diabetes mellitus with other diabetic neurological complication
## 3344 Type 2 diabetes mellitus with diabetic peripheral angiopathy without gangrene
## 3345 Type 2 diabetes mellitus with diabetic peripheral angiopathy with gangrene
## 3346 Type 2 diabetes mellitus with other circulatory complications
## 3347 Type 2 diabetes mellitus with diabetic neuropathic arthropathy
## 3348 Type 2 diabetes mellitus with other diabetic arthropathy
## 3349 Type 2 diabetes mellitus with diabetic dermatitis
## 3350 Type 2 diabetes mellitus with foot ulcer
## 3351 Type 2 diabetes mellitus with other skin ulcer
## 3352 Type 2 diabetes mellitus with other skin complications
## 3353 Type 2 diabetes mellitus with periodontal disease
## 3354 Type 2 diabetes mellitus with other oral complications
## 3355 Type 2 diabetes mellitus with hypoglycemia with coma
## 3356 Type 2 diabetes mellitus with hypoglycemia without coma
## 3357 Type 2 diabetes mellitus with hyperglycemia
## 3358 Type 2 diabetes mellitus with other specified complication
## 3359 Type 2 diabetes mellitus with unspecified complications
## 3360 Type 2 diabetes mellitus without complications
## 3361 Other specified diabetes mellitus with hyperosmolarity without nonketotic hyperglycemic-hyperosmolar coma (NKHHC)
## 3362 Other specified diabetes mellitus with hyperosmolarity with coma
## 3363 Other specified diabetes mellitus with ketoacidosis without coma
## 3364 Other specified diabetes mellitus with ketoacidosis with coma
## 3365 Other specified diabetes mellitus with diabetic nephropathy
## 3366 Other specified diabetes mellitus with diabetic chronic kidney disease
## 3367 Other specified diabetes mellitus with other diabetic kidney complication
## 3368 Other specified diabetes mellitus with unspecified diabetic retinopathy with macular edema
## 3369 Other specified diabetes mellitus with unspecified diabetic retinopathy without macular edema
## 3370 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, right eye
## 3371 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, left eye
## 3372 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, bilateral
## 3373 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3374 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, right eye
## 3375 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, left eye
## 3376 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, bilateral
## 3377 Other specified diabetes mellitus with mild nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3378 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, right eye
## 3379 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, left eye
## 3380 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, bilateral
## 3381 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3382 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, right eye
## 3383 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, left eye
## 3384 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, bilateral
## 3385 Other specified diabetes mellitus with moderate nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3386 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, right eye
## 3387 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, left eye
## 3388 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, bilateral
## 3389 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy with macular edema, unspecified eye
## 3390 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, right eye
## 3391 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, left eye
## 3392 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, bilateral
## 3393 Other specified diabetes mellitus with severe nonproliferative diabetic retinopathy without macular edema, unspecified eye
## 3394 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, right eye
## 3395 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, left eye
## 3396 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, bilateral
## 3397 Other specified diabetes mellitus with proliferative diabetic retinopathy with macular edema, unspecified eye
## 3398 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, right eye
## 3399 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, left eye
## 3400 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, bilateral
## 3401 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment involving the macula, unspecified eye
## 3402 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, right eye
## 3403 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, left eye
## 3404 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, bilateral
## 3405 Other specified diabetes mellitus with proliferative diabetic retinopathy with traction retinal detachment not involving the macula, unspecified eye
## 3406 Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, right eye
## 3407 Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, left eye
## 3408 Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, bilateral
## 3409 Other specified diabetes mellitus with proliferative diabetic retinopathy with combined traction retinal detachment and rhegmatogenous retinal detachment, unspecified eye
## 3410 Other specified diabetes mellitus with stable proliferative diabetic retinopathy, right eye
## 3411 Other specified diabetes mellitus with stable proliferative diabetic retinopathy, left eye
## 3412 Other specified diabetes mellitus with stable proliferative diabetic retinopathy, bilateral
## 3413 Other specified diabetes mellitus with stable proliferative diabetic retinopathy, unspecified eye
## 3414 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, right eye
## 3415 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, left eye
## 3416 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, bilateral
## 3417 Other specified diabetes mellitus with proliferative diabetic retinopathy without macular edema, unspecified eye
## 3418 Other specified diabetes mellitus with diabetic cataract
## 3419 Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, right eye
## 3420 Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, left eye
## 3421 Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, bilateral
## 3422 Other specified diabetes mellitus with diabetic macular edema, resolved following treatment, unspecified eye
## 3423 Other specified diabetes mellitus with other diabetic ophthalmic complication
## 3424 Other specified diabetes mellitus with diabetic neuropathy, unspecified
## 3425 Other specified diabetes mellitus with diabetic mononeuropathy
## 3426 Other specified diabetes mellitus with diabetic polyneuropathy
## 3427 Other specified diabetes mellitus with diabetic autonomic (poly)neuropathy
## 3428 Other specified diabetes mellitus with diabetic amyotrophy
## 3429 Other specified diabetes mellitus with other diabetic neurological complication
## 3430 Other specified diabetes mellitus with diabetic peripheral angiopathy without gangrene
## 3431 Other specified diabetes mellitus with diabetic peripheral angiopathy with gangrene
## 3432 Other specified diabetes mellitus with other circulatory complications
## 3433 Other specified diabetes mellitus with diabetic neuropathic arthropathy
## 3434 Other specified diabetes mellitus with other diabetic arthropathy
## 3435 Other specified diabetes mellitus with diabetic dermatitis
## 3436 Other specified diabetes mellitus with foot ulcer
## 3437 Other specified diabetes mellitus with other skin ulcer
## 3438 Other specified diabetes mellitus with other skin complications
## 3439 Other specified diabetes mellitus with periodontal disease
## 3440 Other specified diabetes mellitus with other oral complications
## 3441 Other specified diabetes mellitus with hypoglycemia with coma
## 3442 Other specified diabetes mellitus with hypoglycemia without coma
## 3443 Other specified diabetes mellitus with hyperglycemia
## 3444 Other specified diabetes mellitus with other specified complication
## 3445 Other specified diabetes mellitus with unspecified complications
## 3446 Other specified diabetes mellitus without complications
## 3447 Nondiabetic hypoglycemic coma
## 3448 Drug-induced hypoglycemia without coma
## 3449 Other hypoglycemia
## 3450 Hypoglycemia, unspecified
## 3451 Increased secretion of glucagon
## 3452 Increased secretion of gastrin
## 3453 Other specified disorders of pancreatic internal secretion
## 3454 Disorder of pancreatic internal secretion, unspecified
## 3455 Idiopathic hypoparathyroidism
## 3456 Pseudohypoparathyroidism
## 3457 Other hypoparathyroidism
## 3458 Hypoparathyroidism, unspecified
## 3459 Primary hyperparathyroidism
## 3460 Secondary hyperparathyroidism, not elsewhere classified
## 3461 Other hyperparathyroidism
## 3462 Hyperparathyroidism, unspecified
## 3463 Other specified disorders of parathyroid gland
## 3464 Disorder of parathyroid gland, unspecified
## 3465 Acromegaly and pituitary gigantism
## 3466 Hyperprolactinemia
## 3467 Syndrome of inappropriate secretion of antidiuretic hormone
## 3468 Other hyperfunction of pituitary gland
## 3469 Hyperfunction of pituitary gland, unspecified
## 3470 Hypopituitarism
## 3471 Drug-induced hypopituitarism
## 3472 Diabetes insipidus
## 3473 Hypothalamic dysfunction, not elsewhere classified
## 3474 Other disorders of pituitary gland
## 3475 Disorder of pituitary gland, unspecified
## 3476 Pituitary-dependent Cushing's disease
## 3477 Nelson's syndrome
## 3478 Drug-induced Cushing's syndrome
## 3479 Ectopic ACTH syndrome
## 3480 Alcohol-induced pseudo-Cushing's syndrome
## 3481 Other Cushing's syndrome
## 3482 Cushing's syndrome, unspecified
## 3483 Congenital adrenogenital disorders associated with enzyme deficiency
## 3484 Other adrenogenital disorders
## 3485 Adrenogenital disorder, unspecified
## 3486 Conn's syndrome
## 3487 Glucocorticoid-remediable aldosteronism
## 3488 Other primary hyperaldosteronism
## 3489 Secondary hyperaldosteronism
## 3490 Bartter's syndrome
## 3491 Other hyperaldosteronism
## 3492 Hyperaldosteronism, unspecified
## 3493 Other adrenocortical overactivity
## 3494 Primary adrenocortical insufficiency
## 3495 Addisonian crisis
## 3496 Drug-induced adrenocortical insufficiency
## 3497 Unspecified adrenocortical insufficiency
## 3498 Other adrenocortical insufficiency
## 3499 Adrenomedullary hyperfunction
## 3500 Other specified disorders of adrenal gland
## 3501 Disorder of adrenal gland, unspecified
## 3502 Estrogen excess
## 3503 Androgen excess
## 3504 Polycystic ovarian syndrome
## 3505 Symptomatic premature menopause
## 3506 Asymptomatic premature menopause
## 3507 Other primary ovarian failure
## 3508 Other ovarian dysfunction
## 3509 Ovarian dysfunction, unspecified
## 3510 Testicular hyperfunction
## 3511 Testicular hypofunction
## 3512 Other testicular dysfunction
## 3513 Testicular dysfunction, unspecified
## 3514 Delayed puberty
## 3515 Precocious puberty
## 3516 Other disorders of puberty
## 3517 Disorder of puberty, unspecified
## 3518 Autoimmune polyglandular failure
## 3519 Polyglandular hyperfunction
## 3520 Multiple endocrine neoplasia [MEN] syndrome, unspecified
## 3521 Multiple endocrine neoplasia [MEN] type I
## 3522 Multiple endocrine neoplasia [MEN] type IIA
## 3523 Multiple endocrine neoplasia [MEN] type IIB
## 3524 Other polyglandular dysfunction
## 3525 Polyglandular dysfunction, unspecified
## 3526 Persistent hyperplasia of thymus
## 3527 Abscess of thymus
## 3528 Other diseases of thymus
## 3529 Disease of thymus, unspecified
## 3530 Carcinoid syndrome
## 3531 Other hypersecretion of intestinal hormones
## 3532 Ectopic hormone secretion, not elsewhere classified
## 3533 Short stature due to endocrine disorder
## 3534 Constitutional tall stature
## 3535 Androgen insensitivity syndrome, unspecified
## 3536 Complete androgen insensitivity syndrome
## 3537 Partial androgen insensitivity syndrome
## 3538 Other specified endocrine disorders
## 3539 Endocrine disorder, unspecified
## 3540 Disorders of endocrine glands in diseases classified elsewhere
## 3541 Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating an endocrine system procedure
## 3542 Intraoperative hemorrhage and hematoma of an endocrine system organ or structure complicating other procedure
## 3543 Accidental puncture and laceration of an endocrine system organ or structure during an endocrine system procedure
## 3544 Accidental puncture and laceration of an endocrine system organ or structure during other procedure
## 3545 Other intraoperative complications of endocrine system
## 3546 Kwashiorkor
## 3547 Nutritional marasmus
## 3548 Marasmic kwashiorkor
## 3549 Unspecified severe protein-calorie malnutrition
## 3550 Moderate protein-calorie malnutrition
## 3551 Mild protein-calorie malnutrition
## 3552 Retarded development following protein-calorie malnutrition
## 3553 Unspecified protein-calorie malnutrition
## 3554 Vitamin A deficiency with conjunctival xerosis
## 3555 Vitamin A deficiency with Bitot's spot and conjunctival xerosis
## 3556 Vitamin A deficiency with corneal xerosis
## 3557 Vitamin A deficiency with corneal ulceration and xerosis
## 3558 Vitamin A deficiency with keratomalacia
## 3559 Vitamin A deficiency with night blindness
## 3560 Vitamin A deficiency with xerophthalmic scars of cornea
## 3561 Other ocular manifestations of vitamin A deficiency
## 3562 Other manifestations of vitamin A deficiency
## 3563 Vitamin A deficiency, unspecified
## 3564 Dry beriberi
## 3565 Wet beriberi
## 3566 Wernicke's encephalopathy
## 3567 Other manifestations of thiamine deficiency
## 3568 Thiamine deficiency, unspecified
## 3569 Niacin deficiency [pellagra]
## 3570 Riboflavin deficiency
## 3571 Pyridoxine deficiency
## 3572 Deficiency of other specified B group vitamins
## 3573 Vitamin B deficiency, unspecified
## 3574 Ascorbic acid deficiency
## 3575 Rickets, active
## 3576 Vitamin D deficiency, unspecified
## 3577 Deficiency of vitamin E
## 3578 Deficiency of vitamin K
## 3579 Deficiency of other vitamins
## 3580 Vitamin deficiency, unspecified
## 3581 Dietary calcium deficiency
## 3582 Dietary selenium deficiency
## 3583 Dietary zinc deficiency
## 3584 Copper deficiency
## 3585 Iron deficiency
## 3586 Magnesium deficiency
## 3587 Manganese deficiency
## 3588 Chromium deficiency
## 3589 Molybdenum deficiency
## 3590 Vanadium deficiency
## 3591 Deficiency of multiple nutrient elements
## 3592 Deficiency of other specified nutrient elements
## 3593 Deficiency of nutrient element, unspecified
## 3594 Essential fatty acid [EFA] deficiency
## 3595 Imbalance of constituents of food intake
## 3596 Other specified nutritional deficiencies
## 3597 Nutritional deficiency, unspecified
## 3598 Sequelae of protein-calorie malnutrition
## 3599 Sequelae of vitamin A deficiency
## 3600 Sequelae of vitamin C deficiency
## 3601 Sequelae of rickets
## 3602 Sequelae of other nutritional deficiencies
## 3603 Sequelae of unspecified nutritional deficiency
## 3604 Localized adiposity
## 3605 Morbid (severe) obesity due to excess calories
## 3606 Other obesity due to excess calories
## 3607 Drug-induced obesity
## 3608 Morbid (severe) obesity with alveolar hypoventilation
## 3609 Overweight
## 3610 Other obesity
## 3611 Obesity, unspecified
## 3612 Hypervitaminosis A
## 3613 Hypercarotenemia
## 3614 Megavitamin-B6 syndrome
## 3615 Hypervitaminosis D
## 3616 Other specified hyperalimentation
## 3617 Sequelae of hyperalimentation
## 3618 Classical phenylketonuria
## 3619 Other hyperphenylalaninemias
## 3620 Disorder of tyrosine metabolism, unspecified
## 3621 Tyrosinemia
## 3622 Other disorders of tyrosine metabolism
## 3623 Albinism, unspecified
## 3624 X-linked ocular albinism
## 3625 Autosomal recessive ocular albinism
## 3626 Other ocular albinism
## 3627 Ocular albinism, unspecified
## 3628 Tyrosinase negative oculocutaneous albinism
## 3629 Tyrosinase positive oculocutaneous albinism
## 3630 Other oculocutaneous albinism
## 3631 Oculocutaneous albinism, unspecified
## 3632 Chediak-Higashi syndrome
## 3633 Hermansky-Pudlak syndrome
## 3634 Other albinism with hematologic abnormality
## 3635 Albinism with hematologic abnormality, unspecified
## 3636 Other specified albinism
## 3637 Disorders of histidine metabolism, unspecified
## 3638 Histidinemia
## 3639 Other disorders of histidine metabolism
## 3640 Disorders of tryptophan metabolism
## 3641 Other disorders of aromatic amino-acid metabolism
## 3642 Disorder of aromatic amino-acid metabolism, unspecified
## 3643 Maple-syrup-urine disease
## 3644 Isovaleric acidemia
## 3645 3-methylglutaconic aciduria
## 3646 Other branched-chain organic acidurias
## 3647 Methylmalonic acidemia
## 3648 Propionic acidemia
## 3649 Other disorders of propionate metabolism
## 3650 Other disorders of branched-chain amino-acid metabolism
## 3651 Disorder of branched-chain amino-acid metabolism, unspecified
## 3652 Disorder of fatty-acid metabolism, unspecified
## 3653 Long chain/very long chain acyl CoA dehydrogenase deficiency
## 3654 Medium chain acyl CoA dehydrogenase deficiency
## 3655 Short chain acyl CoA dehydrogenase deficiency
## 3656 Glutaric aciduria type II
## 3657 Muscle carnitine palmitoyltransferase deficiency
## 3658 Other disorders of fatty-acid oxidation
## 3659 Disorders of ketone metabolism
## 3660 Other disorders of fatty-acid metabolism
## 3661 Disorder of carnitine metabolism, unspecified
## 3662 Primary carnitine deficiency
## 3663 Carnitine deficiency due to inborn errors of metabolism
## 3664 Iatrogenic carnitine deficiency
## 3665 Ruvalcaba-Myhre-Smith syndrome
## 3666 Other secondary carnitine deficiency
## 3667 Peroxisomal disorder, unspecified
## 3668 Zellweger syndrome
## 3669 Neonatal adrenoleukodystrophy
## 3670 Other disorders of peroxisome biogenesis
## 3671 Childhood cerebral X-linked adrenoleukodystrophy
## 3672 Adolescent X-linked adrenoleukodystrophy
## 3673 Adrenomyeloneuropathy
## 3674 Other X-linked adrenoleukodystrophy
## 3675 X-linked adrenoleukodystrophy, unspecified type
## 3676 Other group 2 peroxisomal disorders
## 3677 Rhizomelic chondrodysplasia punctata
## 3678 Zellweger-like syndrome
## 3679 Other group 3 peroxisomal disorders
## 3680 Other peroxisomal disorders
## 3681 Disorders of amino-acid transport, unspecified
## 3682 Cystinuria
## 3683 Hartnup's disease
## 3684 Lowe's syndrome
## 3685 Cystinosis
## 3686 Other disorders of amino-acid transport
## 3687 Disorders of sulfur-bearing amino-acid metabolism, unspecified
## 3688 Homocystinuria
## 3689 Methylenetetrahydrofolate reductase deficiency
## 3690 Other disorders of sulfur-bearing amino-acid metabolism
## 3691 Disorder of urea cycle metabolism, unspecified
## 3692 Argininemia
## 3693 Arginosuccinic aciduria
## 3694 Citrullinemia
## 3695 Other disorders of urea cycle metabolism
## 3696 Disorders of lysine and hydroxylysine metabolism
## 3697 Disorders of ornithine metabolism
## 3698 Disorder of glycine metabolism, unspecified
## 3699 Non-ketotic hyperglycinemia
## 3700 Trimethylaminuria
## 3701 Primary hyperoxaluria
## 3702 Other disorders of glycine metabolism
## 3703 Disorders of gamma aminobutyric acid metabolism
## 3704 Other specified disorders of amino-acid metabolism
## 3705 Disorder of amino-acid metabolism, unspecified
## 3706 Congenital lactase deficiency
## 3707 Secondary lactase deficiency
## 3708 Other lactose intolerance
## 3709 Lactose intolerance, unspecified
## 3710 Glycogen storage disease, unspecified
## 3711 von Gierke disease
## 3712 Pompe disease
## 3713 Cori disease
## 3714 McArdle disease
## 3715 Other glycogen storage disease
## 3716 Disorder of fructose metabolism, unspecified
## 3717 Essential fructosuria
## 3718 Hereditary fructose intolerance
## 3719 Other disorders of fructose metabolism
## 3720 Disorders of galactose metabolism, unspecified
## 3721 Galactosemia
## 3722 Other disorders of galactose metabolism
## 3723 Sucrase-isomaltase deficiency
## 3724 Other disorders of intestinal carbohydrate absorption
## 3725 Disorders of pyruvate metabolism and gluconeogenesis
## 3726 Other specified disorders of carbohydrate metabolism
## 3727 Disorder of carbohydrate metabolism, unspecified
## 3728 GM2 gangliosidosis, unspecified
## 3729 Sandhoff disease
## 3730 Tay-Sachs disease
## 3731 Other GM2 gangliosidosis
## 3732 Unspecified gangliosidosis
## 3733 Mucolipidosis IV
## 3734 Other gangliosidosis
## 3735 Fabry (-Anderson) disease
## 3736 Gaucher disease
## 3737 Krabbe disease
## 3738 Niemann-Pick disease type A
## 3739 Niemann-Pick disease type B
## 3740 Niemann-Pick disease type C
## 3741 Niemann-Pick disease type D
## 3742 Other Niemann-Pick disease
## 3743 Niemann-Pick disease, unspecified
## 3744 Metachromatic leukodystrophy
## 3745 Sulfatase deficiency
## 3746 Other sphingolipidosis
## 3747 Sphingolipidosis, unspecified
## 3748 Neuronal ceroid lipofuscinosis
## 3749 Other lipid storage disorders
## 3750 Lipid storage disorder, unspecified
## 3751 Hurler's syndrome
## 3752 Hurler-Scheie syndrome
## 3753 Scheie's syndrome
## 3754 Mucopolysaccharidosis, type II
## 3755 Morquio A mucopolysaccharidoses
## 3756 Morquio B mucopolysaccharidoses
## 3757 Morquio mucopolysaccharidoses, unspecified
## 3758 Sanfilippo mucopolysaccharidoses
## 3759 Other mucopolysaccharidoses
## 3760 Mucopolysaccharidosis, unspecified
## 3761 Other disorders of glucosaminoglycan metabolism
## 3762 Glucosaminoglycan metabolism disorder, unspecified
## 3763 Defects in post-translational modification of lysosomal enzymes
## 3764 Defects in glycoprotein degradation
## 3765 Other disorders of glycoprotein metabolism
## 3766 Disorder of glycoprotein metabolism, unspecified
## 3767 Pure hypercholesterolemia, unspecified
## 3768 Familial hypercholesterolemia
## 3769 Pure hyperglyceridemia
## 3770 Mixed hyperlipidemia
## 3771 Hyperchylomicronemia
## 3772 Elevated Lipoprotein(a)
## 3773 Other hyperlipidemia
## 3774 Hyperlipidemia, unspecified
## 3775 Lipoprotein deficiency
## 3776 Disorder of bile acid and cholesterol metabolism, unspecified
## 3777 Barth syndrome
## 3778 Smith-Lemli-Opitz syndrome
## 3779 Other disorders of bile acid and cholesterol metabolism
## 3780 Lipoid dermatoarthritis
## 3781 Other lipoprotein metabolism disorders
## 3782 Disorder of lipoprotein metabolism, unspecified
## 3783 Hyperuricemia without signs of inflammatory arthritis and tophaceous disease
## 3784 Lesch-Nyhan syndrome
## 3785 Myoadenylate deaminase deficiency
## 3786 Other disorders of purine and pyrimidine metabolism
## 3787 Disorder of purine and pyrimidine metabolism, unspecified
## 3788 Hereditary erythropoietic porphyria
## 3789 Porphyria cutanea tarda
## 3790 Unspecified porphyria
## 3791 Acute intermittent (hepatic) porphyria
## 3792 Other porphyria
## 3793 Defects of catalase and peroxidase
## 3794 Gilbert syndrome
## 3795 Crigler-Najjar syndrome
## 3796 Other disorders of bilirubin metabolism
## 3797 Disorder of bilirubin metabolism, unspecified
## 3798 Disorder of copper metabolism, unspecified
## 3799 Wilson's disease
## 3800 Other disorders of copper metabolism
## 3801 Disorder of iron metabolism, unspecified
## 3802 Hereditary hemochromatosis
## 3803 Hemochromatosis due to repeated red blood cell transfusions
## 3804 Other hemochromatosis
## 3805 Hemochromatosis, unspecified
## 3806 Other disorders of iron metabolism
## 3807 Disorders of zinc metabolism
## 3808 Disorder of phosphorus metabolism, unspecified
## 3809 Familial hypophosphatemia
## 3810 Hereditary vitamin D-dependent rickets (type 1) (type 2)
## 3811 Other disorders of phosphorus metabolism
## 3812 Disorders of magnesium metabolism, unspecified
## 3813 Hypermagnesemia
## 3814 Hypomagnesemia
## 3815 Other disorders of magnesium metabolism
## 3816 Unspecified disorder of calcium metabolism
## 3817 Hypocalcemia
## 3818 Hypercalcemia
## 3819 Other disorders of calcium metabolism
## 3820 Hungry bone syndrome
## 3821 Other disorders of mineral metabolism
## 3822 Disorder of mineral metabolism, unspecified
## 3823 Cystic fibrosis with pulmonary manifestations
## 3824 Meconium ileus in cystic fibrosis
## 3825 Cystic fibrosis with other intestinal manifestations
## 3826 Cystic fibrosis with other manifestations
## 3827 Cystic fibrosis, unspecified
## 3828 Non-neuropathic heredofamilial amyloidosis
## 3829 Neuropathic heredofamilial amyloidosis
## 3830 Heredofamilial amyloidosis, unspecified
## 3831 Secondary systemic amyloidosis
## 3832 Organ-limited amyloidosis
## 3833 Light chain (AL) amyloidosis
## 3834 Wild-type transthyretin-related (ATTR) amyloidosis
## 3835 Other amyloidosis
## 3836 Amyloidosis, unspecified
## 3837 Dehydration
## 3838 Hypovolemia
## 3839 Volume depletion, unspecified
## 3840 Hyperosmolality and hypernatremia
## 3841 Hypo-osmolality and hyponatremia
## 3842 Acidosis
## 3843 Alkalosis
## 3844 Mixed disorder of acid-base balance
## 3845 Hyperkalemia
## 3846 Hypokalemia
## 3847 Fluid overload, unspecified
## 3848 Transfusion associated circulatory overload
## 3849 Other fluid overload
## 3850 Other disorders of electrolyte and fluid balance, not elsewhere classified
## 3851 Alpha-1-antitrypsin deficiency
## 3852 Plasminogen deficiency
## 3853 Other disorders of plasma-protein metabolism, not elsewhere classified
## 3854 Lipodystrophy, not elsewhere classified
## 3855 Lipomatosis, not elsewhere classified
## 3856 Tumor lysis syndrome
## 3857 Mitochondrial metabolism disorder, unspecified
## 3858 MELAS syndrome
## 3859 MERRF syndrome
## 3860 Other mitochondrial metabolism disorders
## 3861 Metabolic syndrome
## 3862 Other specified metabolic disorders
## 3863 Metabolic disorder, unspecified
## 3864 Postprocedural hypothyroidism
## 3865 Postprocedural hypoinsulinemia
## 3866 Postprocedural hypoparathyroidism
## 3867 Postprocedural hypopituitarism
## 3868 Asymptomatic postprocedural ovarian failure
## 3869 Symptomatic postprocedural ovarian failure
## 3870 Postprocedural testicular hypofunction
## 3871 Postprocedural adrenocortical (-medullary) hypofunction
## 3872 Postprocedural hemorrhage of an endocrine system organ or structure following an endocrine system procedure
## 3873 Postprocedural hemorrhage of an endocrine system organ or structure following other procedure
## 3874 Postprocedural hematoma of an endocrine system organ or structure following an endocrine system procedure
## 3875 Postprocedural hematoma of an endocrine system organ or structure following other procedure
## 3876 Postprocedural seroma of an endocrine system organ or structure following an endocrine system procedure
## 3877 Postprocedural seroma of an endocrine system organ or structure following other procedure
## 3878 Other postprocedural endocrine and metabolic complications and disorders
## 3879 Vascular dementia without behavioral disturbance
## 3880 Vascular dementia with behavioral disturbance
## 3881 Dementia in other diseases classified elsewhere without behavioral disturbance
## 3882 Dementia in other diseases classified elsewhere with behavioral disturbance
## 3883 Unspecified dementia without behavioral disturbance
## 3884 Unspecified dementia with behavioral disturbance
## 3885 Amnestic disorder due to known physiological condition
## 3886 Delirium due to known physiological condition
## 3887 Psychotic disorder with hallucinations due to known physiological condition
## 3888 Catatonic disorder due to known physiological condition
## 3889 Psychotic disorder with delusions due to known physiological condition
## 3890 Mood disorder due to known physiological condition, unspecified
## 3891 Mood disorder due to known physiological condition with depressive features
## 3892 Mood disorder due to known physiological condition with major depressive-like episode
## 3893 Mood disorder due to known physiological condition with manic features
## 3894 Mood disorder due to known physiological condition with mixed features
## 3895 Anxiety disorder due to known physiological condition
## 3896 Other specified mental disorders due to known physiological condition
## 3897 Personality change due to known physiological condition
## 3898 Postconcussional syndrome
## 3899 Other personality and behavioral disorders due to known physiological condition
## 3900 Unspecified personality and behavioral disorder due to known physiological condition
## 3901 Unspecified mental disorder due to known physiological condition
## 3902 Alcohol abuse, uncomplicated
## 3903 Alcohol abuse, in remission
## 3904 Alcohol abuse with intoxication, uncomplicated
## 3905 Alcohol abuse with intoxication delirium
## 3906 Alcohol abuse with intoxication, unspecified
## 3907 Alcohol abuse with alcohol-induced mood disorder
## 3908 Alcohol abuse with alcohol-induced psychotic disorder with delusions
## 3909 Alcohol abuse with alcohol-induced psychotic disorder with hallucinations
## 3910 Alcohol abuse with alcohol-induced psychotic disorder, unspecified
## 3911 Alcohol abuse with alcohol-induced anxiety disorder
## 3912 Alcohol abuse with alcohol-induced sexual dysfunction
## 3913 Alcohol abuse with alcohol-induced sleep disorder
## 3914 Alcohol abuse with other alcohol-induced disorder
## 3915 Alcohol abuse with unspecified alcohol-induced disorder
## 3916 Alcohol dependence, uncomplicated
## 3917 Alcohol dependence, in remission
## 3918 Alcohol dependence with intoxication, uncomplicated
## 3919 Alcohol dependence with intoxication delirium
## 3920 Alcohol dependence with intoxication, unspecified
## 3921 Alcohol dependence with withdrawal, uncomplicated
## 3922 Alcohol dependence with withdrawal delirium
## 3923 Alcohol dependence with withdrawal with perceptual disturbance
## 3924 Alcohol dependence with withdrawal, unspecified
## 3925 Alcohol dependence with alcohol-induced mood disorder
## 3926 Alcohol dependence with alcohol-induced psychotic disorder with delusions
## 3927 Alcohol dependence with alcohol-induced psychotic disorder with hallucinations
## 3928 Alcohol dependence with alcohol-induced psychotic disorder, unspecified
## 3929 Alcohol dependence with alcohol-induced persisting amnestic disorder
## 3930 Alcohol dependence with alcohol-induced persisting dementia
## 3931 Alcohol dependence with alcohol-induced anxiety disorder
## 3932 Alcohol dependence with alcohol-induced sexual dysfunction
## 3933 Alcohol dependence with alcohol-induced sleep disorder
## 3934 Alcohol dependence with other alcohol-induced disorder
## 3935 Alcohol dependence with unspecified alcohol-induced disorder
## 3936 Alcohol use, unspecified with intoxication, uncomplicated
## 3937 Alcohol use, unspecified with intoxication delirium
## 3938 Alcohol use, unspecified with intoxication, unspecified
## 3939 Alcohol use, unspecified with alcohol-induced mood disorder
## 3940 Alcohol use, unspecified with alcohol-induced psychotic disorder with delusions
## 3941 Alcohol use, unspecified with alcohol-induced psychotic disorder with hallucinations
## 3942 Alcohol use, unspecified with alcohol-induced psychotic disorder, unspecified
## 3943 Alcohol use, unspecified with alcohol-induced persisting amnestic disorder
## 3944 Alcohol use, unspecified with alcohol-induced persisting dementia
## 3945 Alcohol use, unspecified with alcohol-induced anxiety disorder
## 3946 Alcohol use, unspecified with alcohol-induced sexual dysfunction
## 3947 Alcohol use, unspecified with alcohol-induced sleep disorder
## 3948 Alcohol use, unspecified with other alcohol-induced disorder
## 3949 Alcohol use, unspecified with unspecified alcohol-induced disorder
## 3950 Opioid abuse, uncomplicated
## 3951 Opioid abuse, in remission
## 3952 Opioid abuse with intoxication, uncomplicated
## 3953 Opioid abuse with intoxication delirium
## 3954 Opioid abuse with intoxication with perceptual disturbance
## 3955 Opioid abuse with intoxication, unspecified
## 3956 Opioid abuse with opioid-induced mood disorder
## 3957 Opioid abuse with opioid-induced psychotic disorder with delusions
## 3958 Opioid abuse with opioid-induced psychotic disorder with hallucinations
## 3959 Opioid abuse with opioid-induced psychotic disorder, unspecified
## 3960 Opioid abuse with opioid-induced sexual dysfunction
## 3961 Opioid abuse with opioid-induced sleep disorder
## 3962 Opioid abuse with other opioid-induced disorder
## 3963 Opioid abuse with unspecified opioid-induced disorder
## 3964 Opioid dependence, uncomplicated
## 3965 Opioid dependence, in remission
## 3966 Opioid dependence with intoxication, uncomplicated
## 3967 Opioid dependence with intoxication delirium
## 3968 Opioid dependence with intoxication with perceptual disturbance
## 3969 Opioid dependence with intoxication, unspecified
## 3970 Opioid dependence with withdrawal
## 3971 Opioid dependence with opioid-induced mood disorder
## 3972 Opioid dependence with opioid-induced psychotic disorder with delusions
## 3973 Opioid dependence with opioid-induced psychotic disorder with hallucinations
## 3974 Opioid dependence with opioid-induced psychotic disorder, unspecified
## 3975 Opioid dependence with opioid-induced sexual dysfunction
## 3976 Opioid dependence with opioid-induced sleep disorder
## 3977 Opioid dependence with other opioid-induced disorder
## 3978 Opioid dependence with unspecified opioid-induced disorder
## 3979 Opioid use, unspecified, uncomplicated
## 3980 Opioid use, unspecified with intoxication, uncomplicated
## 3981 Opioid use, unspecified with intoxication delirium
## 3982 Opioid use, unspecified with intoxication with perceptual disturbance
## 3983 Opioid use, unspecified with intoxication, unspecified
## 3984 Opioid use, unspecified with withdrawal
## 3985 Opioid use, unspecified with opioid-induced mood disorder
## 3986 Opioid use, unspecified with opioid-induced psychotic disorder with delusions
## 3987 Opioid use, unspecified with opioid-induced psychotic disorder with hallucinations
## 3988 Opioid use, unspecified with opioid-induced psychotic disorder, unspecified
## 3989 Opioid use, unspecified with opioid-induced sexual dysfunction
## 3990 Opioid use, unspecified with opioid-induced sleep disorder
## 3991 Opioid use, unspecified with other opioid-induced disorder
## 3992 Opioid use, unspecified with unspecified opioid-induced disorder
## 3993 Cannabis abuse, uncomplicated
## 3994 Cannabis abuse, in remission
## 3995 Cannabis abuse with intoxication, uncomplicated
## 3996 Cannabis abuse with intoxication delirium
## 3997 Cannabis abuse with intoxication with perceptual disturbance
## 3998 Cannabis abuse with intoxication, unspecified
## 3999 Cannabis abuse with psychotic disorder with delusions
## 4000 Cannabis abuse with psychotic disorder with hallucinations
## 4001 Cannabis abuse with psychotic disorder, unspecified
## 4002 Cannabis abuse with cannabis-induced anxiety disorder
## 4003 Cannabis abuse with other cannabis-induced disorder
## 4004 Cannabis abuse with unspecified cannabis-induced disorder
## 4005 Cannabis dependence, uncomplicated
## 4006 Cannabis dependence, in remission
## 4007 Cannabis dependence with intoxication, uncomplicated
## 4008 Cannabis dependence with intoxication delirium
## 4009 Cannabis dependence with intoxication with perceptual disturbance
## 4010 Cannabis dependence with intoxication, unspecified
## 4011 Cannabis dependence with withdrawal
## 4012 Cannabis dependence with psychotic disorder with delusions
## 4013 Cannabis dependence with psychotic disorder with hallucinations
## 4014 Cannabis dependence with psychotic disorder, unspecified
## 4015 Cannabis dependence with cannabis-induced anxiety disorder
## 4016 Cannabis dependence with other cannabis-induced disorder
## 4017 Cannabis dependence with unspecified cannabis-induced disorder
## 4018 Cannabis use, unspecified, uncomplicated
## 4019 Cannabis use, unspecified with intoxication, uncomplicated
## 4020 Cannabis use, unspecified with intoxication delirium
## 4021 Cannabis use, unspecified with intoxication with perceptual disturbance
## 4022 Cannabis use, unspecified with intoxication, unspecified
## 4023 Cannabis use, unspecified with withdrawal
## 4024 Cannabis use, unspecified with psychotic disorder with delusions
## 4025 Cannabis use, unspecified with psychotic disorder with hallucinations
## 4026 Cannabis use, unspecified with psychotic disorder, unspecified
## 4027 Cannabis use, unspecified with anxiety disorder
## 4028 Cannabis use, unspecified with other cannabis-induced disorder
## 4029 Cannabis use, unspecified with unspecified cannabis-induced disorder
## 4030 Sedative, hypnotic or anxiolytic abuse, uncomplicated
## 4031 Sedative, hypnotic or anxiolytic abuse, in remission
## 4032 Sedative, hypnotic or anxiolytic abuse with intoxication, uncomplicated
## 4033 Sedative, hypnotic or anxiolytic abuse with intoxication delirium
## 4034 Sedative, hypnotic or anxiolytic abuse with intoxication, unspecified
## 4035 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced mood disorder
## 4036 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions
## 4037 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations
## 4038 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified
## 4039 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced anxiety disorder
## 4040 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sexual dysfunction
## 4041 Sedative, hypnotic or anxiolytic abuse with sedative, hypnotic or anxiolytic-induced sleep disorder
## 4042 Sedative, hypnotic or anxiolytic abuse with other sedative, hypnotic or anxiolytic-induced disorder
## 4043 Sedative, hypnotic or anxiolytic abuse with unspecified sedative, hypnotic or anxiolytic-induced disorder
## 4044 Sedative, hypnotic or anxiolytic dependence, uncomplicated
## 4045 Sedative, hypnotic or anxiolytic dependence, in remission
## 4046 Sedative, hypnotic or anxiolytic dependence with intoxication, uncomplicated
## 4047 Sedative, hypnotic or anxiolytic dependence with intoxication delirium
## 4048 Sedative, hypnotic or anxiolytic dependence with intoxication, unspecified
## 4049 Sedative, hypnotic or anxiolytic dependence with withdrawal, uncomplicated
## 4050 Sedative, hypnotic or anxiolytic dependence with withdrawal delirium
## 4051 Sedative, hypnotic or anxiolytic dependence with withdrawal with perceptual disturbance
## 4052 Sedative, hypnotic or anxiolytic dependence with withdrawal, unspecified
## 4053 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced mood disorder
## 4054 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions
## 4055 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations
## 4056 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified
## 4057 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder
## 4058 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced persisting dementia
## 4059 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced anxiety disorder
## 4060 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced sexual dysfunction
## 4061 Sedative, hypnotic or anxiolytic dependence with sedative, hypnotic or anxiolytic-induced sleep disorder
## 4062 Sedative, hypnotic or anxiolytic dependence with other sedative, hypnotic or anxiolytic-induced disorder
## 4063 Sedative, hypnotic or anxiolytic dependence with unspecified sedative, hypnotic or anxiolytic-induced disorder
## 4064 Sedative, hypnotic, or anxiolytic use, unspecified, uncomplicated
## 4065 Sedative, hypnotic or anxiolytic use, unspecified with intoxication, uncomplicated
## 4066 Sedative, hypnotic or anxiolytic use, unspecified with intoxication delirium
## 4067 Sedative, hypnotic or anxiolytic use, unspecified with intoxication, unspecified
## 4068 Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, uncomplicated
## 4069 Sedative, hypnotic or anxiolytic use, unspecified with withdrawal delirium
## 4070 Sedative, hypnotic or anxiolytic use, unspecified with withdrawal with perceptual disturbances
## 4071 Sedative, hypnotic or anxiolytic use, unspecified with withdrawal, unspecified
## 4072 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced mood disorder
## 4073 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder with delusions
## 4074 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder with hallucinations
## 4075 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced psychotic disorder, unspecified
## 4076 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting amnestic disorder
## 4077 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced persisting dementia
## 4078 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced anxiety disorder
## 4079 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sexual dysfunction
## 4080 Sedative, hypnotic or anxiolytic use, unspecified with sedative, hypnotic or anxiolytic-induced sleep disorder
## 4081 Sedative, hypnotic or anxiolytic use, unspecified with other sedative, hypnotic or anxiolytic-induced disorder
## 4082 Sedative, hypnotic or anxiolytic use, unspecified with unspecified sedative, hypnotic or anxiolytic-induced disorder
## 4083 Cocaine abuse, uncomplicated
## 4084 Cocaine abuse, in remission
## 4085 Cocaine abuse with intoxication, uncomplicated
## 4086 Cocaine abuse with intoxication with delirium
## 4087 Cocaine abuse with intoxication with perceptual disturbance
## 4088 Cocaine abuse with intoxication, unspecified
## 4089 Cocaine abuse with cocaine-induced mood disorder
## 4090 Cocaine abuse with cocaine-induced psychotic disorder with delusions
## 4091 Cocaine abuse with cocaine-induced psychotic disorder with hallucinations
## 4092 Cocaine abuse with cocaine-induced psychotic disorder, unspecified
## 4093 Cocaine abuse with cocaine-induced anxiety disorder
## 4094 Cocaine abuse with cocaine-induced sexual dysfunction
## 4095 Cocaine abuse with cocaine-induced sleep disorder
## 4096 Cocaine abuse with other cocaine-induced disorder
## 4097 Cocaine abuse with unspecified cocaine-induced disorder
## 4098 Cocaine dependence, uncomplicated
## 4099 Cocaine dependence, in remission
## 4100 Cocaine dependence with intoxication, uncomplicated
## 4101 Cocaine dependence with intoxication delirium
## 4102 Cocaine dependence with intoxication with perceptual disturbance
## 4103 Cocaine dependence with intoxication, unspecified
## 4104 Cocaine dependence with withdrawal
## 4105 Cocaine dependence with cocaine-induced mood disorder
## 4106 Cocaine dependence with cocaine-induced psychotic disorder with delusions
## 4107 Cocaine dependence with cocaine-induced psychotic disorder with hallucinations
## 4108 Cocaine dependence with cocaine-induced psychotic disorder, unspecified
## 4109 Cocaine dependence with cocaine-induced anxiety disorder
## 4110 Cocaine dependence with cocaine-induced sexual dysfunction
## 4111 Cocaine dependence with cocaine-induced sleep disorder
## 4112 Cocaine dependence with other cocaine-induced disorder
## 4113 Cocaine dependence with unspecified cocaine-induced disorder
## 4114 Cocaine use, unspecified, uncomplicated
## 4115 Cocaine use, unspecified with intoxication, uncomplicated
## 4116 Cocaine use, unspecified with intoxication delirium
## 4117 Cocaine use, unspecified with intoxication with perceptual disturbance
## 4118 Cocaine use, unspecified with intoxication, unspecified
## 4119 Cocaine use, unspecified with cocaine-induced mood disorder
## 4120 Cocaine use, unspecified with cocaine-induced psychotic disorder with delusions
## 4121 Cocaine use, unspecified with cocaine-induced psychotic disorder with hallucinations
## 4122 Cocaine use, unspecified with cocaine-induced psychotic disorder, unspecified
## 4123 Cocaine use, unspecified with cocaine-induced anxiety disorder
## 4124 Cocaine use, unspecified with cocaine-induced sexual dysfunction
## 4125 Cocaine use, unspecified with cocaine-induced sleep disorder
## 4126 Cocaine use, unspecified with other cocaine-induced disorder
## 4127 Cocaine use, unspecified with unspecified cocaine-induced disorder
## 4128 Other stimulant abuse, uncomplicated
## 4129 Other stimulant abuse, in remission
## 4130 Other stimulant abuse with intoxication, uncomplicated
## 4131 Other stimulant abuse with intoxication delirium
## 4132 Other stimulant abuse with intoxication with perceptual disturbance
## 4133 Other stimulant abuse with intoxication, unspecified
## 4134 Other stimulant abuse with stimulant-induced mood disorder
## 4135 Other stimulant abuse with stimulant-induced psychotic disorder with delusions
## 4136 Other stimulant abuse with stimulant-induced psychotic disorder with hallucinations
## 4137 Other stimulant abuse with stimulant-induced psychotic disorder, unspecified
## 4138 Other stimulant abuse with stimulant-induced anxiety disorder
## 4139 Other stimulant abuse with stimulant-induced sexual dysfunction
## 4140 Other stimulant abuse with stimulant-induced sleep disorder
## 4141 Other stimulant abuse with other stimulant-induced disorder
## 4142 Other stimulant abuse with unspecified stimulant-induced disorder
## 4143 Other stimulant dependence, uncomplicated
## 4144 Other stimulant dependence, in remission
## 4145 Other stimulant dependence with intoxication, uncomplicated
## 4146 Other stimulant dependence with intoxication delirium
## 4147 Other stimulant dependence with intoxication with perceptual disturbance
## 4148 Other stimulant dependence with intoxication, unspecified
## 4149 Other stimulant dependence with withdrawal
## 4150 Other stimulant dependence with stimulant-induced mood disorder
## 4151 Other stimulant dependence with stimulant-induced psychotic disorder with delusions
## 4152 Other stimulant dependence with stimulant-induced psychotic disorder with hallucinations
## 4153 Other stimulant dependence with stimulant-induced psychotic disorder, unspecified
## 4154 Other stimulant dependence with stimulant-induced anxiety disorder
## 4155 Other stimulant dependence with stimulant-induced sexual dysfunction
## 4156 Other stimulant dependence with stimulant-induced sleep disorder
## 4157 Other stimulant dependence with other stimulant-induced disorder
## 4158 Other stimulant dependence with unspecified stimulant-induced disorder
## 4159 Other stimulant use, unspecified, uncomplicated
## 4160 Other stimulant use, unspecified with intoxication, uncomplicated
## 4161 Other stimulant use, unspecified with intoxication delirium
## 4162 Other stimulant use, unspecified with intoxication with perceptual disturbance
## 4163 Other stimulant use, unspecified with intoxication, unspecified
## 4164 Other stimulant use, unspecified with withdrawal
## 4165 Other stimulant use, unspecified with stimulant-induced mood disorder
## 4166 Other stimulant use, unspecified with stimulant-induced psychotic disorder with delusions
## 4167 Other stimulant use, unspecified with stimulant-induced psychotic disorder with hallucinations
## 4168 Other stimulant use, unspecified with stimulant-induced psychotic disorder, unspecified
## 4169 Other stimulant use, unspecified with stimulant-induced anxiety disorder
## 4170 Other stimulant use, unspecified with stimulant-induced sexual dysfunction
## 4171 Other stimulant use, unspecified with stimulant-induced sleep disorder
## 4172 Other stimulant use, unspecified with other stimulant-induced disorder
## 4173 Other stimulant use, unspecified with unspecified stimulant-induced disorder
## 4174 Hallucinogen abuse, uncomplicated
## 4175 Hallucinogen abuse, in remission
## 4176 Hallucinogen abuse with intoxication, uncomplicated
## 4177 Hallucinogen abuse with intoxication with delirium
## 4178 Hallucinogen abuse with intoxication with perceptual disturbance
## 4179 Hallucinogen abuse with intoxication, unspecified
## 4180 Hallucinogen abuse with hallucinogen-induced mood disorder
## 4181 Hallucinogen abuse with hallucinogen-induced psychotic disorder with delusions
## 4182 Hallucinogen abuse with hallucinogen-induced psychotic disorder with hallucinations
## 4183 Hallucinogen abuse with hallucinogen-induced psychotic disorder, unspecified
## 4184 Hallucinogen abuse with hallucinogen-induced anxiety disorder
## 4185 Hallucinogen abuse with hallucinogen persisting perception disorder (flashbacks)
## 4186 Hallucinogen abuse with other hallucinogen-induced disorder
## 4187 Hallucinogen abuse with unspecified hallucinogen-induced disorder
## 4188 Hallucinogen dependence, uncomplicated
## 4189 Hallucinogen dependence, in remission
## 4190 Hallucinogen dependence with intoxication, uncomplicated
## 4191 Hallucinogen dependence with intoxication with delirium
## 4192 Hallucinogen dependence with intoxication, unspecified
## 4193 Hallucinogen dependence with hallucinogen-induced mood disorder
## 4194 Hallucinogen dependence with hallucinogen-induced psychotic disorder with delusions
## 4195 Hallucinogen dependence with hallucinogen-induced psychotic disorder with hallucinations
## 4196 Hallucinogen dependence with hallucinogen-induced psychotic disorder, unspecified
## 4197 Hallucinogen dependence with hallucinogen-induced anxiety disorder
## 4198 Hallucinogen dependence with hallucinogen persisting perception disorder (flashbacks)
## 4199 Hallucinogen dependence with other hallucinogen-induced disorder
## 4200 Hallucinogen dependence with unspecified hallucinogen-induced disorder
## 4201 Hallucinogen use, unspecified, uncomplicated
## 4202 Hallucinogen use, unspecified with intoxication, uncomplicated
## 4203 Hallucinogen use, unspecified with intoxication with delirium
## 4204 Hallucinogen use, unspecified with intoxication, unspecified
## 4205 Hallucinogen use, unspecified with hallucinogen-induced mood disorder
## 4206 Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with delusions
## 4207 Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder with hallucinations
## 4208 Hallucinogen use, unspecified with hallucinogen-induced psychotic disorder, unspecified
## 4209 Hallucinogen use, unspecified with hallucinogen-induced anxiety disorder
## 4210 Hallucinogen use, unspecified with hallucinogen persisting perception disorder (flashbacks)
## 4211 Hallucinogen use, unspecified with other hallucinogen-induced disorder
## 4212 Hallucinogen use, unspecified with unspecified hallucinogen-induced disorder
## 4213 Nicotine dependence, unspecified, uncomplicated
## 4214 Nicotine dependence, unspecified, in remission
## 4215 Nicotine dependence unspecified, with withdrawal
## 4216 Nicotine dependence, unspecified, with other nicotine-induced disorders
## 4217 Nicotine dependence, unspecified, with unspecified nicotine-induced disorders
## 4218 Nicotine dependence, cigarettes, uncomplicated
## 4219 Nicotine dependence, cigarettes, in remission
## 4220 Nicotine dependence, cigarettes, with withdrawal
## 4221 Nicotine dependence, cigarettes, with other nicotine-induced disorders
## 4222 Nicotine dependence, cigarettes, with unspecified nicotine-induced disorders
## 4223 Nicotine dependence, chewing tobacco, uncomplicated
## 4224 Nicotine dependence, chewing tobacco, in remission
## 4225 Nicotine dependence, chewing tobacco, with withdrawal
## 4226 Nicotine dependence, chewing tobacco, with other nicotine-induced disorders
## 4227 Nicotine dependence, chewing tobacco, with unspecified nicotine-induced disorders
## 4228 Nicotine dependence, other tobacco product, uncomplicated
## 4229 Nicotine dependence, other tobacco product, in remission
## 4230 Nicotine dependence, other tobacco product, with withdrawal
## 4231 Nicotine dependence, other tobacco product, with other nicotine-induced disorders
## 4232 Nicotine dependence, other tobacco product, with unspecified nicotine-induced disorders
## 4233 Inhalant abuse, uncomplicated
## 4234 Inhalant abuse, in remission
## 4235 Inhalant abuse with intoxication, uncomplicated
## 4236 Inhalant abuse with intoxication delirium
## 4237 Inhalant abuse with intoxication, unspecified
## 4238 Inhalant abuse with inhalant-induced mood disorder
## 4239 Inhalant abuse with inhalant-induced psychotic disorder with delusions
## 4240 Inhalant abuse with inhalant-induced psychotic disorder with hallucinations
## 4241 Inhalant abuse with inhalant-induced psychotic disorder, unspecified
## 4242 Inhalant abuse with inhalant-induced dementia
## 4243 Inhalant abuse with inhalant-induced anxiety disorder
## 4244 Inhalant abuse with other inhalant-induced disorder
## 4245 Inhalant abuse with unspecified inhalant-induced disorder
## 4246 Inhalant dependence, uncomplicated
## 4247 Inhalant dependence, in remission
## 4248 Inhalant dependence with intoxication, uncomplicated
## 4249 Inhalant dependence with intoxication delirium
## 4250 Inhalant dependence with intoxication, unspecified
## 4251 Inhalant dependence with inhalant-induced mood disorder
## 4252 Inhalant dependence with inhalant-induced psychotic disorder with delusions
## 4253 Inhalant dependence with inhalant-induced psychotic disorder with hallucinations
## 4254 Inhalant dependence with inhalant-induced psychotic disorder, unspecified
## 4255 Inhalant dependence with inhalant-induced dementia
## 4256 Inhalant dependence with inhalant-induced anxiety disorder
## 4257 Inhalant dependence with other inhalant-induced disorder
## 4258 Inhalant dependence with unspecified inhalant-induced disorder
## 4259 Inhalant use, unspecified, uncomplicated
## 4260 Inhalant use, unspecified with intoxication, uncomplicated
## 4261 Inhalant use, unspecified with intoxication with delirium
## 4262 Inhalant use, unspecified with intoxication, unspecified
## 4263 Inhalant use, unspecified with inhalant-induced mood disorder
## 4264 Inhalant use, unspecified with inhalant-induced psychotic disorder with delusions
## 4265 Inhalant use, unspecified with inhalant-induced psychotic disorder with hallucinations
## 4266 Inhalant use, unspecified with inhalant-induced psychotic disorder, unspecified
## 4267 Inhalant use, unspecified with inhalant-induced persisting dementia
## 4268 Inhalant use, unspecified with inhalant-induced anxiety disorder
## 4269 Inhalant use, unspecified with other inhalant-induced disorder
## 4270 Inhalant use, unspecified with unspecified inhalant-induced disorder
## 4271 Other psychoactive substance abuse, uncomplicated
## 4272 Other psychoactive substance abuse, in remission
## 4273 Other psychoactive substance abuse with intoxication, uncomplicated
## 4274 Other psychoactive substance abuse with intoxication delirium
## 4275 Other psychoactive substance abuse with intoxication with perceptual disturbances
## 4276 Other psychoactive substance abuse with intoxication, unspecified
## 4277 Other psychoactive substance abuse with psychoactive substance-induced mood disorder
## 4278 Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with delusions
## 4279 Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder with hallucinations
## 4280 Other psychoactive substance abuse with psychoactive substance-induced psychotic disorder, unspecified
## 4281 Other psychoactive substance abuse with psychoactive substance-induced persisting amnestic disorder
## 4282 Other psychoactive substance abuse with psychoactive substance-induced persisting dementia
## 4283 Other psychoactive substance abuse with psychoactive substance-induced anxiety disorder
## 4284 Other psychoactive substance abuse with psychoactive substance-induced sexual dysfunction
## 4285 Other psychoactive substance abuse with psychoactive substance-induced sleep disorder
## 4286 Other psychoactive substance abuse with other psychoactive substance-induced disorder
## 4287 Other psychoactive substance abuse with unspecified psychoactive substance-induced disorder
## 4288 Other psychoactive substance dependence, uncomplicated
## 4289 Other psychoactive substance dependence, in remission
## 4290 Other psychoactive substance dependence with intoxication, uncomplicated
## 4291 Other psychoactive substance dependence with intoxication delirium
## 4292 Other psychoactive substance dependence with intoxication with perceptual disturbance
## 4293 Other psychoactive substance dependence with intoxication, unspecified
## 4294 Other psychoactive substance dependence with withdrawal, uncomplicated
## 4295 Other psychoactive substance dependence with withdrawal delirium
## 4296 Other psychoactive substance dependence with withdrawal with perceptual disturbance
## 4297 Other psychoactive substance dependence with withdrawal, unspecified
## 4298 Other psychoactive substance dependence with psychoactive substance-induced mood disorder
## 4299 Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with delusions
## 4300 Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder with hallucinations
## 4301 Other psychoactive substance dependence with psychoactive substance-induced psychotic disorder, unspecified
## 4302 Other psychoactive substance dependence with psychoactive substance-induced persisting amnestic disorder
## 4303 Other psychoactive substance dependence with psychoactive substance-induced persisting dementia
## 4304 Other psychoactive substance dependence with psychoactive substance-induced anxiety disorder
## 4305 Other psychoactive substance dependence with psychoactive substance-induced sexual dysfunction
## 4306 Other psychoactive substance dependence with psychoactive substance-induced sleep disorder
## 4307 Other psychoactive substance dependence with other psychoactive substance-induced disorder
## 4308 Other psychoactive substance dependence with unspecified psychoactive substance-induced disorder
## 4309 Other psychoactive substance use, unspecified, uncomplicated
## 4310 Other psychoactive substance use, unspecified with intoxication, uncomplicated
## 4311 Other psychoactive substance use, unspecified with intoxication with delirium
## 4312 Other psychoactive substance use, unspecified with intoxication with perceptual disturbance
## 4313 Other psychoactive substance use, unspecified with intoxication, unspecified
## 4314 Other psychoactive substance use, unspecified with withdrawal, uncomplicated
## 4315 Other psychoactive substance use, unspecified with withdrawal delirium
## 4316 Other psychoactive substance use, unspecified with withdrawal with perceptual disturbance
## 4317 Other psychoactive substance use, unspecified with withdrawal, unspecified
## 4318 Other psychoactive substance use, unspecified with psychoactive substance-induced mood disorder
## 4319 Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder with delusions
## 4320 Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder with hallucinations
## 4321 Other psychoactive substance use, unspecified with psychoactive substance-induced psychotic disorder, unspecified
## 4322 Other psychoactive substance use, unspecified with psychoactive substance-induced persisting amnestic disorder
## 4323 Other psychoactive substance use, unspecified with psychoactive substance-induced persisting dementia
## 4324 Other psychoactive substance use, unspecified with psychoactive substance-induced anxiety disorder
## 4325 Other psychoactive substance use, unspecified with psychoactive substance-induced sexual dysfunction
## 4326 Other psychoactive substance use, unspecified with psychoactive substance-induced sleep disorder
## 4327 Other psychoactive substance use, unspecified with other psychoactive substance-induced disorder
## 4328 Other psychoactive substance use, unspecified with unspecified psychoactive substance-induced disorder
## 4329 Paranoid schizophrenia
## 4330 Disorganized schizophrenia
## 4331 Catatonic schizophrenia
## 4332 Undifferentiated schizophrenia
## 4333 Residual schizophrenia
## 4334 Schizophreniform disorder
## 4335 Other schizophrenia
## 4336 Schizophrenia, unspecified
## 4337 Schizotypal disorder
## 4338 Delusional disorders
## 4339 Brief psychotic disorder
## 4340 Shared psychotic disorder
## 4341 Schizoaffective disorder, bipolar type
## 4342 Schizoaffective disorder, depressive type
## 4343 Other schizoaffective disorders
## 4344 Schizoaffective disorder, unspecified
## 4345 Other psychotic disorder not due to a substance or known physiological condition
## 4346 Unspecified psychosis not due to a substance or known physiological condition
## 4347 Manic episode without psychotic symptoms, unspecified
## 4348 Manic episode without psychotic symptoms, mild
## 4349 Manic episode without psychotic symptoms, moderate
## 4350 Manic episode, severe, without psychotic symptoms
## 4351 Manic episode, severe with psychotic symptoms
## 4352 Manic episode in partial remission
## 4353 Manic episode in full remission
## 4354 Other manic episodes
## 4355 Manic episode, unspecified
## 4356 Bipolar disorder, current episode hypomanic
## 4357 Bipolar disorder, current episode manic without psychotic features, unspecified
## 4358 Bipolar disorder, current episode manic without psychotic features, mild
## 4359 Bipolar disorder, current episode manic without psychotic features, moderate
## 4360 Bipolar disorder, current episode manic without psychotic features, severe
## 4361 Bipolar disorder, current episode manic severe with psychotic features
## 4362 Bipolar disorder, current episode depressed, mild or moderate severity, unspecified
## 4363 Bipolar disorder, current episode depressed, mild
## 4364 Bipolar disorder, current episode depressed, moderate
## 4365 Bipolar disorder, current episode depressed, severe, without psychotic features
## 4366 Bipolar disorder, current episode depressed, severe, with psychotic features
## 4367 Bipolar disorder, current episode mixed, unspecified
## 4368 Bipolar disorder, current episode mixed, mild
## 4369 Bipolar disorder, current episode mixed, moderate
## 4370 Bipolar disorder, current episode mixed, severe, without psychotic features
## 4371 Bipolar disorder, current episode mixed, severe, with psychotic features
## 4372 Bipolar disorder, currently in remission, most recent episode unspecified
## 4373 Bipolar disorder, in partial remission, most recent episode hypomanic
## 4374 Bipolar disorder, in full remission, most recent episode hypomanic
## 4375 Bipolar disorder, in partial remission, most recent episode manic
## 4376 Bipolar disorder, in full remission, most recent episode manic
## 4377 Bipolar disorder, in partial remission, most recent episode depressed
## 4378 Bipolar disorder, in full remission, most recent episode depressed
## 4379 Bipolar disorder, in partial remission, most recent episode mixed
## 4380 Bipolar disorder, in full remission, most recent episode mixed
## 4381 Bipolar II disorder
## 4382 Other bipolar disorder
## 4383 Bipolar disorder, unspecified
## 4384 Major depressive disorder, single episode, mild
## 4385 Major depressive disorder, single episode, moderate
## 4386 Major depressive disorder, single episode, severe without psychotic features
## 4387 Major depressive disorder, single episode, severe with psychotic features
## 4388 Major depressive disorder, single episode, in partial remission
## 4389 Major depressive disorder, single episode, in full remission
## 4390 Premenstrual dysphoric disorder
## 4391 Other specified depressive episodes
## 4392 Major depressive disorder, single episode, unspecified
## 4393 Major depressive disorder, recurrent, mild
## 4394 Major depressive disorder, recurrent, moderate
## 4395 Major depressive disorder, recurrent severe without psychotic features
## 4396 Major depressive disorder, recurrent, severe with psychotic symptoms
## 4397 Major depressive disorder, recurrent, in remission, unspecified
## 4398 Major depressive disorder, recurrent, in partial remission
## 4399 Major depressive disorder, recurrent, in full remission
## 4400 Other recurrent depressive disorders
## 4401 Major depressive disorder, recurrent, unspecified
## 4402 Cyclothymic disorder
## 4403 Dysthymic disorder
## 4404 Disruptive mood dysregulation disorder
## 4405 Other specified persistent mood disorders
## 4406 Persistent mood [affective] disorder, unspecified
## 4407 Unspecified mood [affective] disorder
## 4408 Agoraphobia, unspecified
## 4409 Agoraphobia with panic disorder
## 4410 Agoraphobia without panic disorder
## 4411 Social phobia, unspecified
## 4412 Social phobia, generalized
## 4413 Arachnophobia
## 4414 Other animal type phobia
## 4415 Fear of thunderstorms
## 4416 Other natural environment type phobia
## 4417 Fear of blood
## 4418 Fear of injections and transfusions
## 4419 Fear of other medical care
## 4420 Fear of injury
## 4421 Claustrophobia
## 4422 Acrophobia
## 4423 Fear of bridges
## 4424 Fear of flying
## 4425 Other situational type phobia
## 4426 Androphobia
## 4427 Gynephobia
## 4428 Other specified phobia
## 4429 Other phobic anxiety disorders
## 4430 Phobic anxiety disorder, unspecified
## 4431 Panic disorder [episodic paroxysmal anxiety]
## 4432 Generalized anxiety disorder
## 4433 Other mixed anxiety disorders
## 4434 Other specified anxiety disorders
## 4435 Anxiety disorder, unspecified
## 4436 Mixed obsessional thoughts and acts
## 4437 Hoarding disorder
## 4438 Excoriation (skin-picking) disorder
## 4439 Other obsessive-compulsive disorder
## 4440 Obsessive-compulsive disorder, unspecified
## 4441 Acute stress reaction
## 4442 Post-traumatic stress disorder, unspecified
## 4443 Post-traumatic stress disorder, acute
## 4444 Post-traumatic stress disorder, chronic
## 4445 Adjustment disorder, unspecified
## 4446 Adjustment disorder with depressed mood
## 4447 Adjustment disorder with anxiety
## 4448 Adjustment disorder with mixed anxiety and depressed mood
## 4449 Adjustment disorder with disturbance of conduct
## 4450 Adjustment disorder with mixed disturbance of emotions and conduct
## 4451 Adjustment disorder with other symptoms
## 4452 Other reactions to severe stress
## 4453 Reaction to severe stress, unspecified
## 4454 Dissociative amnesia
## 4455 Dissociative fugue
## 4456 Dissociative stupor
## 4457 Conversion disorder with motor symptom or deficit
## 4458 Conversion disorder with seizures or convulsions
## 4459 Conversion disorder with sensory symptom or deficit
## 4460 Conversion disorder with mixed symptom presentation
## 4461 Dissociative identity disorder
## 4462 Other dissociative and conversion disorders
## 4463 Dissociative and conversion disorder, unspecified
## 4464 Somatization disorder
## 4465 Undifferentiated somatoform disorder
## 4466 Hypochondriacal disorder, unspecified
## 4467 Hypochondriasis
## 4468 Body dysmorphic disorder
## 4469 Other hypochondriacal disorders
## 4470 Pain disorder exclusively related to psychological factors
## 4471 Pain disorder with related psychological factors
## 4472 Other somatoform disorders
## 4473 Somatoform disorder, unspecified
## 4474 Depersonalization-derealization syndrome
## 4475 Pseudobulbar affect
## 4476 Other specified nonpsychotic mental disorders
## 4477 Nonpsychotic mental disorder, unspecified
## 4478 Anorexia nervosa, unspecified
## 4479 Anorexia nervosa, restricting type
## 4480 Anorexia nervosa, binge eating/purging type
## 4481 Bulimia nervosa
## 4482 Binge eating disorder
## 4483 Avoidant/restrictive food intake disorder
## 4484 Other specified eating disorder
## 4485 Eating disorder, unspecified
## 4486 Primary insomnia
## 4487 Adjustment insomnia
## 4488 Paradoxical insomnia
## 4489 Psychophysiologic insomnia
## 4490 Insomnia due to other mental disorder
## 4491 Other insomnia not due to a substance or known physiological condition
## 4492 Primary hypersomnia
## 4493 Insufficient sleep syndrome
## 4494 Hypersomnia due to other mental disorder
## 4495 Other hypersomnia not due to a substance or known physiological condition
## 4496 Sleepwalking [somnambulism]
## 4497 Sleep terrors [night terrors]
## 4498 Nightmare disorder
## 4499 Other sleep disorders not due to a substance or known physiological condition
## 4500 Sleep disorder not due to a substance or known physiological condition, unspecified
## 4501 Hypoactive sexual desire disorder
## 4502 Sexual aversion disorder
## 4503 Male erectile disorder
## 4504 Female sexual arousal disorder
## 4505 Female orgasmic disorder
## 4506 Male orgasmic disorder
## 4507 Premature ejaculation
## 4508 Vaginismus not due to a substance or known physiological condition
## 4509 Dyspareunia not due to a substance or known physiological condition
## 4510 Other sexual dysfunction not due to a substance or known physiological condition
## 4511 Unspecified sexual dysfunction not due to a substance or known physiological condition
## 4512 Postpartum depression
## 4513 Puerperal psychosis
## 4514 Psychological and behavioral factors associated with disorders or diseases classified elsewhere
## 4515 Abuse of antacids
## 4516 Abuse of herbal or folk remedies
## 4517 Abuse of laxatives
## 4518 Abuse of steroids or hormones
## 4519 Abuse of vitamins
## 4520 Abuse of other non-psychoactive substances
## 4521 Unspecified behavioral syndromes associated with physiological disturbances and physical factors
## 4522 Paranoid personality disorder
## 4523 Schizoid personality disorder
## 4524 Antisocial personality disorder
## 4525 Borderline personality disorder
## 4526 Histrionic personality disorder
## 4527 Obsessive-compulsive personality disorder
## 4528 Avoidant personality disorder
## 4529 Dependent personality disorder
## 4530 Narcissistic personality disorder
## 4531 Other specific personality disorders
## 4532 Personality disorder, unspecified
## 4533 Pathological gambling
## 4534 Pyromania
## 4535 Kleptomania
## 4536 Trichotillomania
## 4537 Intermittent explosive disorder
## 4538 Other impulse disorders
## 4539 Impulse disorder, unspecified
## 4540 Transsexualism
## 4541 Dual role transvestism
## 4542 Gender identity disorder of childhood
## 4543 Other gender identity disorders
## 4544 Gender identity disorder, unspecified
## 4545 Fetishism
## 4546 Transvestic fetishism
## 4547 Exhibitionism
## 4548 Voyeurism
## 4549 Pedophilia
## 4550 Sadomasochism, unspecified
## 4551 Sexual masochism
## 4552 Sexual sadism
## 4553 Frotteurism
## 4554 Other paraphilias
## 4555 Paraphilia, unspecified
## 4556 Other sexual disorders
## 4557 Factitious disorder imposed on self, unspecified
## 4558 Factitious disorder imposed on self, with predominantly psychological signs and symptoms
## 4559 Factitious disorder imposed on self, with predominantly physical signs and symptoms
## 4560 Factitious disorder imposed on self, with combined psychological and physical signs and symptoms
## 4561 Factitious disorder imposed on another
## 4562 Other specified disorders of adult personality and behavior
## 4563 Unspecified disorder of adult personality and behavior
## 4564 Mild intellectual disabilities
## 4565 Moderate intellectual disabilities
## 4566 Severe intellectual disabilities
## 4567 Profound intellectual disabilities
## 4568 Other intellectual disabilities
## 4569 Unspecified intellectual disabilities
## 4570 Phonological disorder
## 4571 Expressive language disorder
## 4572 Mixed receptive-expressive language disorder
## 4573 Speech and language development delay due to hearing loss
## 4574 Childhood onset fluency disorder
## 4575 Social pragmatic communication disorder
## 4576 Other developmental disorders of speech and language
## 4577 Developmental disorder of speech and language, unspecified
## 4578 Specific reading disorder
## 4579 Mathematics disorder
## 4580 Disorder of written expression
## 4581 Other developmental disorders of scholastic skills
## 4582 Developmental disorder of scholastic skills, unspecified
## 4583 Specific developmental disorder of motor function
## 4584 Autistic disorder
## 4585 Rett's syndrome
## 4586 Other childhood disintegrative disorder
## 4587 Asperger's syndrome
## 4588 Other pervasive developmental disorders
## 4589 Pervasive developmental disorder, unspecified
## 4590 Other disorders of psychological development
## 4591 Unspecified disorder of psychological development
## 4592 Attention-deficit hyperactivity disorder, predominantly inattentive type
## 4593 Attention-deficit hyperactivity disorder, predominantly hyperactive type
## 4594 Attention-deficit hyperactivity disorder, combined type
## 4595 Attention-deficit hyperactivity disorder, other type
## 4596 Attention-deficit hyperactivity disorder, unspecified type
## 4597 Conduct disorder confined to family context
## 4598 Conduct disorder, childhood-onset type
## 4599 Conduct disorder, adolescent-onset type
## 4600 Oppositional defiant disorder
## 4601 Other conduct disorders
## 4602 Conduct disorder, unspecified
## 4603 Separation anxiety disorder of childhood
## 4604 Other childhood emotional disorders
## 4605 Childhood emotional disorder, unspecified
## 4606 Selective mutism
## 4607 Reactive attachment disorder of childhood
## 4608 Disinhibited attachment disorder of childhood
## 4609 Other childhood disorders of social functioning
## 4610 Childhood disorder of social functioning, unspecified
## 4611 Transient tic disorder
## 4612 Chronic motor or vocal tic disorder
## 4613 Tourette's disorder
## 4614 Other tic disorders
## 4615 Tic disorder, unspecified
## 4616 Enuresis not due to a substance or known physiological condition
## 4617 Encopresis not due to a substance or known physiological condition
## 4618 Rumination disorder of infancy
## 4619 Other feeding disorders of infancy and early childhood
## 4620 Pica of infancy and childhood
## 4621 Stereotyped movement disorders
## 4622 Adult onset fluency disorder
## 4623 Other specified behavioral and emotional disorders with onset usually occurring in childhood and adolescence
## 4624 Unspecified behavioral and emotional disorders with onset usually occurring in childhood and adolescence
## 4625 Mental disorder, not otherwise specified
## 4626 Hemophilus meningitis
## 4627 Pneumococcal meningitis
## 4628 Streptococcal meningitis
## 4629 Staphylococcal meningitis
## 4630 Other bacterial meningitis
## 4631 Bacterial meningitis, unspecified
## 4632 Meningitis in bacterial diseases classified elsewhere
## 4633 Meningitis in other infectious and parasitic diseases classified elsewhere
## 4634 Nonpyogenic meningitis
## 4635 Chronic meningitis
## 4636 Benign recurrent meningitis [Mollaret]
## 4637 Meningitis due to other specified causes
## 4638 Meningitis, unspecified
## 4639 Acute disseminated encephalitis and encephalomyelitis, unspecified
## 4640 Postinfectious acute disseminated encephalitis and encephalomyelitis (postinfectious ADEM)
## 4641 Postimmunization acute disseminated encephalitis, myelitis and encephalomyelitis
## 4642 Tropical spastic paraplegia
## 4643 Bacterial meningoencephalitis and meningomyelitis, not elsewhere classified
## 4644 Acute necrotizing hemorrhagic encephalopathy, unspecified
## 4645 Postinfectious acute necrotizing hemorrhagic encephalopathy
## 4646 Postimmunization acute necrotizing hemorrhagic encephalopathy
## 4647 Other acute necrotizing hemorrhagic encephalopathy
## 4648 Other encephalitis and encephalomyelitis
## 4649 Other myelitis
## 4650 Encephalitis and encephalomyelitis, unspecified
## 4651 Myelitis, unspecified
## 4652 Encephalitis and encephalomyelitis in diseases classified elsewhere
## 4653 Myelitis in diseases classified elsewhere
## 4654 Intracranial abscess and granuloma
## 4655 Intraspinal abscess and granuloma
## 4656 Extradural and subdural abscess, unspecified
## 4657 Intracranial and intraspinal abscess and granuloma in diseases classified elsewhere
## 4658 Intracranial and intraspinal phlebitis and thrombophlebitis
## 4659 Sequelae of inflammatory diseases of central nervous system
## 4660 Huntington's disease
## 4661 Congenital nonprogressive ataxia
## 4662 Early-onset cerebellar ataxia
## 4663 Late-onset cerebellar ataxia
## 4664 Cerebellar ataxia with defective DNA repair
## 4665 Hereditary spastic paraplegia
## 4666 Other hereditary ataxias
## 4667 Hereditary ataxia, unspecified
## 4668 Infantile spinal muscular atrophy, type I [Werdnig-Hoffman]
## 4669 Other inherited spinal muscular atrophy
## 4670 Motor neuron disease, unspecified
## 4671 Amyotrophic lateral sclerosis
## 4672 Progressive bulbar palsy
## 4673 Primary lateral sclerosis
## 4674 Familial motor neuron disease
## 4675 Progressive spinal muscle atrophy
## 4676 Other motor neuron disease
## 4677 Other spinal muscular atrophies and related syndromes
## 4678 Spinal muscular atrophy, unspecified
## 4679 Paraneoplastic neuromyopathy and neuropathy
## 4680 Other systemic atrophy primarily affecting central nervous system in neoplastic disease
## 4681 Systemic atrophy primarily affecting the central nervous system in myxedema
## 4682 Systemic atrophy primarily affecting central nervous system in other diseases classified elsewhere
## 4683 Postpolio syndrome
## 4684 Parkinson's disease
## 4685 Malignant neuroleptic syndrome
## 4686 Neuroleptic induced parkinsonism
## 4687 Other drug induced secondary parkinsonism
## 4688 Secondary parkinsonism due to other external agents
## 4689 Postencephalitic parkinsonism
## 4690 Vascular parkinsonism
## 4691 Other secondary parkinsonism
## 4692 Secondary parkinsonism, unspecified
## 4693 Hallervorden-Spatz disease
## 4694 Progressive supranuclear ophthalmoplegia [Steele-Richardson-Olszewski]
## 4695 Striatonigral degeneration
## 4696 Other specified degenerative diseases of basal ganglia
## 4697 Degenerative disease of basal ganglia, unspecified
## 4698 Drug induced subacute dyskinesia
## 4699 Drug induced acute dystonia
## 4700 Other drug induced dystonia
## 4701 Genetic torsion dystonia
## 4702 Idiopathic nonfamilial dystonia
## 4703 Spasmodic torticollis
## 4704 Idiopathic orofacial dystonia
## 4705 Blepharospasm
## 4706 Other dystonia
## 4707 Dystonia, unspecified
## 4708 Essential tremor
## 4709 Drug-induced tremor
## 4710 Other specified forms of tremor
## 4711 Myoclonus
## 4712 Drug-induced chorea
## 4713 Other chorea
## 4714 Drug induced tics
## 4715 Other tics of organic origin
## 4716 Drug induced movement disorder, unspecified
## 4717 Drug induced akathisia
## 4718 Other drug induced movement disorders
## 4719 Restless legs syndrome
## 4720 Stiff-man syndrome
## 4721 Benign shuddering attacks
## 4722 Other specified extrapyramidal and movement disorders
## 4723 Extrapyramidal and movement disorder, unspecified
## 4724 Extrapyramidal and movement disorders in diseases classified elsewhere
## 4725 Alzheimer's disease with early onset
## 4726 Alzheimer's disease with late onset
## 4727 Other Alzheimer's disease
## 4728 Alzheimer's disease, unspecified
## 4729 Pick's disease
## 4730 Other frontotemporal dementia
## 4731 Senile degeneration of brain, not elsewhere classified
## 4732 Degeneration of nervous system due to alcohol
## 4733 Alpers disease
## 4734 Leigh's disease
## 4735 Dementia with Lewy bodies
## 4736 Mild cognitive impairment, so stated
## 4737 Corticobasal degeneration
## 4738 Other specified degenerative diseases of nervous system
## 4739 Degenerative disease of nervous system, unspecified
## 4740 Subacute combined degeneration of spinal cord in diseases classified elsewhere
## 4741 Cerebellar ataxia in diseases classified elsewhere
## 4742 Other specified degenerative disorders of nervous system in diseases classified elsewhere
## 4743 Multiple sclerosis
## 4744 Neuromyelitis optica [Devic]
## 4745 Acute and subacute hemorrhagic leukoencephalitis [Hurst]
## 4746 Other specified acute disseminated demyelination
## 4747 Acute disseminated demyelination, unspecified
## 4748 Diffuse sclerosis of central nervous system
## 4749 Central demyelination of corpus callosum
## 4750 Central pontine myelinolysis
## 4751 Acute transverse myelitis in demyelinating disease of central nervous system
## 4752 Subacute necrotizing myelitis of central nervous system
## 4753 Concentric sclerosis [Balo] of central nervous system
## 4754 Other specified demyelinating diseases of central nervous system
## 4755 Demyelinating disease of central nervous system, unspecified
## 4756 Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable, with status epilepticus
## 4757 Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, not intractable, without status epilepticus
## 4758 Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable, with status epilepticus
## 4759 Localization-related (focal) (partial) idiopathic epilepsy and epileptic syndromes with seizures of localized onset, intractable, without status epilepticus
## 4760 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable, with status epilepticus
## 4761 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, not intractable, without status epilepticus
## 4762 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable, with status epilepticus
## 4763 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with simple partial seizures, intractable, without status epilepticus
## 4764 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable, with status epilepticus
## 4765 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, not intractable, without status epilepticus
## 4766 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable, with status epilepticus
## 4767 Localization-related (focal) (partial) symptomatic epilepsy and epileptic syndromes with complex partial seizures, intractable, without status epilepticus
## 4768 Generalized idiopathic epilepsy and epileptic syndromes, not intractable, with status epilepticus
## 4769 Generalized idiopathic epilepsy and epileptic syndromes, not intractable, without status epilepticus
## 4770 Generalized idiopathic epilepsy and epileptic syndromes, intractable, with status epilepticus
## 4771 Generalized idiopathic epilepsy and epileptic syndromes, intractable, without status epilepticus
## 4772 Absence epileptic syndrome, not intractable, with status epilepticus
## 4773 Absence epileptic syndrome, not intractable, without status epilepticus
## 4774 Absence epileptic syndrome, intractable, with status epilepticus
## 4775 Absence epileptic syndrome, intractable, without status epilepticus
## 4776 Juvenile myoclonic epilepsy, not intractable, with status epilepticus
## 4777 Juvenile myoclonic epilepsy, not intractable, without status epilepticus
## 4778 Juvenile myoclonic epilepsy, intractable, with status epilepticus
## 4779 Juvenile myoclonic epilepsy, intractable, without status epilepticus
## 4780 Other generalized epilepsy and epileptic syndromes, not intractable, with status epilepticus
## 4781 Other generalized epilepsy and epileptic syndromes, not intractable, without status epilepticus
## 4782 Other generalized epilepsy and epileptic syndromes, intractable, with status epilepticus
## 4783 Other generalized epilepsy and epileptic syndromes, intractable, without status epilepticus
## 4784 Epileptic seizures related to external causes, not intractable, with status epilepticus
## 4785 Epileptic seizures related to external causes, not intractable, without status epilepticus
## 4786 Other epilepsy, not intractable, with status epilepticus
## 4787 Other epilepsy, not intractable, without status epilepticus
## 4788 Other epilepsy, intractable, with status epilepticus
## 4789 Other epilepsy, intractable, without status epilepticus
## 4790 Lennox-Gastaut syndrome, not intractable, with status epilepticus
## 4791 Lennox-Gastaut syndrome, not intractable, without status epilepticus
## 4792 Lennox-Gastaut syndrome, intractable, with status epilepticus
## 4793 Lennox-Gastaut syndrome, intractable, without status epilepticus
## 4794 Epileptic spasms, not intractable, with status epilepticus
## 4795 Epileptic spasms, not intractable, without status epilepticus
## 4796 Epileptic spasms, intractable, with status epilepticus
## 4797 Epileptic spasms, intractable, without status epilepticus
## 4798 Other seizures
## 4799 Epilepsy, unspecified, not intractable, with status epilepticus
## 4800 Epilepsy, unspecified, not intractable, without status epilepticus
## 4801 Epilepsy, unspecified, intractable, with status epilepticus
## 4802 Epilepsy, unspecified, intractable, without status epilepticus
## 4803 Migraine without aura, not intractable, with status migrainosus
## 4804 Migraine without aura, not intractable, without status migrainosus
## 4805 Migraine without aura, intractable, with status migrainosus
## 4806 Migraine without aura, intractable, without status migrainosus
## 4807 Migraine with aura, not intractable, with status migrainosus
## 4808 Migraine with aura, not intractable, without status migrainosus
## 4809 Migraine with aura, intractable, with status migrainosus
## 4810 Migraine with aura, intractable, without status migrainosus
## 4811 Hemiplegic migraine, not intractable, with status migrainosus
## 4812 Hemiplegic migraine, not intractable, without status migrainosus
## 4813 Hemiplegic migraine, intractable, with status migrainosus
## 4814 Hemiplegic migraine, intractable, without status migrainosus
## 4815 Persistent migraine aura without cerebral infarction, not intractable, with status migrainosus
## 4816 Persistent migraine aura without cerebral infarction, not intractable, without status migrainosus
## 4817 Persistent migraine aura without cerebral infarction, intractable, with status migrainosus
## 4818 Persistent migraine aura without cerebral infarction, intractable, without status migrainosus
## 4819 Persistent migraine aura with cerebral infarction, not intractable, with status migrainosus
## 4820 Persistent migraine aura with cerebral infarction, not intractable, without status migrainosus
## 4821 Persistent migraine aura with cerebral infarction, intractable, with status migrainosus
## 4822 Persistent migraine aura with cerebral infarction, intractable, without status migrainosus
## 4823 Chronic migraine without aura, not intractable, with status migrainosus
## 4824 Chronic migraine without aura, not intractable, without status migrainosus
## 4825 Chronic migraine without aura, intractable, with status migrainosus
## 4826 Chronic migraine without aura, intractable, without status migrainosus
## 4827 Cyclical vomiting, in migraine, not intractable
## 4828 Cyclical vomiting, in migraine, intractable
## 4829 Ophthalmoplegic migraine, not intractable
## 4830 Ophthalmoplegic migraine, intractable
## 4831 Periodic headache syndromes in child or adult, not intractable
## 4832 Periodic headache syndromes in child or adult, intractable
## 4833 Abdominal migraine, not intractable
## 4834 Abdominal migraine, intractable
## 4835 Other migraine, not intractable, with status migrainosus
## 4836 Other migraine, not intractable, without status migrainosus
## 4837 Other migraine, intractable, with status migrainosus
## 4838 Other migraine, intractable, without status migrainosus
## 4839 Menstrual migraine, not intractable, with status migrainosus
## 4840 Menstrual migraine, not intractable, without status migrainosus
## 4841 Menstrual migraine, intractable, with status migrainosus
## 4842 Menstrual migraine, intractable, without status migrainosus
## 4843 Migraine, unspecified, not intractable, with status migrainosus
## 4844 Migraine, unspecified, not intractable, without status migrainosus
## 4845 Migraine, unspecified, intractable, with status migrainosus
## 4846 Migraine, unspecified, intractable, without status migrainosus
## 4847 Cluster headache syndrome, unspecified, intractable
## 4848 Cluster headache syndrome, unspecified, not intractable
## 4849 Episodic cluster headache, intractable
## 4850 Episodic cluster headache, not intractable
## 4851 Chronic cluster headache, intractable
## 4852 Chronic cluster headache, not intractable
## 4853 Episodic paroxysmal hemicrania, intractable
## 4854 Episodic paroxysmal hemicrania, not intractable
## 4855 Chronic paroxysmal hemicrania, intractable
## 4856 Chronic paroxysmal hemicrania, not intractable
## 4857 Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT), intractable
## 4858 Short lasting unilateral neuralgiform headache with conjunctival injection and tearing (SUNCT), not intractable
## 4859 Other trigeminal autonomic cephalgias (TAC), intractable
## 4860 Other trigeminal autonomic cephalgias (TAC), not intractable
## 4861 Vascular headache, not elsewhere classified
## 4862 Tension-type headache, unspecified, intractable
## 4863 Tension-type headache, unspecified, not intractable
## 4864 Episodic tension-type headache, intractable
## 4865 Episodic tension-type headache, not intractable
## 4866 Chronic tension-type headache, intractable
## 4867 Chronic tension-type headache, not intractable
## 4868 Post-traumatic headache, unspecified, intractable
## 4869 Post-traumatic headache, unspecified, not intractable
## 4870 Acute post-traumatic headache, intractable
## 4871 Acute post-traumatic headache, not intractable
## 4872 Chronic post-traumatic headache, intractable
## 4873 Chronic post-traumatic headache, not intractable
## 4874 Drug-induced headache, not elsewhere classified, not intractable
## 4875 Drug-induced headache, not elsewhere classified, intractable
## 4876 Hemicrania continua
## 4877 New daily persistent headache (NDPH)
## 4878 Primary thunderclap headache
## 4879 Other complicated headache syndrome
## 4880 Hypnic headache
## 4881 Headache associated with sexual activity
## 4882 Primary cough headache
## 4883 Primary exertional headache
## 4884 Primary stabbing headache
## 4885 Other headache syndrome
## 4886 Vertebro-basilar artery syndrome
## 4887 Carotid artery syndrome (hemispheric)
## 4888 Multiple and bilateral precerebral artery syndromes
## 4889 Amaurosis fugax
## 4890 Transient global amnesia
## 4891 Other transient cerebral ischemic attacks and related syndromes
## 4892 Transient cerebral ischemic attack, unspecified
## 4893 Middle cerebral artery syndrome
## 4894 Anterior cerebral artery syndrome
## 4895 Posterior cerebral artery syndrome
## 4896 Brain stem stroke syndrome
## 4897 Cerebellar stroke syndrome
## 4898 Pure motor lacunar syndrome
## 4899 Pure sensory lacunar syndrome
## 4900 Other lacunar syndromes
## 4901 Other vascular syndromes of brain in cerebrovascular diseases
## 4902 Insomnia, unspecified
## 4903 Insomnia due to medical condition
## 4904 Other insomnia
## 4905 Hypersomnia, unspecified
## 4906 Idiopathic hypersomnia with long sleep time
## 4907 Idiopathic hypersomnia without long sleep time
## 4908 Recurrent hypersomnia
## 4909 Hypersomnia due to medical condition
## 4910 Other hypersomnia
## 4911 Circadian rhythm sleep disorder, unspecified type
## 4912 Circadian rhythm sleep disorder, delayed sleep phase type
## 4913 Circadian rhythm sleep disorder, advanced sleep phase type
## 4914 Circadian rhythm sleep disorder, irregular sleep wake type
## 4915 Circadian rhythm sleep disorder, free running type
## 4916 Circadian rhythm sleep disorder, jet lag type
## 4917 Circadian rhythm sleep disorder, shift work type
## 4918 Circadian rhythm sleep disorder in conditions classified elsewhere
## 4919 Other circadian rhythm sleep disorder
## 4920 Sleep apnea, unspecified
## 4921 Primary central sleep apnea
## 4922 High altitude periodic breathing
## 4923 Obstructive sleep apnea (adult) (pediatric)
## 4924 Idiopathic sleep related nonobstructive alveolar hypoventilation
## 4925 Congenital central alveolar hypoventilation syndrome
## 4926 Sleep related hypoventilation in conditions classified elsewhere
## 4927 Central sleep apnea in conditions classified elsewhere
## 4928 Other sleep apnea
## 4929 Narcolepsy with cataplexy
## 4930 Narcolepsy without cataplexy
## 4931 Narcolepsy in conditions classified elsewhere with cataplexy
## 4932 Narcolepsy in conditions classified elsewhere without cataplexy
## 4933 Parasomnia, unspecified
## 4934 Confusional arousals
## 4935 REM sleep behavior disorder
## 4936 Recurrent isolated sleep paralysis
## 4937 Parasomnia in conditions classified elsewhere
## 4938 Other parasomnia
## 4939 Periodic limb movement disorder
## 4940 Sleep related leg cramps
## 4941 Sleep related bruxism
## 4942 Other sleep related movement disorders
## 4943 Other sleep disorders
## 4944 Sleep disorder, unspecified
## 4945 Trigeminal neuralgia
## 4946 Atypical facial pain
## 4947 Other disorders of trigeminal nerve
## 4948 Disorder of trigeminal nerve, unspecified
## 4949 Bell's palsy
## 4950 Geniculate ganglionitis
## 4951 Melkersson's syndrome
## 4952 Clonic hemifacial spasm, right
## 4953 Clonic hemifacial spasm, left
## 4954 Clonic hemifacial spasm, bilateral
## 4955 Clonic hemifacial spasm, unspecified
## 4956 Facial myokymia
## 4957 Other disorders of facial nerve
## 4958 Disorder of facial nerve, unspecified
## 4959 Disorders of olfactory nerve
## 4960 Disorders of glossopharyngeal nerve
## 4961 Disorders of vagus nerve
## 4962 Disorders of hypoglossal nerve
## 4963 Disorders of multiple cranial nerves
## 4964 Disorders of other specified cranial nerves
## 4965 Cranial nerve disorder, unspecified
## 4966 Cranial nerve disorders in diseases classified elsewhere
## 4967 Brachial plexus disorders
## 4968 Lumbosacral plexus disorders
## 4969 Cervical root disorders, not elsewhere classified
## 4970 Thoracic root disorders, not elsewhere classified
## 4971 Lumbosacral root disorders, not elsewhere classified
## 4972 Neuralgic amyotrophy
## 4973 Phantom limb syndrome with pain
## 4974 Phantom limb syndrome without pain
## 4975 Other nerve root and plexus disorders
## 4976 Nerve root and plexus disorder, unspecified
## 4977 Nerve root and plexus compressions in diseases classified elsewhere
## 4978 Carpal tunnel syndrome, unspecified upper limb
## 4979 Carpal tunnel syndrome, right upper limb
## 4980 Carpal tunnel syndrome, left upper limb
## 4981 Carpal tunnel syndrome, bilateral upper limbs
## 4982 Other lesions of median nerve, unspecified upper limb
## 4983 Other lesions of median nerve, right upper limb
## 4984 Other lesions of median nerve, left upper limb
## 4985 Other lesions of median nerve, bilateral upper limbs
## 4986 Lesion of ulnar nerve, unspecified upper limb
## 4987 Lesion of ulnar nerve, right upper limb
## 4988 Lesion of ulnar nerve, left upper limb
## 4989 Lesion of ulnar nerve, bilateral upper limbs
## 4990 Lesion of radial nerve, unspecified upper limb
## 4991 Lesion of radial nerve, right upper limb
## 4992 Lesion of radial nerve, left upper limb
## 4993 Lesion of radial nerve, bilateral upper limbs
## 4994 Causalgia of unspecified upper limb
## 4995 Causalgia of right upper limb
## 4996 Causalgia of left upper limb
## 4997 Causalgia of bilateral upper limbs
## 4998 Other specified mononeuropathies of unspecified upper limb
## 4999 Other specified mononeuropathies of right upper limb
## 5000 Other specified mononeuropathies of left upper limb
## 5001 Other specified mononeuropathies of bilateral upper limbs
## 5002 Unspecified mononeuropathy of unspecified upper limb
## 5003 Unspecified mononeuropathy of right upper limb
## 5004 Unspecified mononeuropathy of left upper limb
## 5005 Unspecified mononeuropathy of bilateral upper limbs
## 5006 Lesion of sciatic nerve, unspecified lower limb
## 5007 Lesion of sciatic nerve, right lower limb
## 5008 Lesion of sciatic nerve, left lower limb
## 5009 Lesion of sciatic nerve, bilateral lower limbs
## 5010 Meralgia paresthetica, unspecified lower limb
## 5011 Meralgia paresthetica, right lower limb
## 5012 Meralgia paresthetica, left lower limb
## 5013 Meralgia paresthetica, bilateral lower limbs
## 5014 Lesion of femoral nerve, unspecified lower limb
## 5015 Lesion of femoral nerve, right lower limb
## 5016 Lesion of femoral nerve, left lower limb
## 5017 Lesion of femoral nerve, bilateral lower limbs
## 5018 Lesion of lateral popliteal nerve, unspecified lower limb
## 5019 Lesion of lateral popliteal nerve, right lower limb
## 5020 Lesion of lateral popliteal nerve, left lower limb
## 5021 Lesion of lateral popliteal nerve, bilateral lower limbs
## 5022 Lesion of medial popliteal nerve, unspecified lower limb
## 5023 Lesion of medial popliteal nerve, right lower limb
## 5024 Lesion of medial popliteal nerve, left lower limb
## 5025 Lesion of medial popliteal nerve, bilateral lower limbs
## 5026 Tarsal tunnel syndrome, unspecified lower limb
## 5027 Tarsal tunnel syndrome, right lower limb
## 5028 Tarsal tunnel syndrome, left lower limb
## 5029 Tarsal tunnel syndrome, bilateral lower limbs
## 5030 Lesion of plantar nerve, unspecified lower limb
## 5031 Lesion of plantar nerve, right lower limb
## 5032 Lesion of plantar nerve, left lower limb
## 5033 Lesion of plantar nerve, bilateral lower limbs
## 5034 Causalgia of unspecified lower limb
## 5035 Causalgia of right lower limb
## 5036 Causalgia of left lower limb
## 5037 Causalgia of bilateral lower limbs
## 5038 Other specified mononeuropathies of unspecified lower limb
## 5039 Other specified mononeuropathies of right lower limb
## 5040 Other specified mononeuropathies of left lower limb
## 5041 Other specified mononeuropathies of bilateral lower limbs
## 5042 Unspecified mononeuropathy of unspecified lower limb
## 5043 Unspecified mononeuropathy of right lower limb
## 5044 Unspecified mononeuropathy of left lower limb
## 5045 Unspecified mononeuropathy of bilateral lower limbs
## 5046 Intercostal neuropathy
## 5047 Mononeuritis multiplex
## 5048 Other specified mononeuropathies
## 5049 Mononeuropathy, unspecified
## 5050 Mononeuropathy in diseases classified elsewhere
## 5051 Hereditary motor and sensory neuropathy
## 5052 Refsum's disease
## 5053 Neuropathy in association with hereditary ataxia
## 5054 Idiopathic progressive neuropathy
## 5055 Other hereditary and idiopathic neuropathies
## 5056 Hereditary and idiopathic neuropathy, unspecified
## 5057 Guillain-Barre syndrome
## 5058 Serum neuropathy
## 5059 Chronic inflammatory demyelinating polyneuritis
## 5060 Multifocal motor neuropathy
## 5061 Other inflammatory polyneuropathies
## 5062 Inflammatory polyneuropathy, unspecified
## 5063 Drug-induced polyneuropathy
## 5064 Alcoholic polyneuropathy
## 5065 Polyneuropathy due to other toxic agents
## 5066 Critical illness polyneuropathy
## 5067 Radiation-induced polyneuropathy
## 5068 Other specified polyneuropathies
## 5069 Polyneuropathy, unspecified
## 5070 Polyneuropathy in diseases classified elsewhere
## 5071 Other disorders of peripheral nervous system
## 5072 Sequelae of Guillain-Barre syndrome
## 5073 Sequelae of other inflammatory polyneuropathy
## 5074 Sequelae of toxic polyneuropathy
## 5075 Myasthenia gravis without (acute) exacerbation
## 5076 Myasthenia gravis with (acute) exacerbation
## 5077 Toxic myoneural disorders
## 5078 Congenital and developmental myasthenia
## 5079 Lambert-Eaton syndrome, unspecified
## 5080 Lambert-Eaton syndrome in disease classified elsewhere
## 5081 Other specified myoneural disorders
## 5082 Myoneural disorder, unspecified
## 5083 Muscular dystrophy, unspecified
## 5084 Duchenne or Becker muscular dystrophy
## 5085 Facioscapulohumeral muscular dystrophy
## 5086 Other specified muscular dystrophies
## 5087 Myotonic muscular dystrophy
## 5088 Myotonia congenita
## 5089 Myotonic chondrodystrophy
## 5090 Drug induced myotonia
## 5091 Other specified myotonic disorders
## 5092 Congenital myopathies
## 5093 Mitochondrial myopathy, not elsewhere classified
## 5094 Other primary disorders of muscles
## 5095 Primary disorder of muscle, unspecified
## 5096 Drug-induced myopathy
## 5097 Alcoholic myopathy
## 5098 Myopathy due to other toxic agents
## 5099 Periodic paralysis
## 5100 Inclusion body myositis [IBM]
## 5101 Other inflammatory and immune myopathies, not elsewhere classified
## 5102 Critical illness myopathy
## 5103 Other specified myopathies
## 5104 Myopathy, unspecified
## 5105 Lambert-Eaton syndrome in neoplastic disease
## 5106 Myasthenic syndromes in other diseases classified elsewhere
## 5107 Myopathy in diseases classified elsewhere
## 5108 Spastic quadriplegic cerebral palsy
## 5109 Spastic diplegic cerebral palsy
## 5110 Spastic hemiplegic cerebral palsy
## 5111 Athetoid cerebral palsy
## 5112 Ataxic cerebral palsy
## 5113 Other cerebral palsy
## 5114 Cerebral palsy, unspecified
## 5115 Flaccid hemiplegia affecting unspecified side
## 5116 Flaccid hemiplegia affecting right dominant side
## 5117 Flaccid hemiplegia affecting left dominant side
## 5118 Flaccid hemiplegia affecting right nondominant side
## 5119 Flaccid hemiplegia affecting left nondominant side
## 5120 Spastic hemiplegia affecting unspecified side
## 5121 Spastic hemiplegia affecting right dominant side
## 5122 Spastic hemiplegia affecting left dominant side
## 5123 Spastic hemiplegia affecting right nondominant side
## 5124 Spastic hemiplegia affecting left nondominant side
## 5125 Hemiplegia, unspecified affecting unspecified side
## 5126 Hemiplegia, unspecified affecting right dominant side
## 5127 Hemiplegia, unspecified affecting left dominant side
## 5128 Hemiplegia, unspecified affecting right nondominant side
## 5129 Hemiplegia, unspecified affecting left nondominant side
## 5130 Paraplegia, unspecified
## 5131 Paraplegia, complete
## 5132 Paraplegia, incomplete
## 5133 Quadriplegia, unspecified
## 5134 Quadriplegia, C1-C4 complete
## 5135 Quadriplegia, C1-C4 incomplete
## 5136 Quadriplegia, C5-C7 complete
## 5137 Quadriplegia, C5-C7 incomplete
## 5138 Diplegia of upper limbs
## 5139 Monoplegia of lower limb affecting unspecified side
## 5140 Monoplegia of lower limb affecting right dominant side
## 5141 Monoplegia of lower limb affecting left dominant side
## 5142 Monoplegia of lower limb affecting right nondominant side
## 5143 Monoplegia of lower limb affecting left nondominant side
## 5144 Monoplegia of upper limb affecting unspecified side
## 5145 Monoplegia of upper limb affecting right dominant side
## 5146 Monoplegia of upper limb affecting left dominant side
## 5147 Monoplegia of upper limb affecting right nondominant side
## 5148 Monoplegia of upper limb affecting left nondominant side
## 5149 Monoplegia, unspecified affecting unspecified side
## 5150 Monoplegia, unspecified affecting right dominant side
## 5151 Monoplegia, unspecified affecting left dominant side
## 5152 Monoplegia, unspecified affecting right nondominant side
## 5153 Monoplegia, unspecified affecting left nondominant side
## 5154 Cauda equina syndrome
## 5155 Locked-in state
## 5156 Brown-Sequard syndrome
## 5157 Anterior cord syndrome
## 5158 Posterior cord syndrome
## 5159 Todd's paralysis (postepileptic)
## 5160 Other specified paralytic syndromes
## 5161 Paralytic syndrome, unspecified
## 5162 Central pain syndrome
## 5163 Acute pain due to trauma
## 5164 Acute post-thoracotomy pain
## 5165 Other acute postprocedural pain
## 5166 Chronic pain due to trauma
## 5167 Chronic post-thoracotomy pain
## 5168 Other chronic postprocedural pain
## 5169 Other chronic pain
## 5170 Neoplasm related pain (acute) (chronic)
## 5171 Chronic pain syndrome
## 5172 Carotid sinus syncope
## 5173 Other idiopathic peripheral autonomic neuropathy
## 5174 Familial dysautonomia [Riley-Day]
## 5175 Horner's syndrome
## 5176 Multi-system degeneration of the autonomic nervous system
## 5177 Autonomic dysreflexia
## 5178 Complex regional pain syndrome I, unspecified
## 5179 Complex regional pain syndrome I of right upper limb
## 5180 Complex regional pain syndrome I of left upper limb
## 5181 Complex regional pain syndrome I of upper limb, bilateral
## 5182 Complex regional pain syndrome I of unspecified upper limb
## 5183 Complex regional pain syndrome I of right lower limb
## 5184 Complex regional pain syndrome I of left lower limb
## 5185 Complex regional pain syndrome I of lower limb, bilateral
## 5186 Complex regional pain syndrome I of unspecified lower limb
## 5187 Complex regional pain syndrome I of other specified site
## 5188 Other disorders of autonomic nervous system
## 5189 Disorder of the autonomic nervous system, unspecified
## 5190 Communicating hydrocephalus
## 5191 Obstructive hydrocephalus
## 5192 (Idiopathic) normal pressure hydrocephalus
## 5193 Post-traumatic hydrocephalus, unspecified
## 5194 Hydrocephalus in diseases classified elsewhere
## 5195 Other hydrocephalus
## 5196 Hydrocephalus, unspecified
## 5197 Toxic encephalopathy
## 5198 Cerebral cysts
## 5199 Anoxic brain damage, not elsewhere classified
## 5200 Benign intracranial hypertension
## 5201 Postviral fatigue syndrome
## 5202 Encephalopathy, unspecified
## 5203 Metabolic encephalopathy
## 5204 Other encephalopathy
## 5205 Compression of brain
## 5206 Cerebral edema
## 5207 Reye's syndrome
## 5208 Temporal sclerosis
## 5209 Brain death
## 5210 Other specified disorders of brain
## 5211 Disorder of brain, unspecified
## 5212 Other disorders of brain in diseases classified elsewhere
## 5213 Syringomyelia and syringobulbia
## 5214 Acute infarction of spinal cord (embolic) (nonembolic)
## 5215 Other vascular myelopathies
## 5216 Unspecified cord compression
## 5217 Other cord compression
## 5218 Conus medullaris syndrome
## 5219 Other specified diseases of spinal cord
## 5220 Disease of spinal cord, unspecified
## 5221 Cerebrospinal fluid leak
## 5222 Dural tear
## 5223 Meningeal adhesions (cerebral) (spinal)
## 5224 Other disorders of meninges, not elsewhere classified
## 5225 Other specified disorders of central nervous system
## 5226 Disorder of central nervous system, unspecified
## 5227 Cerebrospinal fluid leak from spinal puncture
## 5228 Other reaction to spinal and lumbar puncture
## 5229 Intracranial hypotension following ventricular shunting
## 5230 Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating a nervous system procedure
## 5231 Intraoperative hemorrhage and hematoma of a nervous system organ or structure complicating other procedure
## 5232 Accidental puncture or laceration of dura during a procedure
## 5233 Accidental puncture and laceration of other nervous system organ or structure during a nervous system procedure
## 5234 Accidental puncture and laceration of other nervous system organ or structure during other procedure
## 5235 Postprocedural hemorrhage of a nervous system organ or structure following a nervous system procedure
## 5236 Postprocedural hemorrhage of a nervous system organ or structure following other procedure
## 5237 Postprocedural hematoma of a nervous system organ or structure following a nervous system procedure
## 5238 Postprocedural hematoma of a nervous system organ or structure following other procedure
## 5239 Postprocedural seroma of a nervous system organ or structure following a nervous system procedure
## 5240 Postprocedural seroma of a nervous system organ or structure following other procedure
## 5241 Other intraoperative complications of nervous system
## 5242 Other postprocedural complications and disorders of nervous system
## 5243 Neurogenic arthritis, not elsewhere classified
## 5244 Other disorders of nervous system
## 5245 Autonomic neuropathy in diseases classified elsewhere
## 5246 Myelopathy in diseases classified elsewhere
## 5247 Other specified disorders of nervous system in diseases classified elsewhere
## 5248 Hordeolum externum right upper eyelid
## 5249 Hordeolum externum right lower eyelid
## 5250 Hordeolum externum right eye, unspecified eyelid
## 5251 Hordeolum externum left upper eyelid
## 5252 Hordeolum externum left lower eyelid
## 5253 Hordeolum externum left eye, unspecified eyelid
## 5254 Hordeolum externum unspecified eye, unspecified eyelid
## 5255 Hordeolum internum right upper eyelid
## 5256 Hordeolum internum right lower eyelid
## 5257 Hordeolum internum right eye, unspecified eyelid
## 5258 Hordeolum internum left upper eyelid
## 5259 Hordeolum internum left lower eyelid
## 5260 Hordeolum internum left eye, unspecified eyelid
## 5261 Hordeolum internum unspecified eye, unspecified eyelid
## 5262 Abscess of right upper eyelid
## 5263 Abscess of right lower eyelid
## 5264 Abscess of eyelid right eye, unspecified eyelid
## 5265 Abscess of left upper eyelid
## 5266 Abscess of left lower eyelid
## 5267 Abscess of eyelid left eye, unspecified eyelid
## 5268 Abscess of eyelid unspecified eye, unspecified eyelid
## 5269 Chalazion right upper eyelid
## 5270 Chalazion right lower eyelid
## 5271 Chalazion right eye, unspecified eyelid
## 5272 Chalazion left upper eyelid
## 5273 Chalazion left lower eyelid
## 5274 Chalazion left eye, unspecified eyelid
## 5275 Chalazion unspecified eye, unspecified eyelid
## 5276 Unspecified blepharitis right upper eyelid
## 5277 Unspecified blepharitis right lower eyelid
## 5278 Unspecified blepharitis right eye, unspecified eyelid
## 5279 Unspecified blepharitis left upper eyelid
## 5280 Unspecified blepharitis left lower eyelid
## 5281 Unspecified blepharitis left eye, unspecified eyelid
## 5282 Unspecified blepharitis unspecified eye, unspecified eyelid
## 5283 Unspecified blepharitis right eye, upper and lower eyelids
## 5284 Unspecified blepharitis left eye, upper and lower eyelids
## 5285 Ulcerative blepharitis right upper eyelid
## 5286 Ulcerative blepharitis right lower eyelid
## 5287 Ulcerative blepharitis right eye, unspecified eyelid
## 5288 Ulcerative blepharitis left upper eyelid
## 5289 Ulcerative blepharitis left lower eyelid
## 5290 Ulcerative blepharitis left eye, unspecified eyelid
## 5291 Ulcerative blepharitis unspecified eye, unspecified eyelid
## 5292 Ulcerative blepharitis right eye, upper and lower eyelids
## 5293 Ulcerative blepharitis left eye, upper and lower eyelids
## 5294 Squamous blepharitis right upper eyelid
## 5295 Squamous blepharitis right lower eyelid
## 5296 Squamous blepharitis right eye, unspecified eyelid
## 5297 Squamous blepharitis left upper eyelid
## 5298 Squamous blepharitis left lower eyelid
## 5299 Squamous blepharitis left eye, unspecified eyelid
## 5300 Squamous blepharitis unspecified eye, unspecified eyelid
## 5301 Squamous blepharitis right eye, upper and lower eyelids
## 5302 Squamous blepharitis left eye, upper and lower eyelids
## 5303 Allergic dermatitis of right upper eyelid
## 5304 Allergic dermatitis of right lower eyelid
## 5305 Allergic dermatitis of right eye, unspecified eyelid
## 5306 Allergic dermatitis of left upper eyelid
## 5307 Allergic dermatitis of left lower eyelid
## 5308 Allergic dermatitis of left eye, unspecified eyelid
## 5309 Allergic dermatitis of unspecified eye, unspecified eyelid
## 5310 Discoid lupus erythematosus of right upper eyelid
## 5311 Discoid lupus erythematosus of right lower eyelid
## 5312 Discoid lupus erythematosus of right eye, unspecified eyelid
## 5313 Discoid lupus erythematosus of left upper eyelid
## 5314 Discoid lupus erythematosus of left lower eyelid
## 5315 Discoid lupus erythematosus of left eye, unspecified eyelid
## 5316 Discoid lupus erythematosus of unspecified eye, unspecified eyelid
## 5317 Eczematous dermatitis of right upper eyelid
## 5318 Eczematous dermatitis of right lower eyelid
## 5319 Eczematous dermatitis of right eye, unspecified eyelid
## 5320 Eczematous dermatitis of left upper eyelid
## 5321 Eczematous dermatitis of left lower eyelid
## 5322 Eczematous dermatitis of left eye, unspecified eyelid
## 5323 Eczematous dermatitis of unspecified eye, unspecified eyelid
## 5324 Xeroderma of right upper eyelid
## 5325 Xeroderma of right lower eyelid
## 5326 Xeroderma of right eye, unspecified eyelid
## 5327 Xeroderma of left upper eyelid
## 5328 Xeroderma of left lower eyelid
## 5329 Xeroderma of left eye, unspecified eyelid
## 5330 Xeroderma of unspecified eye, unspecified eyelid
## 5331 Other specified inflammations of eyelid
## 5332 Unspecified inflammation of eyelid
## 5333 Unspecified entropion of right upper eyelid
## 5334 Unspecified entropion of right lower eyelid
## 5335 Unspecified entropion of right eye, unspecified eyelid
## 5336 Unspecified entropion of left upper eyelid
## 5337 Unspecified entropion of left lower eyelid
## 5338 Unspecified entropion of left eye, unspecified eyelid
## 5339 Unspecified entropion of unspecified eye, unspecified eyelid
## 5340 Cicatricial entropion of right upper eyelid
## 5341 Cicatricial entropion of right lower eyelid
## 5342 Cicatricial entropion of right eye, unspecified eyelid
## 5343 Cicatricial entropion of left upper eyelid
## 5344 Cicatricial entropion of left lower eyelid
## 5345 Cicatricial entropion of left eye, unspecified eyelid
## 5346 Cicatricial entropion of unspecified eye, unspecified eyelid
## 5347 Mechanical entropion of right upper eyelid
## 5348 Mechanical entropion of right lower eyelid
## 5349 Mechanical entropion of right eye, unspecified eyelid
## 5350 Mechanical entropion of left upper eyelid
## 5351 Mechanical entropion of left lower eyelid
## 5352 Mechanical entropion of left eye, unspecified eyelid
## 5353 Mechanical entropion of unspecified eye, unspecified eyelid
## 5354 Senile entropion of right upper eyelid
## 5355 Senile entropion of right lower eyelid
## 5356 Senile entropion of right eye, unspecified eyelid
## 5357 Senile entropion of left upper eyelid
## 5358 Senile entropion of left lower eyelid
## 5359 Senile entropion of left eye, unspecified eyelid
## 5360 Senile entropion of unspecified eye, unspecified eyelid
## 5361 Spastic entropion of right upper eyelid
## 5362 Spastic entropion of right lower eyelid
## 5363 Spastic entropion of right eye, unspecified eyelid
## 5364 Spastic entropion of left upper eyelid
## 5365 Spastic entropion of left lower eyelid
## 5366 Spastic entropion of left eye, unspecified eyelid
## 5367 Spastic entropion of unspecified eye, unspecified eyelid
## 5368 Trichiasis without entropion right upper eyelid
## 5369 Trichiasis without entropion right lower eyelid
## 5370 Trichiasis without entropion right eye, unspecified eyelid
## 5371 Trichiasis without entropion left upper eyelid
## 5372 Trichiasis without entropion left lower eyelid
## 5373 Trichiasis without entropion left eye, unspecified eyelid
## 5374 Trichiasis without entropion unspecified eye, unspecified eyelid
## 5375 Unspecified ectropion of right upper eyelid
## 5376 Unspecified ectropion of right lower eyelid
## 5377 Unspecified ectropion of right eye, unspecified eyelid
## 5378 Unspecified ectropion of left upper eyelid
## 5379 Unspecified ectropion of left lower eyelid
## 5380 Unspecified ectropion of left eye, unspecified eyelid
## 5381 Unspecified ectropion of unspecified eye, unspecified eyelid
## 5382 Cicatricial ectropion of right upper eyelid
## 5383 Cicatricial ectropion of right lower eyelid
## 5384 Cicatricial ectropion of right eye, unspecified eyelid
## 5385 Cicatricial ectropion of left upper eyelid
## 5386 Cicatricial ectropion of left lower eyelid
## 5387 Cicatricial ectropion of left eye, unspecified eyelid
## 5388 Cicatricial ectropion of unspecified eye, unspecified eyelid
## 5389 Mechanical ectropion of right upper eyelid
## 5390 Mechanical ectropion of right lower eyelid
## 5391 Mechanical ectropion of right eye, unspecified eyelid
## 5392 Mechanical ectropion of left upper eyelid
## 5393 Mechanical ectropion of left lower eyelid
## 5394 Mechanical ectropion of left eye, unspecified eyelid
## 5395 Mechanical ectropion of unspecified eye, unspecified eyelid
## 5396 Senile ectropion of right upper eyelid
## 5397 Senile ectropion of right lower eyelid
## 5398 Senile ectropion of right eye, unspecified eyelid
## 5399 Senile ectropion of left upper eyelid
## 5400 Senile ectropion of left lower eyelid
## 5401 Senile ectropion of left eye, unspecified eyelid
## 5402 Senile ectropion of unspecified eye, unspecified eyelid
## 5403 Spastic ectropion of right upper eyelid
## 5404 Spastic ectropion of right lower eyelid
## 5405 Spastic ectropion of right eye, unspecified eyelid
## 5406 Spastic ectropion of left upper eyelid
## 5407 Spastic ectropion of left lower eyelid
## 5408 Spastic ectropion of left eye, unspecified eyelid
## 5409 Spastic ectropion of unspecified eye, unspecified eyelid
## 5410 Paralytic ectropion of right upper eyelid
## 5411 Paralytic ectropion of right lower eyelid
## 5412 Paralytic ectropion of right eye, unspecified eyelid
## 5413 Paralytic ectropion of left upper eyelid
## 5414 Paralytic ectropion of left lower eyelid
## 5415 Paralytic ectropion of left eye, unspecified eyelid
## 5416 Paralytic ectropion of unspecified eye, unspecified eyelid
## 5417 Unspecified lagophthalmos right upper eyelid
## 5418 Unspecified lagophthalmos right lower eyelid
## 5419 Unspecified lagophthalmos right eye, unspecified eyelid
## 5420 Unspecified lagophthalmos left upper eyelid
## 5421 Unspecified lagophthalmos left lower eyelid
## 5422 Unspecified lagophthalmos left eye, unspecified eyelid
## 5423 Unspecified lagophthalmos unspecified eye, unspecified eyelid
## 5424 Unspecified lagophthalmos right eye, upper and lower eyelids
## 5425 Unspecified lagophthalmos left eye, upper and lower eyelids
## 5426 Unspecified lagophthalmos, bilateral, upper and lower eyelids
## 5427 Cicatricial lagophthalmos right upper eyelid
## 5428 Cicatricial lagophthalmos right lower eyelid
## 5429 Cicatricial lagophthalmos right eye, unspecified eyelid
## 5430 Cicatricial lagophthalmos left upper eyelid
## 5431 Cicatricial lagophthalmos left lower eyelid
## 5432 Cicatricial lagophthalmos left eye, unspecified eyelid
## 5433 Cicatricial lagophthalmos unspecified eye, unspecified eyelid
## 5434 Cicatricial lagophthalmos right eye, upper and lower eyelids
## 5435 Cicatricial lagophthalmos left eye, upper and lower eyelids
## 5436 Cicatricial lagophthalmos, bilateral, upper and lower eyelids
## 5437 Mechanical lagophthalmos right upper eyelid
## 5438 Mechanical lagophthalmos right lower eyelid
## 5439 Mechanical lagophthalmos right eye, unspecified eyelid
## 5440 Mechanical lagophthalmos left upper eyelid
## 5441 Mechanical lagophthalmos left lower eyelid
## 5442 Mechanical lagophthalmos left eye, unspecified eyelid
## 5443 Mechanical lagophthalmos unspecified eye, unspecified eyelid
## 5444 Mechanical lagophthalmos right eye, upper and lower eyelids
## 5445 Mechanical lagophthalmos left eye, upper and lower eyelids
## 5446 Mechanical lagophthalmos, bilateral, upper and lower eyelids
## 5447 Paralytic lagophthalmos right upper eyelid
## 5448 Paralytic lagophthalmos right lower eyelid
## 5449 Paralytic lagophthalmos right eye, unspecified eyelid
## 5450 Paralytic lagophthalmos left upper eyelid
## 5451 Paralytic lagophthalmos left lower eyelid
## 5452 Paralytic lagophthalmos left eye, unspecified eyelid
## 5453 Paralytic lagophthalmos unspecified eye, unspecified eyelid
## 5454 Paralytic lagophthalmos right eye, upper and lower eyelids
## 5455 Paralytic lagophthalmos left eye, upper and lower eyelids
## 5456 Paralytic lagophthalmos, bilateral, upper and lower eyelids
## 5457 Blepharochalasis unspecified eye, unspecified eyelid
## 5458 Blepharochalasis right upper eyelid
## 5459 Blepharochalasis right lower eyelid
## 5460 Blepharochalasis right eye, unspecified eyelid
## 5461 Blepharochalasis left upper eyelid
## 5462 Blepharochalasis left lower eyelid
## 5463 Blepharochalasis left eye, unspecified eyelid
## 5464 Unspecified ptosis of right eyelid
## 5465 Unspecified ptosis of left eyelid
## 5466 Unspecified ptosis of bilateral eyelids
## 5467 Unspecified ptosis of unspecified eyelid
## 5468 Mechanical ptosis of right eyelid
## 5469 Mechanical ptosis of left eyelid
## 5470 Mechanical ptosis of bilateral eyelids
## 5471 Mechanical ptosis of unspecified eyelid
## 5472 Myogenic ptosis of right eyelid
## 5473 Myogenic ptosis of left eyelid
## 5474 Myogenic ptosis of bilateral eyelids
## 5475 Myogenic ptosis of unspecified eyelid
## 5476 Paralytic ptosis of right eyelid
## 5477 Paralytic ptosis of left eyelid
## 5478 Paralytic ptosis of bilateral eyelids
## 5479 Paralytic ptosis unspecified eyelid
## 5480 Abnormal innervation syndrome right upper eyelid
## 5481 Abnormal innervation syndrome right lower eyelid
## 5482 Abnormal innervation syndrome right eye, unspecified eyelid
## 5483 Abnormal innervation syndrome left upper eyelid
## 5484 Abnormal innervation syndrome left lower eyelid
## 5485 Abnormal innervation syndrome left eye, unspecified eyelid
## 5486 Abnormal innervation syndrome unspecified eye, unspecified eyelid
## 5487 Blepharophimosis right upper eyelid
## 5488 Blepharophimosis right lower eyelid
## 5489 Blepharophimosis right eye, unspecified eyelid
## 5490 Blepharophimosis left upper eyelid
## 5491 Blepharophimosis left lower eyelid
## 5492 Blepharophimosis left eye, unspecified eyelid
## 5493 Blepharophimosis unspecified eye, unspecified lid
## 5494 Eyelid retraction right upper eyelid
## 5495 Eyelid retraction right lower eyelid
## 5496 Eyelid retraction right eye, unspecified eyelid
## 5497 Eyelid retraction left upper eyelid
## 5498 Eyelid retraction left lower eyelid
## 5499 Eyelid retraction left eye, unspecified eyelid
## 5500 Eyelid retraction unspecified eye, unspecified lid
## 5501 Other disorders affecting eyelid function
## 5502 Xanthelasma of unspecified eye, unspecified eyelid
## 5503 Xanthelasma of right upper eyelid
## 5504 Xanthelasma of right lower eyelid
## 5505 Xanthelasma of right eye, unspecified eyelid
## 5506 Xanthelasma of left upper eyelid
## 5507 Xanthelasma of left lower eyelid
## 5508 Xanthelasma of left eye, unspecified eyelid
## 5509 Unspecified degenerative disorders of eyelid and periocular area
## 5510 Chloasma of right upper eyelid and periocular area
## 5511 Chloasma of right lower eyelid and periocular area
## 5512 Chloasma of right eye, unspecified eyelid and periocular area
## 5513 Chloasma of left upper eyelid and periocular area
## 5514 Chloasma of left lower eyelid and periocular area
## 5515 Chloasma of left eye, unspecified eyelid and periocular area
## 5516 Chloasma of unspecified eye, unspecified eyelid and periocular area
## 5517 Madarosis of right upper eyelid and periocular area
## 5518 Madarosis of right lower eyelid and periocular area
## 5519 Madarosis of right eye, unspecified eyelid and periocular area
## 5520 Madarosis of left upper eyelid and periocular area
## 5521 Madarosis of left lower eyelid and periocular area
## 5522 Madarosis of left eye, unspecified eyelid and periocular area
## 5523 Madarosis of unspecified eye, unspecified eyelid and periocular area
## 5524 Vitiligo of right upper eyelid and periocular area
## 5525 Vitiligo of right lower eyelid and periocular area
## 5526 Vitiligo of right eye, unspecified eyelid and periocular area
## 5527 Vitiligo of left upper eyelid and periocular area
## 5528 Vitiligo of left lower eyelid and periocular area
## 5529 Vitiligo of left eye, unspecified eyelid and periocular area
## 5530 Vitiligo of unspecified eye, unspecified eyelid and periocular area
## 5531 Other degenerative disorders of eyelid and periocular area
## 5532 Retained foreign body in right upper eyelid
## 5533 Retained foreign body in right lower eyelid
## 5534 Retained foreign body in right eye, unspecified eyelid
## 5535 Retained foreign body in left upper eyelid
## 5536 Retained foreign body in left lower eyelid
## 5537 Retained foreign body in left eye, unspecified eyelid
## 5538 Retained foreign body in unspecified eye, unspecified eyelid
## 5539 Cysts of right upper eyelid
## 5540 Cysts of right lower eyelid
## 5541 Cysts of right eye, unspecified eyelid
## 5542 Cysts of left upper eyelid
## 5543 Cysts of left lower eyelid
## 5544 Cysts of left eye, unspecified eyelid
## 5545 Cysts of unspecified eye, unspecified eyelid
## 5546 Dermatochalasis of right upper eyelid
## 5547 Dermatochalasis of right lower eyelid
## 5548 Dermatochalasis of right eye, unspecified eyelid
## 5549 Dermatochalasis of left upper eyelid
## 5550 Dermatochalasis of left lower eyelid
## 5551 Dermatochalasis of left eye, unspecified eyelid
## 5552 Dermatochalasis of unspecified eye, unspecified eyelid
## 5553 Edema of right upper eyelid
## 5554 Edema of right lower eyelid
## 5555 Edema of right eye, unspecified eyelid
## 5556 Edema of left upper eyelid
## 5557 Edema of left lower eyelid
## 5558 Edema of left eye, unspecified eyelid
## 5559 Edema of unspecified eye, unspecified eyelid
## 5560 Elephantiasis of right upper eyelid
## 5561 Elephantiasis of right lower eyelid
## 5562 Elephantiasis of right eye, unspecified eyelid
## 5563 Elephantiasis of left upper eyelid
## 5564 Elephantiasis of left lower eyelid
## 5565 Elephantiasis of left eye, unspecified eyelid
## 5566 Elephantiasis of unspecified eye, unspecified eyelid
## 5567 Hypertrichosis of right upper eyelid
## 5568 Hypertrichosis of right lower eyelid
## 5569 Hypertrichosis of right eye, unspecified eyelid
## 5570 Hypertrichosis of left upper eyelid
## 5571 Hypertrichosis of left lower eyelid
## 5572 Hypertrichosis of left eye, unspecified eyelid
## 5573 Hypertrichosis of unspecified eye, unspecified eyelid
## 5574 Vascular anomalies of right upper eyelid
## 5575 Vascular anomalies of right lower eyelid
## 5576 Vascular anomalies of right eye, unspecified eyelid
## 5577 Vascular anomalies of left upper eyelid
## 5578 Vascular anomalies of left lower eyelid
## 5579 Vascular anomalies of left eye, unspecified eyelid
## 5580 Vascular anomalies of unspecified eye, unspecified eyelid
## 5581 Meibomian gland dysfunction right upper eyelid
## 5582 Meibomian gland dysfunction right lower eyelid
## 5583 Meibomian gland dysfunction of right eye, unspecified eyelid
## 5584 Meibomian gland dysfunction left upper eyelid
## 5585 Meibomian gland dysfunction left lower eyelid
## 5586 Meibomian gland dysfunction of left eye, unspecified eyelid
## 5587 Meibomian gland dysfunction of unspecified eye, unspecified eyelid
## 5588 Meibomian gland dysfunction right eye, upper and lower eyelids
## 5589 Meibomian gland dysfunction left eye, upper and lower eyelids
## 5590 Other specified disorders of eyelid
## 5591 Unspecified disorder of eyelid
## 5592 Unspecified dacryoadenitis, right lacrimal gland
## 5593 Unspecified dacryoadenitis, left lacrimal gland
## 5594 Unspecified dacryoadenitis, bilateral lacrimal glands
## 5595 Unspecified dacryoadenitis, unspecified lacrimal gland
## 5596 Acute dacryoadenitis, right lacrimal gland
## 5597 Acute dacryoadenitis, left lacrimal gland
## 5598 Acute dacryoadenitis, bilateral lacrimal glands
## 5599 Acute dacryoadenitis, unspecified lacrimal gland
## 5600 Chronic dacryoadenitis, right lacrimal gland
## 5601 Chronic dacryoadenitis, left lacrimal gland
## 5602 Chronic dacryoadenitis, bilateral lacrimal gland
## 5603 Chronic dacryoadenitis, unspecified lacrimal gland
## 5604 Chronic enlargement of right lacrimal gland
## 5605 Chronic enlargement of left lacrimal gland
## 5606 Chronic enlargement of bilateral lacrimal glands
## 5607 Chronic enlargement of unspecified lacrimal gland
## 5608 Dacryops of right lacrimal gland
## 5609 Dacryops of left lacrimal gland
## 5610 Dacryops of bilateral lacrimal glands
## 5611 Dacryops of unspecified lacrimal gland
## 5612 Dry eye syndrome of right lacrimal gland
## 5613 Dry eye syndrome of left lacrimal gland
## 5614 Dry eye syndrome of bilateral lacrimal glands
## 5615 Dry eye syndrome of unspecified lacrimal gland
## 5616 Lacrimal cyst, right lacrimal gland
## 5617 Lacrimal cyst, left lacrimal gland
## 5618 Lacrimal cyst, bilateral lacrimal glands
## 5619 Lacrimal cyst, unspecified lacrimal gland
## 5620 Primary lacrimal gland atrophy, right lacrimal gland
## 5621 Primary lacrimal gland atrophy, left lacrimal gland
## 5622 Primary lacrimal gland atrophy, bilateral lacrimal glands
## 5623 Primary lacrimal gland atrophy, unspecified lacrimal gland
## 5624 Secondary lacrimal gland atrophy, right lacrimal gland
## 5625 Secondary lacrimal gland atrophy, left lacrimal gland
## 5626 Secondary lacrimal gland atrophy, bilateral lacrimal glands
## 5627 Secondary lacrimal gland atrophy, unspecified lacrimal gland
## 5628 Lacrimal gland dislocation, right lacrimal gland
## 5629 Lacrimal gland dislocation, left lacrimal gland
## 5630 Lacrimal gland dislocation, bilateral lacrimal glands
## 5631 Lacrimal gland dislocation, unspecified lacrimal gland
## 5632 Other specified disorders of lacrimal gland
## 5633 Unspecified epiphora, right side
## 5634 Unspecified epiphora, left side
## 5635 Unspecified epiphora, bilateral
## 5636 Unspecified epiphora, unspecified side
## 5637 Epiphora due to excess lacrimation, right lacrimal gland
## 5638 Epiphora due to excess lacrimation, left lacrimal gland
## 5639 Epiphora due to excess lacrimation, bilateral lacrimal glands
## 5640 Epiphora due to excess lacrimation, unspecified lacrimal gland
## 5641 Epiphora due to insufficient drainage, right side
## 5642 Epiphora due to insufficient drainage, left side
## 5643 Epiphora due to insufficient drainage, bilateral
## 5644 Epiphora due to insufficient drainage, unspecified side
## 5645 Unspecified dacryocystitis of right lacrimal passage
## 5646 Unspecified dacryocystitis of left lacrimal passage
## 5647 Unspecified dacryocystitis of bilateral lacrimal passages
## 5648 Unspecified dacryocystitis of unspecified lacrimal passage
## 5649 Phlegmonous dacryocystitis of right lacrimal passage
## 5650 Phlegmonous dacryocystitis of left lacrimal passage
## 5651 Phlegmonous dacryocystitis of bilateral lacrimal passages
## 5652 Phlegmonous dacryocystitis of unspecified lacrimal passage
## 5653 Acute dacryocystitis of right lacrimal passage
## 5654 Acute dacryocystitis of left lacrimal passage
## 5655 Acute dacryocystitis of bilateral lacrimal passages
## 5656 Acute dacryocystitis of unspecified lacrimal passage
## 5657 Acute lacrimal canaliculitis of right lacrimal passage
## 5658 Acute lacrimal canaliculitis of left lacrimal passage
## 5659 Acute lacrimal canaliculitis of bilateral lacrimal passages
## 5660 Acute lacrimal canaliculitis of unspecified lacrimal passage
## 5661 Chronic dacryocystitis of right lacrimal passage
## 5662 Chronic dacryocystitis of left lacrimal passage
## 5663 Chronic dacryocystitis of bilateral lacrimal passages
## 5664 Chronic dacryocystitis of unspecified lacrimal passage
## 5665 Chronic lacrimal canaliculitis of right lacrimal passage
## 5666 Chronic lacrimal canaliculitis of left lacrimal passage
## 5667 Chronic lacrimal canaliculitis of bilateral lacrimal passages
## 5668 Chronic lacrimal canaliculitis of unspecified lacrimal passage
## 5669 Chronic lacrimal mucocele of right lacrimal passage
## 5670 Chronic lacrimal mucocele of left lacrimal passage
## 5671 Chronic lacrimal mucocele of bilateral lacrimal passages
## 5672 Chronic lacrimal mucocele of unspecified lacrimal passage
## 5673 Dacryolith of right lacrimal passage
## 5674 Dacryolith of left lacrimal passage
## 5675 Dacryolith of bilateral lacrimal passages
## 5676 Dacryolith of unspecified lacrimal passage
## 5677 Eversion of right lacrimal punctum
## 5678 Eversion of left lacrimal punctum
## 5679 Eversion of bilateral lacrimal punctum
## 5680 Eversion of unspecified lacrimal punctum
## 5681 Neonatal obstruction of right nasolacrimal duct
## 5682 Neonatal obstruction of left nasolacrimal duct
## 5683 Neonatal obstruction of bilateral nasolacrimal duct
## 5684 Neonatal obstruction of unspecified nasolacrimal duct
## 5685 Stenosis of right lacrimal canaliculi
## 5686 Stenosis of left lacrimal canaliculi
## 5687 Stenosis of bilateral lacrimal canaliculi
## 5688 Stenosis of unspecified lacrimal canaliculi
## 5689 Acquired stenosis of right nasolacrimal duct
## 5690 Acquired stenosis of left nasolacrimal duct
## 5691 Acquired stenosis of bilateral nasolacrimal duct
## 5692 Acquired stenosis of unspecified nasolacrimal duct
## 5693 Stenosis of right lacrimal punctum
## 5694 Stenosis of left lacrimal punctum
## 5695 Stenosis of bilateral lacrimal punctum
## 5696 Stenosis of unspecified lacrimal punctum
## 5697 Stenosis of right lacrimal sac
## 5698 Stenosis of left lacrimal sac
## 5699 Stenosis of bilateral lacrimal sac
## 5700 Stenosis of unspecified lacrimal sac
## 5701 Lacrimal fistula right lacrimal passage
## 5702 Lacrimal fistula left lacrimal passage
## 5703 Lacrimal fistula bilateral lacrimal passages
## 5704 Lacrimal fistula unspecified lacrimal passage
## 5705 Other changes of lacrimal passages
## 5706 Granuloma of right lacrimal passage
## 5707 Granuloma of left lacrimal passage
## 5708 Granuloma of bilateral lacrimal passages
## 5709 Granuloma of unspecified lacrimal passage
## 5710 Other disorders of lacrimal system
## 5711 Disorder of lacrimal system, unspecified
## 5712 Unspecified acute inflammation of orbit
## 5713 Cellulitis of right orbit
## 5714 Cellulitis of left orbit
## 5715 Cellulitis of bilateral orbits
## 5716 Cellulitis of unspecified orbit
## 5717 Osteomyelitis of right orbit
## 5718 Osteomyelitis of left orbit
## 5719 Osteomyelitis of bilateral orbits
## 5720 Osteomyelitis of unspecified orbit
## 5721 Periostitis of right orbit
## 5722 Periostitis of left orbit
## 5723 Periostitis of bilateral orbits
## 5724 Periostitis of unspecified orbit
## 5725 Tenonitis of right orbit
## 5726 Tenonitis of left orbit
## 5727 Tenonitis of bilateral orbits
## 5728 Tenonitis of unspecified orbit
## 5729 Unspecified chronic inflammatory disorders of orbit
## 5730 Granuloma of right orbit
## 5731 Granuloma of left orbit
## 5732 Granuloma of bilateral orbits
## 5733 Granuloma of unspecified orbit
## 5734 Orbital myositis, right orbit
## 5735 Orbital myositis, left orbit
## 5736 Orbital myositis, bilateral
## 5737 Orbital myositis, unspecified orbit
## 5738 Unspecified exophthalmos
## 5739 Displacement (lateral) of globe, right eye
## 5740 Displacement (lateral) of globe, left eye
## 5741 Displacement (lateral) of globe, bilateral
## 5742 Displacement (lateral) of globe, unspecified eye
## 5743 Edema of right orbit
## 5744 Edema of left orbit
## 5745 Edema of bilateral orbit
## 5746 Edema of unspecified orbit
## 5747 Hemorrhage of right orbit
## 5748 Hemorrhage of left orbit
## 5749 Hemorrhage of bilateral orbit
## 5750 Hemorrhage of unspecified orbit
## 5751 Constant exophthalmos, right eye
## 5752 Constant exophthalmos, left eye
## 5753 Constant exophthalmos, bilateral
## 5754 Constant exophthalmos, unspecified eye
## 5755 Intermittent exophthalmos, right eye
## 5756 Intermittent exophthalmos, left eye
## 5757 Intermittent exophthalmos, bilateral
## 5758 Intermittent exophthalmos, unspecified eye
## 5759 Pulsating exophthalmos, right eye
## 5760 Pulsating exophthalmos, left eye
## 5761 Pulsating exophthalmos, bilateral
## 5762 Pulsating exophthalmos, unspecified eye
## 5763 Unspecified deformity of orbit
## 5764 Atrophy of right orbit
## 5765 Atrophy of left orbit
## 5766 Atrophy of bilateral orbit
## 5767 Atrophy of unspecified orbit
## 5768 Deformity of right orbit due to bone disease
## 5769 Deformity of left orbit due to bone disease
## 5770 Deformity of bilateral orbits due to bone disease
## 5771 Deformity of unspecified orbit due to bone disease
## 5772 Deformity of right orbit due to trauma or surgery
## 5773 Deformity of left orbit due to trauma or surgery
## 5774 Deformity of bilateral orbits due to trauma or surgery
## 5775 Deformity of unspecified orbit due to trauma or surgery
## 5776 Enlargement of right orbit
## 5777 Enlargement of left orbit
## 5778 Enlargement of bilateral orbits
## 5779 Enlargement of unspecified orbit
## 5780 Exostosis of right orbit
## 5781 Exostosis of left orbit
## 5782 Exostosis of bilateral orbits
## 5783 Exostosis of unspecified orbit
## 5784 Unspecified enophthalmos, right eye
## 5785 Unspecified enophthalmos, left eye
## 5786 Unspecified enophthalmos, bilateral
## 5787 Unspecified enophthalmos, unspecified eye
## 5788 Enophthalmos due to atrophy of orbital tissue, right eye
## 5789 Enophthalmos due to atrophy of orbital tissue, left eye
## 5790 Enophthalmos due to atrophy of orbital tissue, bilateral
## 5791 Enophthalmos due to atrophy of orbital tissue, unspecified eye
## 5792 Enophthalmos due to trauma or surgery, right eye
## 5793 Enophthalmos due to trauma or surgery, left eye
## 5794 Enophthalmos due to trauma or surgery, bilateral
## 5795 Enophthalmos due to trauma or surgery, unspecified eye
## 5796 Retained (old) foreign body following penetrating wound of unspecified orbit
## 5797 Retained (old) foreign body following penetrating wound of right orbit
## 5798 Retained (old) foreign body following penetrating wound of left orbit
## 5799 Retained (old) foreign body following penetrating wound of bilateral orbits
## 5800 Cyst of right orbit
## 5801 Cyst of left orbit
## 5802 Cyst of bilateral orbits
## 5803 Cyst of unspecified orbit
## 5804 Myopathy of extraocular muscles, right orbit
## 5805 Myopathy of extraocular muscles, left orbit
## 5806 Myopathy of extraocular muscles, bilateral
## 5807 Myopathy of extraocular muscles, unspecified orbit
## 5808 Other disorders of orbit
## 5809 Unspecified disorder of orbit
## 5810 Acute follicular conjunctivitis, right eye
## 5811 Acute follicular conjunctivitis, left eye
## 5812 Acute follicular conjunctivitis, bilateral
## 5813 Acute follicular conjunctivitis, unspecified eye
## 5814 Other mucopurulent conjunctivitis, right eye
## 5815 Other mucopurulent conjunctivitis, left eye
## 5816 Other mucopurulent conjunctivitis, bilateral
## 5817 Other mucopurulent conjunctivitis, unspecified eye
## 5818 Acute atopic conjunctivitis, unspecified eye
## 5819 Acute atopic conjunctivitis, right eye
## 5820 Acute atopic conjunctivitis, left eye
## 5821 Acute atopic conjunctivitis, bilateral
## 5822 Acute toxic conjunctivitis, right eye
## 5823 Acute toxic conjunctivitis, left eye
## 5824 Acute toxic conjunctivitis, bilateral
## 5825 Acute toxic conjunctivitis, unspecified eye
## 5826 Pseudomembranous conjunctivitis, right eye
## 5827 Pseudomembranous conjunctivitis, left eye
## 5828 Pseudomembranous conjunctivitis, bilateral
## 5829 Pseudomembranous conjunctivitis, unspecified eye
## 5830 Serous conjunctivitis, except viral, right eye
## 5831 Serous conjunctivitis, except viral, left eye
## 5832 Serous conjunctivitis, except viral, bilateral
## 5833 Serous conjunctivitis, except viral, unspecified eye
## 5834 Unspecified acute conjunctivitis, unspecified eye
## 5835 Unspecified acute conjunctivitis, right eye
## 5836 Unspecified acute conjunctivitis, left eye
## 5837 Unspecified acute conjunctivitis, bilateral
## 5838 Unspecified chronic conjunctivitis, right eye
## 5839 Unspecified chronic conjunctivitis, left eye
## 5840 Unspecified chronic conjunctivitis, bilateral
## 5841 Unspecified chronic conjunctivitis, unspecified eye
## 5842 Chronic giant papillary conjunctivitis, right eye
## 5843 Chronic giant papillary conjunctivitis, left eye
## 5844 Chronic giant papillary conjunctivitis, bilateral
## 5845 Chronic giant papillary conjunctivitis, unspecified eye
## 5846 Simple chronic conjunctivitis, right eye
## 5847 Simple chronic conjunctivitis, left eye
## 5848 Simple chronic conjunctivitis, bilateral
## 5849 Simple chronic conjunctivitis, unspecified eye
## 5850 Chronic follicular conjunctivitis, right eye
## 5851 Chronic follicular conjunctivitis, left eye
## 5852 Chronic follicular conjunctivitis, bilateral
## 5853 Chronic follicular conjunctivitis, unspecified eye
## 5854 Vernal conjunctivitis
## 5855 Other chronic allergic conjunctivitis
## 5856 Unspecified blepharoconjunctivitis, right eye
## 5857 Unspecified blepharoconjunctivitis, left eye
## 5858 Unspecified blepharoconjunctivitis, bilateral
## 5859 Unspecified blepharoconjunctivitis, unspecified eye
## 5860 Ligneous conjunctivitis, right eye
## 5861 Ligneous conjunctivitis, left eye
## 5862 Ligneous conjunctivitis, bilateral
## 5863 Ligneous conjunctivitis, unspecified eye
## 5864 Angular blepharoconjunctivitis, right eye
## 5865 Angular blepharoconjunctivitis, left eye
## 5866 Angular blepharoconjunctivitis, bilateral
## 5867 Angular blepharoconjunctivitis, unspecified eye
## 5868 Contact blepharoconjunctivitis, right eye
## 5869 Contact blepharoconjunctivitis, left eye
## 5870 Contact blepharoconjunctivitis, bilateral
## 5871 Contact blepharoconjunctivitis, unspecified eye
## 5872 Pingueculitis, right eye
## 5873 Pingueculitis, left eye
## 5874 Pingueculitis, bilateral
## 5875 Pingueculitis, unspecified eye
## 5876 Rosacea conjunctivitis, right eye
## 5877 Rosacea conjunctivitis, left eye
## 5878 Rosacea conjunctivitis, bilateral
## 5879 Rosacea conjunctivitis, unspecified eye
## 5880 Other conjunctivitis
## 5881 Unspecified conjunctivitis
## 5882 Unspecified pterygium of right eye
## 5883 Unspecified pterygium of left eye
## 5884 Unspecified pterygium of eye, bilateral
## 5885 Unspecified pterygium of unspecified eye
## 5886 Amyloid pterygium of right eye
## 5887 Amyloid pterygium of left eye
## 5888 Amyloid pterygium of eye, bilateral
## 5889 Amyloid pterygium of unspecified eye
## 5890 Central pterygium of right eye
## 5891 Central pterygium of left eye
## 5892 Central pterygium of eye, bilateral
## 5893 Central pterygium of unspecified eye
## 5894 Double pterygium of right eye
## 5895 Double pterygium of left eye
## 5896 Double pterygium of eye, bilateral
## 5897 Double pterygium of unspecified eye
## 5898 Peripheral pterygium, stationary, right eye
## 5899 Peripheral pterygium, stationary, left eye
## 5900 Peripheral pterygium, stationary, bilateral
## 5901 Peripheral pterygium, stationary, unspecified eye
## 5902 Peripheral pterygium, progressive, right eye
## 5903 Peripheral pterygium, progressive, left eye
## 5904 Peripheral pterygium, progressive, bilateral
## 5905 Peripheral pterygium, progressive, unspecified eye
## 5906 Recurrent pterygium of right eye
## 5907 Recurrent pterygium of left eye
## 5908 Recurrent pterygium of eye, bilateral
## 5909 Recurrent pterygium of unspecified eye
## 5910 Unspecified conjunctival degenerations
## 5911 Conjunctival deposits, right eye
## 5912 Conjunctival deposits, left eye
## 5913 Conjunctival deposits, bilateral
## 5914 Conjunctival deposits, unspecified eye
## 5915 Conjunctival concretions, right eye
## 5916 Conjunctival concretions, left eye
## 5917 Conjunctival concretions, bilateral
## 5918 Conjunctival concretions, unspecified eye
## 5919 Conjunctival pigmentations, right eye
## 5920 Conjunctival pigmentations, left eye
## 5921 Conjunctival pigmentations, bilateral
## 5922 Conjunctival pigmentations, unspecified eye
## 5923 Conjunctival xerosis, unspecified, right eye
## 5924 Conjunctival xerosis, unspecified, left eye
## 5925 Conjunctival xerosis, unspecified, bilateral
## 5926 Conjunctival xerosis, unspecified, unspecified eye
## 5927 Pinguecula, right eye
## 5928 Pinguecula, left eye
## 5929 Pinguecula, bilateral
## 5930 Pinguecula, unspecified eye
## 5931 Conjunctival adhesions and strands (localized), right eye
## 5932 Conjunctival adhesions and strands (localized), left eye
## 5933 Conjunctival adhesions and strands (localized), bilateral
## 5934 Conjunctival adhesions and strands (localized), unspecified eye
## 5935 Conjunctival granuloma, right eye
## 5936 Conjunctival granuloma, left eye
## 5937 Conjunctival granuloma, bilateral
## 5938 Conjunctival granuloma, unspecified
## 5939 Symblepharon, right eye
## 5940 Symblepharon, left eye
## 5941 Symblepharon, bilateral
## 5942 Symblepharon, unspecified eye
## 5943 Scarring of conjunctiva, right eye
## 5944 Scarring of conjunctiva, left eye
## 5945 Scarring of conjunctiva, bilateral
## 5946 Scarring of conjunctiva, unspecified eye
## 5947 Conjunctival hemorrhage, unspecified eye
## 5948 Conjunctival hemorrhage, right eye
## 5949 Conjunctival hemorrhage, left eye
## 5950 Conjunctival hemorrhage, bilateral
## 5951 Vascular abnormalities of conjunctiva, right eye
## 5952 Vascular abnormalities of conjunctiva, left eye
## 5953 Vascular abnormalities of conjunctiva, bilateral
## 5954 Vascular abnormalities of conjunctiva, unspecified eye
## 5955 Conjunctival edema, right eye
## 5956 Conjunctival edema, left eye
## 5957 Conjunctival edema, bilateral
## 5958 Conjunctival edema, unspecified eye
## 5959 Conjunctival hyperemia, right eye
## 5960 Conjunctival hyperemia, left eye
## 5961 Conjunctival hyperemia, bilateral
## 5962 Conjunctival hyperemia, unspecified eye
## 5963 Conjunctival cysts, right eye
## 5964 Conjunctival cysts, left eye
## 5965 Conjunctival cysts, bilateral
## 5966 Conjunctival cysts, unspecified eye
## 5967 Pseudopterygium of conjunctiva, right eye
## 5968 Pseudopterygium of conjunctiva, left eye
## 5969 Pseudopterygium of conjunctiva, bilateral
## 5970 Pseudopterygium of conjunctiva, unspecified eye
## 5971 Conjunctivochalasis, right eye
## 5972 Conjunctivochalasis, left eye
## 5973 Conjunctivochalasis, bilateral
## 5974 Conjunctivochalasis, unspecified eye
## 5975 Other specified disorders of conjunctiva
## 5976 Unspecified disorder of conjunctiva
## 5977 Unspecified scleritis, right eye
## 5978 Unspecified scleritis, left eye
## 5979 Unspecified scleritis, bilateral
## 5980 Unspecified scleritis, unspecified eye
## 5981 Anterior scleritis, right eye
## 5982 Anterior scleritis, left eye
## 5983 Anterior scleritis, bilateral
## 5984 Anterior scleritis, unspecified eye
## 5985 Brawny scleritis, right eye
## 5986 Brawny scleritis, left eye
## 5987 Brawny scleritis, bilateral
## 5988 Brawny scleritis, unspecified eye
## 5989 Posterior scleritis, right eye
## 5990 Posterior scleritis, left eye
## 5991 Posterior scleritis, bilateral
## 5992 Posterior scleritis, unspecified eye
## 5993 Scleritis with corneal involvement, right eye
## 5994 Scleritis with corneal involvement, left eye
## 5995 Scleritis with corneal involvement, bilateral
## 5996 Scleritis with corneal involvement, unspecified eye
## 5997 Scleromalacia perforans, right eye
## 5998 Scleromalacia perforans, left eye
## 5999 Scleromalacia perforans, bilateral
## 6000 Scleromalacia perforans, unspecified eye
## 6001 Other scleritis, right eye
## 6002 Other scleritis, left eye
## 6003 Other scleritis, bilateral
## 6004 Other scleritis, unspecified eye
## 6005 Unspecified episcleritis, right eye
## 6006 Unspecified episcleritis, left eye
## 6007 Unspecified episcleritis, bilateral
## 6008 Unspecified episcleritis, unspecified eye
## 6009 Episcleritis periodica fugax, right eye
## 6010 Episcleritis periodica fugax, left eye
## 6011 Episcleritis periodica fugax, bilateral
## 6012 Episcleritis periodica fugax, unspecified eye
## 6013 Nodular episcleritis, right eye
## 6014 Nodular episcleritis, left eye
## 6015 Nodular episcleritis, bilateral
## 6016 Nodular episcleritis, unspecified eye
## 6017 Equatorial staphyloma, right eye
## 6018 Equatorial staphyloma, left eye
## 6019 Equatorial staphyloma, bilateral
## 6020 Equatorial staphyloma, unspecified eye
## 6021 Localized anterior staphyloma, right eye
## 6022 Localized anterior staphyloma, left eye
## 6023 Localized anterior staphyloma, bilateral
## 6024 Localized anterior staphyloma, unspecified eye
## 6025 Staphyloma posticum, right eye
## 6026 Staphyloma posticum, left eye
## 6027 Staphyloma posticum, bilateral
## 6028 Staphyloma posticum, unspecified eye
## 6029 Scleral ectasia, right eye
## 6030 Scleral ectasia, left eye
## 6031 Scleral ectasia, bilateral
## 6032 Scleral ectasia, unspecified eye
## 6033 Ring staphyloma, right eye
## 6034 Ring staphyloma, left eye
## 6035 Ring staphyloma, bilateral
## 6036 Ring staphyloma, unspecified eye
## 6037 Other disorders of sclera
## 6038 Unspecified disorder of sclera
## 6039 Unspecified corneal ulcer, right eye
## 6040 Unspecified corneal ulcer, left eye
## 6041 Unspecified corneal ulcer, bilateral
## 6042 Unspecified corneal ulcer, unspecified eye
## 6043 Central corneal ulcer, right eye
## 6044 Central corneal ulcer, left eye
## 6045 Central corneal ulcer, bilateral
## 6046 Central corneal ulcer, unspecified eye
## 6047 Ring corneal ulcer, right eye
## 6048 Ring corneal ulcer, left eye
## 6049 Ring corneal ulcer, bilateral
## 6050 Ring corneal ulcer, unspecified eye
## 6051 Corneal ulcer with hypopyon, right eye
## 6052 Corneal ulcer with hypopyon, left eye
## 6053 Corneal ulcer with hypopyon, bilateral
## 6054 Corneal ulcer with hypopyon, unspecified eye
## 6055 Marginal corneal ulcer, right eye
## 6056 Marginal corneal ulcer, left eye
## 6057 Marginal corneal ulcer, bilateral
## 6058 Marginal corneal ulcer, unspecified eye
## 6059 Mooren's corneal ulcer, right eye
## 6060 Mooren's corneal ulcer, left eye
## 6061 Mooren's corneal ulcer, bilateral
## 6062 Mooren's corneal ulcer, unspecified eye
## 6063 Mycotic corneal ulcer, right eye
## 6064 Mycotic corneal ulcer, left eye
## 6065 Mycotic corneal ulcer, bilateral
## 6066 Mycotic corneal ulcer, unspecified eye
## 6067 Perforated corneal ulcer, right eye
## 6068 Perforated corneal ulcer, left eye
## 6069 Perforated corneal ulcer, bilateral
## 6070 Perforated corneal ulcer, unspecified eye
## 6071 Unspecified superficial keratitis, right eye
## 6072 Unspecified superficial keratitis, left eye
## 6073 Unspecified superficial keratitis, bilateral
## 6074 Unspecified superficial keratitis, unspecified eye
## 6075 Macular keratitis, right eye
## 6076 Macular keratitis, left eye
## 6077 Macular keratitis, bilateral
## 6078 Macular keratitis, unspecified eye
## 6079 Filamentary keratitis, right eye
## 6080 Filamentary keratitis, left eye
## 6081 Filamentary keratitis, bilateral
## 6082 Filamentary keratitis, unspecified eye
## 6083 Photokeratitis, right eye
## 6084 Photokeratitis, left eye
## 6085 Photokeratitis, bilateral
## 6086 Photokeratitis, unspecified eye
## 6087 Punctate keratitis, right eye
## 6088 Punctate keratitis, left eye
## 6089 Punctate keratitis, bilateral
## 6090 Punctate keratitis, unspecified eye
## 6091 Unspecified keratoconjunctivitis, right eye
## 6092 Unspecified keratoconjunctivitis, left eye
## 6093 Unspecified keratoconjunctivitis, bilateral
## 6094 Unspecified keratoconjunctivitis, unspecified eye
## 6095 Exposure keratoconjunctivitis, right eye
## 6096 Exposure keratoconjunctivitis, left eye
## 6097 Exposure keratoconjunctivitis, bilateral
## 6098 Exposure keratoconjunctivitis, unspecified eye
## 6099 Keratoconjunctivitis sicca, not specified as Sjogren's, right eye
## 6100 Keratoconjunctivitis sicca, not specified as Sjogren's, left eye
## 6101 Keratoconjunctivitis sicca, not specified as Sjogren's, bilateral
## 6102 Keratoconjunctivitis sicca, not specified as Sjogren's, unspecified eye
## 6103 Neurotrophic keratoconjunctivitis, right eye
## 6104 Neurotrophic keratoconjunctivitis, left eye
## 6105 Neurotrophic keratoconjunctivitis, bilateral
## 6106 Neurotrophic keratoconjunctivitis, unspecified eye
## 6107 Ophthalmia nodosa, right eye
## 6108 Ophthalmia nodosa, left eye
## 6109 Ophthalmia nodosa, bilateral
## 6110 Ophthalmia nodosa, unspecified eye
## 6111 Phlyctenular keratoconjunctivitis, right eye
## 6112 Phlyctenular keratoconjunctivitis, left eye
## 6113 Phlyctenular keratoconjunctivitis, bilateral
## 6114 Phlyctenular keratoconjunctivitis, unspecified eye
## 6115 Vernal keratoconjunctivitis, with limbar and corneal involvement, right eye
## 6116 Vernal keratoconjunctivitis, with limbar and corneal involvement, left eye
## 6117 Vernal keratoconjunctivitis, with limbar and corneal involvement, bilateral
## 6118 Vernal keratoconjunctivitis, with limbar and corneal involvement, unspecified eye
## 6119 Other keratoconjunctivitis, right eye
## 6120 Other keratoconjunctivitis, left eye
## 6121 Other keratoconjunctivitis, bilateral
## 6122 Other keratoconjunctivitis, unspecified eye
## 6123 Unspecified interstitial keratitis, right eye
## 6124 Unspecified interstitial keratitis, left eye
## 6125 Unspecified interstitial keratitis, bilateral
## 6126 Unspecified interstitial keratitis, unspecified eye
## 6127 Corneal abscess, right eye
## 6128 Corneal abscess, left eye
## 6129 Corneal abscess, bilateral
## 6130 Corneal abscess, unspecified eye
## 6131 Diffuse interstitial keratitis, right eye
## 6132 Diffuse interstitial keratitis, left eye
## 6133 Diffuse interstitial keratitis, bilateral
## 6134 Diffuse interstitial keratitis, unspecified eye
## 6135 Sclerosing keratitis, right eye
## 6136 Sclerosing keratitis, left eye
## 6137 Sclerosing keratitis, bilateral
## 6138 Sclerosing keratitis, unspecified eye
## 6139 Other interstitial and deep keratitis, right eye
## 6140 Other interstitial and deep keratitis, left eye
## 6141 Other interstitial and deep keratitis, bilateral
## 6142 Other interstitial and deep keratitis, unspecified eye
## 6143 Unspecified corneal neovascularization, right eye
## 6144 Unspecified corneal neovascularization, left eye
## 6145 Unspecified corneal neovascularization, bilateral
## 6146 Unspecified corneal neovascularization, unspecified eye
## 6147 Ghost vessels (corneal), right eye
## 6148 Ghost vessels (corneal), left eye
## 6149 Ghost vessels (corneal), bilateral
## 6150 Ghost vessels (corneal), unspecified eye
## 6151 Pannus (corneal), right eye
## 6152 Pannus (corneal), left eye
## 6153 Pannus (corneal), bilateral
## 6154 Pannus (corneal), unspecified eye
## 6155 Localized vascularization of cornea, right eye
## 6156 Localized vascularization of cornea, left eye
## 6157 Localized vascularization of cornea, bilateral
## 6158 Localized vascularization of cornea, unspecified eye
## 6159 Deep vascularization of cornea, right eye
## 6160 Deep vascularization of cornea, left eye
## 6161 Deep vascularization of cornea, bilateral
## 6162 Deep vascularization of cornea, unspecified eye
## 6163 Other keratitis
## 6164 Unspecified keratitis
## 6165 Adherent leukoma, unspecified eye
## 6166 Adherent leukoma, right eye
## 6167 Adherent leukoma, left eye
## 6168 Adherent leukoma, bilateral
## 6169 Central corneal opacity, unspecified eye
## 6170 Central corneal opacity, right eye
## 6171 Central corneal opacity, left eye
## 6172 Central corneal opacity, bilateral
## 6173 Minor opacity of cornea, right eye
## 6174 Minor opacity of cornea, left eye
## 6175 Minor opacity of cornea, bilateral
## 6176 Minor opacity of cornea, unspecified eye
## 6177 Peripheral opacity of cornea, right eye
## 6178 Peripheral opacity of cornea, left eye
## 6179 Peripheral opacity of cornea, bilateral
## 6180 Peripheral opacity of cornea, unspecified eye
## 6181 Other corneal scars and opacities
## 6182 Unspecified corneal scar and opacity
## 6183 Unspecified corneal deposit, right eye
## 6184 Unspecified corneal deposit, left eye
## 6185 Unspecified corneal deposit, bilateral
## 6186 Unspecified corneal deposit, unspecified eye
## 6187 Anterior corneal pigmentations, right eye
## 6188 Anterior corneal pigmentations, left eye
## 6189 Anterior corneal pigmentations, bilateral
## 6190 Anterior corneal pigmentations, unspecified eye
## 6191 Argentous corneal deposits, right eye
## 6192 Argentous corneal deposits, left eye
## 6193 Argentous corneal deposits, bilateral
## 6194 Argentous corneal deposits, unspecified eye
## 6195 Corneal deposits in metabolic disorders, right eye
## 6196 Corneal deposits in metabolic disorders, left eye
## 6197 Corneal deposits in metabolic disorders, bilateral
## 6198 Corneal deposits in metabolic disorders, unspecified eye
## 6199 Kayser-Fleischer ring, right eye
## 6200 Kayser-Fleischer ring, left eye
## 6201 Kayser-Fleischer ring, bilateral
## 6202 Kayser-Fleischer ring, unspecified eye
## 6203 Posterior corneal pigmentations, right eye
## 6204 Posterior corneal pigmentations, left eye
## 6205 Posterior corneal pigmentations, bilateral
## 6206 Posterior corneal pigmentations, unspecified eye
## 6207 Stromal corneal pigmentations, right eye
## 6208 Stromal corneal pigmentations, left eye
## 6209 Stromal corneal pigmentations, bilateral
## 6210 Stromal corneal pigmentations, unspecified eye
## 6211 Bullous keratopathy, unspecified eye
## 6212 Bullous keratopathy, right eye
## 6213 Bullous keratopathy, left eye
## 6214 Bullous keratopathy, bilateral
## 6215 Unspecified corneal edema
## 6216 Corneal edema secondary to contact lens, right eye
## 6217 Corneal edema secondary to contact lens, left eye
## 6218 Corneal edema secondary to contact lens, bilateral
## 6219 Corneal edema secondary to contact lens, unspecified eye
## 6220 Idiopathic corneal edema, right eye
## 6221 Idiopathic corneal edema, left eye
## 6222 Idiopathic corneal edema, bilateral
## 6223 Idiopathic corneal edema, unspecified eye
## 6224 Secondary corneal edema, right eye
## 6225 Secondary corneal edema, left eye
## 6226 Secondary corneal edema, bilateral
## 6227 Secondary corneal edema, unspecified eye
## 6228 Unspecified corneal membrane change
## 6229 Folds and rupture in Bowman's membrane, right eye
## 6230 Folds and rupture in Bowman's membrane, left eye
## 6231 Folds and rupture in Bowman's membrane, bilateral
## 6232 Folds and rupture in Bowman's membrane, unspecified eye
## 6233 Folds in Descemet's membrane, right eye
## 6234 Folds in Descemet's membrane, left eye
## 6235 Folds in Descemet's membrane, bilateral
## 6236 Folds in Descemet's membrane, unspecified eye
## 6237 Rupture in Descemet's membrane, right eye
## 6238 Rupture in Descemet's membrane, left eye
## 6239 Rupture in Descemet's membrane, bilateral
## 6240 Rupture in Descemet's membrane, unspecified eye
## 6241 Unspecified corneal degeneration
## 6242 Arcus senilis, right eye
## 6243 Arcus senilis, left eye
## 6244 Arcus senilis, bilateral
## 6245 Arcus senilis, unspecified eye
## 6246 Band keratopathy, right eye
## 6247 Band keratopathy, left eye
## 6248 Band keratopathy, bilateral
## 6249 Band keratopathy, unspecified eye
## 6250 Other calcerous corneal degeneration
## 6251 Keratomalacia, right eye
## 6252 Keratomalacia, left eye
## 6253 Keratomalacia, bilateral
## 6254 Keratomalacia, unspecified eye
## 6255 Nodular corneal degeneration, right eye
## 6256 Nodular corneal degeneration, left eye
## 6257 Nodular corneal degeneration, bilateral
## 6258 Nodular corneal degeneration, unspecified eye
## 6259 Peripheral corneal degeneration, right eye
## 6260 Peripheral corneal degeneration, left eye
## 6261 Peripheral corneal degeneration, bilateral
## 6262 Peripheral corneal degeneration, unspecified eye
## 6263 Other corneal degeneration
## 6264 Unspecified hereditary corneal dystrophies
## 6265 Endothelial corneal dystrophy
## 6266 Epithelial (juvenile) corneal dystrophy
## 6267 Granular corneal dystrophy
## 6268 Lattice corneal dystrophy
## 6269 Macular corneal dystrophy
## 6270 Other hereditary corneal dystrophies
## 6271 Keratoconus, unspecified, right eye
## 6272 Keratoconus, unspecified, left eye
## 6273 Keratoconus, unspecified, bilateral
## 6274 Keratoconus, unspecified, unspecified eye
## 6275 Keratoconus, stable, right eye
## 6276 Keratoconus, stable, left eye
## 6277 Keratoconus, stable, bilateral
## 6278 Keratoconus, stable, unspecified eye
## 6279 Keratoconus, unstable, right eye
## 6280 Keratoconus, unstable, left eye
## 6281 Keratoconus, unstable, bilateral
## 6282 Keratoconus, unstable, unspecified eye
## 6283 Unspecified corneal deformity
## 6284 Corneal ectasia, right eye
## 6285 Corneal ectasia, left eye
## 6286 Corneal ectasia, bilateral
## 6287 Corneal ectasia, unspecified eye
## 6288 Corneal staphyloma, right eye
## 6289 Corneal staphyloma, left eye
## 6290 Corneal staphyloma, bilateral
## 6291 Corneal staphyloma, unspecified eye
## 6292 Descemetocele, right eye
## 6293 Descemetocele, left eye
## 6294 Descemetocele, bilateral
## 6295 Descemetocele, unspecified eye
## 6296 Other corneal deformities, right eye
## 6297 Other corneal deformities, left eye
## 6298 Other corneal deformities, bilateral
## 6299 Other corneal deformities, unspecified eye
## 6300 Anesthesia and hypoesthesia of cornea, right eye
## 6301 Anesthesia and hypoesthesia of cornea, left eye
## 6302 Anesthesia and hypoesthesia of cornea, bilateral
## 6303 Anesthesia and hypoesthesia of cornea, unspecified eye
## 6304 Corneal disorder due to contact lens, right eye
## 6305 Corneal disorder due to contact lens, left eye
## 6306 Corneal disorder due to contact lens, bilateral
## 6307 Corneal disorder due to contact lens, unspecified eye
## 6308 Recurrent erosion of cornea, right eye
## 6309 Recurrent erosion of cornea, left eye
## 6310 Recurrent erosion of cornea, bilateral
## 6311 Recurrent erosion of cornea, unspecified eye
## 6312 Other specified disorders of cornea, right eye
## 6313 Other specified disorders of cornea, left eye
## 6314 Other specified disorders of cornea, bilateral
## 6315 Other specified disorders of cornea, unspecified eye
## 6316 Unspecified disorder of cornea
## 6317 Unspecified acute and subacute iridocyclitis
## 6318 Primary iridocyclitis, right eye
## 6319 Primary iridocyclitis, left eye
## 6320 Primary iridocyclitis, bilateral
## 6321 Primary iridocyclitis, unspecified eye
## 6322 Recurrent acute iridocyclitis, right eye
## 6323 Recurrent acute iridocyclitis, left eye
## 6324 Recurrent acute iridocyclitis, bilateral
## 6325 Recurrent acute iridocyclitis, unspecified eye
## 6326 Secondary infectious iridocyclitis, right eye
## 6327 Secondary infectious iridocyclitis, left eye
## 6328 Secondary infectious iridocyclitis, bilateral
## 6329 Secondary infectious iridocyclitis, unspecified eye
## 6330 Secondary noninfectious iridocyclitis, right eye
## 6331 Secondary noninfectious iridocyclitis, left eye
## 6332 Secondary noninfectious iridocyclitis, bilateral
## 6333 Secondary noninfectious iridocyclitis, unspecified eye
## 6334 Hypopyon, right eye
## 6335 Hypopyon, left eye
## 6336 Hypopyon, bilateral
## 6337 Hypopyon, unspecified eye
## 6338 Chronic iridocyclitis, unspecified eye
## 6339 Chronic iridocyclitis, right eye
## 6340 Chronic iridocyclitis, left eye
## 6341 Chronic iridocyclitis, bilateral
## 6342 Lens-induced iridocyclitis, unspecified eye
## 6343 Lens-induced iridocyclitis, right eye
## 6344 Lens-induced iridocyclitis, left eye
## 6345 Lens-induced iridocyclitis, bilateral
## 6346 Fuchs' heterochromic cyclitis, right eye
## 6347 Fuchs' heterochromic cyclitis, left eye
## 6348 Fuchs' heterochromic cyclitis, bilateral
## 6349 Fuchs' heterochromic cyclitis, unspecified eye
## 6350 Vogt-Koyanagi syndrome, right eye
## 6351 Vogt-Koyanagi syndrome, left eye
## 6352 Vogt-Koyanagi syndrome, bilateral
## 6353 Vogt-Koyanagi syndrome, unspecified eye
## 6354 Unspecified iridocyclitis
## 6355 Hyphema, unspecified eye
## 6356 Hyphema, right eye
## 6357 Hyphema, left eye
## 6358 Hyphema, bilateral
## 6359 Other vascular disorders of iris and ciliary body, right eye
## 6360 Other vascular disorders of iris and ciliary body, left eye
## 6361 Other vascular disorders of iris and ciliary body, bilateral
## 6362 Other vascular disorders of iris and ciliary body, unspecified eye
## 6363 Degeneration of chamber angle, right eye
## 6364 Degeneration of chamber angle, left eye
## 6365 Degeneration of chamber angle, bilateral
## 6366 Degeneration of chamber angle, unspecified eye
## 6367 Degeneration of ciliary body, right eye
## 6368 Degeneration of ciliary body, left eye
## 6369 Degeneration of ciliary body, bilateral
## 6370 Degeneration of ciliary body, unspecified eye
## 6371 Degeneration of iris (pigmentary), right eye
## 6372 Degeneration of iris (pigmentary), left eye
## 6373 Degeneration of iris (pigmentary), bilateral
## 6374 Degeneration of iris (pigmentary), unspecified eye
## 6375 Degeneration of pupillary margin, right eye
## 6376 Degeneration of pupillary margin, left eye
## 6377 Degeneration of pupillary margin, bilateral
## 6378 Degeneration of pupillary margin, unspecified eye
## 6379 Iridoschisis, right eye
## 6380 Iridoschisis, left eye
## 6381 Iridoschisis, bilateral
## 6382 Iridoschisis, unspecified eye
## 6383 Iris atrophy (essential) (progressive), right eye
## 6384 Iris atrophy (essential) (progressive), left eye
## 6385 Iris atrophy (essential) (progressive), bilateral
## 6386 Iris atrophy (essential) (progressive), unspecified eye
## 6387 Miotic pupillary cyst, right eye
## 6388 Miotic pupillary cyst, left eye
## 6389 Miotic pupillary cyst, bilateral
## 6390 Miotic pupillary cyst, unspecified eye
## 6391 Other iris atrophy
## 6392 Idiopathic cysts of iris, ciliary body or anterior chamber, right eye
## 6393 Idiopathic cysts of iris, ciliary body or anterior chamber, left eye
## 6394 Idiopathic cysts of iris, ciliary body or anterior chamber, bilateral
## 6395 Idiopathic cysts of iris, ciliary body or anterior chamber, unspecified eye
## 6396 Exudative cysts of iris or anterior chamber, right eye
## 6397 Exudative cysts of iris or anterior chamber, left eye
## 6398 Exudative cysts of iris or anterior chamber, bilateral
## 6399 Exudative cysts of iris or anterior chamber, unspecified eye
## 6400 Implantation cysts of iris, ciliary body or anterior chamber, right eye
## 6401 Implantation cysts of iris, ciliary body or anterior chamber, left eye
## 6402 Implantation cysts of iris, ciliary body or anterior chamber, bilateral
## 6403 Implantation cysts of iris, ciliary body or anterior chamber, unspecified eye
## 6404 Parasitic cyst of iris, ciliary body or anterior chamber, right eye
## 6405 Parasitic cyst of iris, ciliary body or anterior chamber, left eye
## 6406 Parasitic cyst of iris, ciliary body or anterior chamber, bilateral
## 6407 Parasitic cyst of iris, ciliary body or anterior chamber, unspecified eye
## 6408 Primary cyst of pars plana, right eye
## 6409 Primary cyst of pars plana, left eye
## 6410 Primary cyst of pars plana, bilateral
## 6411 Primary cyst of pars plana, unspecified eye
## 6412 Exudative cyst of pars plana, right eye
## 6413 Exudative cyst of pars plana, left eye
## 6414 Exudative cyst of pars plana, bilateral
## 6415 Exudative cyst of pars plana, unspecified eye
## 6416 Pupillary membranes, unspecified eye
## 6417 Pupillary membranes, right eye
## 6418 Pupillary membranes, left eye
## 6419 Pupillary membranes, bilateral
## 6420 Unspecified adhesions of iris, right eye
## 6421 Unspecified adhesions of iris, left eye
## 6422 Unspecified adhesions of iris, bilateral
## 6423 Unspecified adhesions of iris and ciliary body, unspecified eye
## 6424 Anterior synechiae (iris), right eye
## 6425 Anterior synechiae (iris), left eye
## 6426 Anterior synechiae (iris), bilateral
## 6427 Anterior synechiae (iris), unspecified eye
## 6428 Goniosynechiae, right eye
## 6429 Goniosynechiae, left eye
## 6430 Goniosynechiae, bilateral
## 6431 Goniosynechiae, unspecified eye
## 6432 Iridodialysis, right eye
## 6433 Iridodialysis, left eye
## 6434 Iridodialysis, bilateral
## 6435 Iridodialysis, unspecified eye
## 6436 Posterior synechiae (iris), right eye
## 6437 Posterior synechiae (iris), left eye
## 6438 Posterior synechiae (iris), bilateral
## 6439 Posterior synechiae (iris), unspecified eye
## 6440 Recession of chamber angle, right eye
## 6441 Recession of chamber angle, left eye
## 6442 Recession of chamber angle, bilateral
## 6443 Recession of chamber angle, unspecified eye
## 6444 Pupillary abnormality, right eye
## 6445 Pupillary abnormality, left eye
## 6446 Pupillary abnormality, bilateral
## 6447 Pupillary abnormality, unspecified eye
## 6448 Floppy iris syndrome
## 6449 Plateau iris syndrome (post-iridectomy) (postprocedural)
## 6450 Other specified disorders of iris and ciliary body
## 6451 Unspecified disorder of iris and ciliary body
## 6452 Disorders of iris and ciliary body in diseases classified elsewhere
## 6453 Cortical age-related cataract, right eye
## 6454 Cortical age-related cataract, left eye
## 6455 Cortical age-related cataract, bilateral
## 6456 Cortical age-related cataract, unspecified eye
## 6457 Anterior subcapsular polar age-related cataract, right eye
## 6458 Anterior subcapsular polar age-related cataract, left eye
## 6459 Anterior subcapsular polar age-related cataract, bilateral
## 6460 Anterior subcapsular polar age-related cataract, unspecified eye
## 6461 Posterior subcapsular polar age-related cataract, right eye
## 6462 Posterior subcapsular polar age-related cataract, left eye
## 6463 Posterior subcapsular polar age-related cataract, bilateral
## 6464 Posterior subcapsular polar age-related cataract, unspecified eye
## 6465 Other age-related incipient cataract, right eye
## 6466 Other age-related incipient cataract, left eye
## 6467 Other age-related incipient cataract, bilateral
## 6468 Other age-related incipient cataract, unspecified eye
## 6469 Age-related nuclear cataract, unspecified eye
## 6470 Age-related nuclear cataract, right eye
## 6471 Age-related nuclear cataract, left eye
## 6472 Age-related nuclear cataract, bilateral
## 6473 Age-related cataract, morgagnian type, unspecified eye
## 6474 Age-related cataract, morgagnian type, right eye
## 6475 Age-related cataract, morgagnian type, left eye
## 6476 Age-related cataract, morgagnian type, bilateral
## 6477 Combined forms of age-related cataract, right eye
## 6478 Combined forms of age-related cataract, left eye
## 6479 Combined forms of age-related cataract, bilateral
## 6480 Combined forms of age-related cataract, unspecified eye
## 6481 Other age-related cataract
## 6482 Unspecified age-related cataract
## 6483 Unspecified infantile and juvenile cataract, right eye
## 6484 Unspecified infantile and juvenile cataract, left eye
## 6485 Unspecified infantile and juvenile cataract, bilateral
## 6486 Unspecified infantile and juvenile cataract, unspecified eye
## 6487 Infantile and juvenile cortical, lamellar, or zonular cataract, right eye
## 6488 Infantile and juvenile cortical, lamellar, or zonular cataract, left eye
## 6489 Infantile and juvenile cortical, lamellar, or zonular cataract, bilateral
## 6490 Infantile and juvenile cortical, lamellar, or zonular cataract, unspecified eye
## 6491 Infantile and juvenile nuclear cataract, right eye
## 6492 Infantile and juvenile nuclear cataract, left eye
## 6493 Infantile and juvenile nuclear cataract, bilateral
## 6494 Infantile and juvenile nuclear cataract, unspecified eye
## 6495 Anterior subcapsular polar infantile and juvenile cataract, right eye
## 6496 Anterior subcapsular polar infantile and juvenile cataract, left eye
## 6497 Anterior subcapsular polar infantile and juvenile cataract, bilateral
## 6498 Anterior subcapsular polar infantile and juvenile cataract, unspecified eye
## 6499 Posterior subcapsular polar infantile and juvenile cataract, right eye
## 6500 Posterior subcapsular polar infantile and juvenile cataract, left eye
## 6501 Posterior subcapsular polar infantile and juvenile cataract, bilateral
## 6502 Posterior subcapsular polar infantile and juvenile cataract, unspecified eye
## 6503 Combined forms of infantile and juvenile cataract, right eye
## 6504 Combined forms of infantile and juvenile cataract, left eye
## 6505 Combined forms of infantile and juvenile cataract, bilateral
## 6506 Combined forms of infantile and juvenile cataract, unspecified eye
## 6507 Other infantile and juvenile cataract
## 6508 Unspecified traumatic cataract, right eye
## 6509 Unspecified traumatic cataract, left eye
## 6510 Unspecified traumatic cataract, bilateral
## 6511 Unspecified traumatic cataract, unspecified eye
## 6512 Localized traumatic opacities, right eye
## 6513 Localized traumatic opacities, left eye
## 6514 Localized traumatic opacities, bilateral
## 6515 Localized traumatic opacities, unspecified eye
## 6516 Partially resolved traumatic cataract, right eye
## 6517 Partially resolved traumatic cataract, left eye
## 6518 Partially resolved traumatic cataract, bilateral
## 6519 Partially resolved traumatic cataract, unspecified eye
## 6520 Total traumatic cataract, right eye
## 6521 Total traumatic cataract, left eye
## 6522 Total traumatic cataract, bilateral
## 6523 Total traumatic cataract, unspecified eye
## 6524 Unspecified complicated cataract
## 6525 Cataract with neovascularization, right eye
## 6526 Cataract with neovascularization, left eye
## 6527 Cataract with neovascularization, bilateral
## 6528 Cataract with neovascularization, unspecified eye
## 6529 Cataract secondary to ocular disorders (degenerative) (inflammatory), right eye
## 6530 Cataract secondary to ocular disorders (degenerative) (inflammatory), left eye
## 6531 Cataract secondary to ocular disorders (degenerative) (inflammatory), bilateral
## 6532 Cataract secondary to ocular disorders (degenerative) (inflammatory), unspecified eye
## 6533 Glaucomatous flecks (subcapsular), right eye
## 6534 Glaucomatous flecks (subcapsular), left eye
## 6535 Glaucomatous flecks (subcapsular), bilateral
## 6536 Glaucomatous flecks (subcapsular), unspecified eye
## 6537 Drug-induced cataract, unspecified eye
## 6538 Drug-induced cataract, right eye
## 6539 Drug-induced cataract, left eye
## 6540 Drug-induced cataract, bilateral
## 6541 Unspecified secondary cataract
## 6542 Soemmering's ring, right eye
## 6543 Soemmering's ring, left eye
## 6544 Soemmering's ring, bilateral
## 6545 Soemmering's ring, unspecified eye
## 6546 Other secondary cataract, right eye
## 6547 Other secondary cataract, left eye
## 6548 Other secondary cataract, bilateral
## 6549 Other secondary cataract, unspecified eye
## 6550 Other specified cataract
## 6551 Unspecified cataract
## 6552 Aphakia, unspecified eye
## 6553 Aphakia, right eye
## 6554 Aphakia, left eye
## 6555 Aphakia, bilateral
## 6556 Unspecified dislocation of lens
## 6557 Subluxation of lens, right eye
## 6558 Subluxation of lens, left eye
## 6559 Subluxation of lens, bilateral
## 6560 Subluxation of lens, unspecified eye
## 6561 Anterior dislocation of lens, right eye
## 6562 Anterior dislocation of lens, left eye
## 6563 Anterior dislocation of lens, bilateral
## 6564 Anterior dislocation of lens, unspecified eye
## 6565 Posterior dislocation of lens, right eye
## 6566 Posterior dislocation of lens, left eye
## 6567 Posterior dislocation of lens, bilateral
## 6568 Posterior dislocation of lens, unspecified eye
## 6569 Other specified disorders of lens
## 6570 Unspecified disorder of lens
## 6571 Cataract in diseases classified elsewhere
## 6572 Unspecified focal chorioretinal inflammation, right eye
## 6573 Unspecified focal chorioretinal inflammation, left eye
## 6574 Unspecified focal chorioretinal inflammation, bilateral
## 6575 Unspecified focal chorioretinal inflammation, unspecified eye
## 6576 Focal chorioretinal inflammation, juxtapapillary, right eye
## 6577 Focal chorioretinal inflammation, juxtapapillary, left eye
## 6578 Focal chorioretinal inflammation, juxtapapillary, bilateral
## 6579 Focal chorioretinal inflammation, juxtapapillary, unspecified eye
## 6580 Focal chorioretinal inflammation of posterior pole, right eye
## 6581 Focal chorioretinal inflammation of posterior pole, left eye
## 6582 Focal chorioretinal inflammation of posterior pole, bilateral
## 6583 Focal chorioretinal inflammation of posterior pole, unspecified eye
## 6584 Focal chorioretinal inflammation, peripheral, right eye
## 6585 Focal chorioretinal inflammation, peripheral, left eye
## 6586 Focal chorioretinal inflammation, peripheral, bilateral
## 6587 Focal chorioretinal inflammation, peripheral, unspecified eye
## 6588 Focal chorioretinal inflammation, macular or paramacular, right eye
## 6589 Focal chorioretinal inflammation, macular or paramacular, left eye
## 6590 Focal chorioretinal inflammation, macular or paramacular, bilateral
## 6591 Focal chorioretinal inflammation, macular or paramacular, unspecified eye
## 6592 Unspecified disseminated chorioretinal inflammation, right eye
## 6593 Unspecified disseminated chorioretinal inflammation, left eye
## 6594 Unspecified disseminated chorioretinal inflammation, bilateral
## 6595 Unspecified disseminated chorioretinal inflammation, unspecified eye
## 6596 Disseminated chorioretinal inflammation of posterior pole, right eye
## 6597 Disseminated chorioretinal inflammation of posterior pole, left eye
## 6598 Disseminated chorioretinal inflammation of posterior pole, bilateral
## 6599 Disseminated chorioretinal inflammation of posterior pole, unspecified eye
## 6600 Disseminated chorioretinal inflammation, peripheral right eye
## 6601 Disseminated chorioretinal inflammation, peripheral, left eye
## 6602 Disseminated chorioretinal inflammation, peripheral, bilateral
## 6603 Disseminated chorioretinal inflammation, peripheral, unspecified eye
## 6604 Disseminated chorioretinal inflammation, generalized, right eye
## 6605 Disseminated chorioretinal inflammation, generalized, left eye
## 6606 Disseminated chorioretinal inflammation, generalized, bilateral
## 6607 Disseminated chorioretinal inflammation, generalized, unspecified eye
## 6608 Acute posterior multifocal placoid pigment epitheliopathy, right eye
## 6609 Acute posterior multifocal placoid pigment epitheliopathy, left eye
## 6610 Acute posterior multifocal placoid pigment epitheliopathy, bilateral
## 6611 Acute posterior multifocal placoid pigment epitheliopathy, unspecified eye
## 6612 Posterior cyclitis, unspecified eye
## 6613 Posterior cyclitis, right eye
## 6614 Posterior cyclitis, left eye
## 6615 Posterior cyclitis, bilateral
## 6616 Harada's disease, right eye
## 6617 Harada's disease, left eye
## 6618 Harada's disease, bilateral
## 6619 Harada's disease, unspecified eye
## 6620 Other chorioretinal inflammations, right eye
## 6621 Other chorioretinal inflammations, left eye
## 6622 Other chorioretinal inflammations, bilateral
## 6623 Other chorioretinal inflammations, unspecified eye
## 6624 Unspecified chorioretinal inflammation, unspecified eye
## 6625 Unspecified chorioretinal inflammation, right eye
## 6626 Unspecified chorioretinal inflammation, left eye
## 6627 Unspecified chorioretinal inflammation, bilateral
## 6628 Unspecified chorioretinal scars, right eye
## 6629 Unspecified chorioretinal scars, left eye
## 6630 Unspecified chorioretinal scars, bilateral
## 6631 Unspecified chorioretinal scars, unspecified eye
## 6632 Macula scars of posterior pole (postinflammatory) (post-traumatic), right eye
## 6633 Macula scars of posterior pole (postinflammatory) (post-traumatic), left eye
## 6634 Macula scars of posterior pole (postinflammatory) (post-traumatic), bilateral
## 6635 Macula scars of posterior pole (postinflammatory) (post-traumatic), unspecified eye
## 6636 Solar retinopathy, right eye
## 6637 Solar retinopathy, left eye
## 6638 Solar retinopathy, bilateral
## 6639 Solar retinopathy, unspecified eye
## 6640 Other chorioretinal scars, right eye
## 6641 Other chorioretinal scars, left eye
## 6642 Other chorioretinal scars, bilateral
## 6643 Other chorioretinal scars, unspecified eye
## 6644 Choroidal degeneration, unspecified, right eye
## 6645 Choroidal degeneration, unspecified, left eye
## 6646 Choroidal degeneration, unspecified, bilateral
## 6647 Choroidal degeneration, unspecified, unspecified eye
## 6648 Age-related choroidal atrophy, right eye
## 6649 Age-related choroidal atrophy, left eye
## 6650 Age-related choroidal atrophy, bilateral
## 6651 Age-related choroidal atrophy, unspecified eye
## 6652 Diffuse secondary atrophy of choroid, right eye
## 6653 Diffuse secondary atrophy of choroid, left eye
## 6654 Diffuse secondary atrophy of choroid, bilateral
## 6655 Diffuse secondary atrophy of choroid, unspecified eye
## 6656 Hereditary choroidal dystrophy, unspecified
## 6657 Choroideremia
## 6658 Choroidal dystrophy (central areolar) (generalized) (peripapillary)
## 6659 Gyrate atrophy, choroid
## 6660 Other hereditary choroidal dystrophy
## 6661 Unspecified choroidal hemorrhage, right eye
## 6662 Unspecified choroidal hemorrhage, left eye
## 6663 Unspecified choroidal hemorrhage, bilateral
## 6664 Unspecified choroidal hemorrhage, unspecified eye
## 6665 Expulsive choroidal hemorrhage, right eye
## 6666 Expulsive choroidal hemorrhage, left eye
## 6667 Expulsive choroidal hemorrhage, bilateral
## 6668 Expulsive choroidal hemorrhage, unspecified eye
## 6669 Choroidal rupture, right eye
## 6670 Choroidal rupture, left eye
## 6671 Choroidal rupture, bilateral
## 6672 Choroidal rupture, unspecified eye
## 6673 Unspecified choroidal detachment, right eye
## 6674 Unspecified choroidal detachment, left eye
## 6675 Unspecified choroidal detachment, bilateral
## 6676 Unspecified choroidal detachment, unspecified eye
## 6677 Hemorrhagic choroidal detachment, right eye
## 6678 Hemorrhagic choroidal detachment, left eye
## 6679 Hemorrhagic choroidal detachment, bilateral
## 6680 Hemorrhagic choroidal detachment, unspecified eye
## 6681 Serous choroidal detachment, right eye
## 6682 Serous choroidal detachment, left eye
## 6683 Serous choroidal detachment, bilateral
## 6684 Serous choroidal detachment, unspecified eye
## 6685 Other specified disorders of choroid
## 6686 Unspecified disorder of choroid
## 6687 Chorioretinal disorders in diseases classified elsewhere
## 6688 Unspecified retinal detachment with retinal break, right eye
## 6689 Unspecified retinal detachment with retinal break, left eye
## 6690 Unspecified retinal detachment with retinal break, bilateral
## 6691 Unspecified retinal detachment with retinal break, unspecified eye
## 6692 Retinal detachment with single break, right eye
## 6693 Retinal detachment with single break, left eye
## 6694 Retinal detachment with single break, bilateral
## 6695 Retinal detachment with single break, unspecified eye
## 6696 Retinal detachment with multiple breaks, right eye
## 6697 Retinal detachment with multiple breaks, left eye
## 6698 Retinal detachment with multiple breaks, bilateral
## 6699 Retinal detachment with multiple breaks, unspecified eye
## 6700 Retinal detachment with giant retinal tear, right eye
## 6701 Retinal detachment with giant retinal tear, left eye
## 6702 Retinal detachment with giant retinal tear, bilateral
## 6703 Retinal detachment with giant retinal tear, unspecified eye
## 6704 Retinal detachment with retinal dialysis, right eye
## 6705 Retinal detachment with retinal dialysis, left eye
## 6706 Retinal detachment with retinal dialysis, bilateral
## 6707 Retinal detachment with retinal dialysis, unspecified eye
## 6708 Total retinal detachment, right eye
## 6709 Total retinal detachment, left eye
## 6710 Total retinal detachment, bilateral
## 6711 Total retinal detachment, unspecified eye
## 6712 Unspecified retinoschisis, right eye
## 6713 Unspecified retinoschisis, left eye
## 6714 Unspecified retinoschisis, bilateral
## 6715 Unspecified retinoschisis, unspecified eye
## 6716 Cyst of ora serrata, right eye
## 6717 Cyst of ora serrata, left eye
## 6718 Cyst of ora serrata, bilateral
## 6719 Cyst of ora serrata, unspecified eye
## 6720 Parasitic cyst of retina, right eye
## 6721 Parasitic cyst of retina, left eye
## 6722 Parasitic cyst of retina, bilateral
## 6723 Parasitic cyst of retina, unspecified eye
## 6724 Other retinoschisis and retinal cysts, right eye
## 6725 Other retinoschisis and retinal cysts, left eye
## 6726 Other retinoschisis and retinal cysts, bilateral
## 6727 Other retinoschisis and retinal cysts, unspecified eye
## 6728 Serous retinal detachment, unspecified eye
## 6729 Serous retinal detachment, right eye
## 6730 Serous retinal detachment, left eye
## 6731 Serous retinal detachment, bilateral
## 6732 Unspecified retinal break, right eye
## 6733 Unspecified retinal break, left eye
## 6734 Unspecified retinal break, bilateral
## 6735 Unspecified retinal break, unspecified eye
## 6736 Horseshoe tear of retina without detachment, right eye
## 6737 Horseshoe tear of retina without detachment, left eye
## 6738 Horseshoe tear of retina without detachment, bilateral
## 6739 Horseshoe tear of retina without detachment, unspecified eye
## 6740 Round hole, right eye
## 6741 Round hole, left eye
## 6742 Round hole, bilateral
## 6743 Round hole, unspecified eye
## 6744 Multiple defects of retina without detachment, right eye
## 6745 Multiple defects of retina without detachment, left eye
## 6746 Multiple defects of retina without detachment, bilateral
## 6747 Multiple defects of retina without detachment, unspecified eye
## 6748 Traction detachment of retina, unspecified eye
## 6749 Traction detachment of retina, right eye
## 6750 Traction detachment of retina, left eye
## 6751 Traction detachment of retina, bilateral
## 6752 Other retinal detachments
## 6753 Transient retinal artery occlusion, unspecified eye
## 6754 Transient retinal artery occlusion, right eye
## 6755 Transient retinal artery occlusion, left eye
## 6756 Transient retinal artery occlusion, bilateral
## 6757 Central retinal artery occlusion, unspecified eye
## 6758 Central retinal artery occlusion, right eye
## 6759 Central retinal artery occlusion, left eye
## 6760 Central retinal artery occlusion, bilateral
## 6761 Partial retinal artery occlusion, right eye
## 6762 Partial retinal artery occlusion, left eye
## 6763 Partial retinal artery occlusion, bilateral
## 6764 Partial retinal artery occlusion, unspecified eye
## 6765 Retinal artery branch occlusion, right eye
## 6766 Retinal artery branch occlusion, left eye
## 6767 Retinal artery branch occlusion, bilateral
## 6768 Retinal artery branch occlusion, unspecified eye
## 6769 Central retinal vein occlusion, right eye, with macular edema
## 6770 Central retinal vein occlusion, right eye, with retinal neovascularization
## 6771 Central retinal vein occlusion, right eye, stable
## 6772 Central retinal vein occlusion, left eye, with macular edema
## 6773 Central retinal vein occlusion, left eye, with retinal neovascularization
## 6774 Central retinal vein occlusion, left eye, stable
## 6775 Central retinal vein occlusion, bilateral, with macular edema
## 6776 Central retinal vein occlusion, bilateral, with retinal neovascularization
## 6777 Central retinal vein occlusion, bilateral, stable
## 6778 Central retinal vein occlusion, unspecified eye, with macular edema
## 6779 Central retinal vein occlusion, unspecified eye, with retinal neovascularization
## 6780 Central retinal vein occlusion, unspecified eye, stable
## 6781 Venous engorgement, right eye
## 6782 Venous engorgement, left eye
## 6783 Venous engorgement, bilateral
## 6784 Venous engorgement, unspecified eye
## 6785 Tributary (branch) retinal vein occlusion, right eye, with macular edema
## 6786 Tributary (branch) retinal vein occlusion, right eye, with retinal neovascularization
## 6787 Tributary (branch) retinal vein occlusion, right eye, stable
## 6788 Tributary (branch) retinal vein occlusion, left eye, with macular edema
## 6789 Tributary (branch) retinal vein occlusion, left eye, with retinal neovascularization
## 6790 Tributary (branch) retinal vein occlusion, left eye, stable
## 6791 Tributary (branch) retinal vein occlusion, bilateral, with macular edema
## 6792 Tributary (branch) retinal vein occlusion, bilateral, with retinal neovascularization
## 6793 Tributary (branch) retinal vein occlusion, bilateral, stable
## 6794 Tributary (branch) retinal vein occlusion, unspecified eye, with macular edema
## 6795 Tributary (branch) retinal vein occlusion, unspecified eye, with retinal neovascularization
## 6796 Tributary (branch) retinal vein occlusion, unspecified eye, stable
## 6797 Unspecified retinal vascular occlusion
## 6798 Unspecified background retinopathy
## 6799 Changes in retinal vascular appearance, right eye
## 6800 Changes in retinal vascular appearance, left eye
## 6801 Changes in retinal vascular appearance, bilateral
## 6802 Changes in retinal vascular appearance, unspecified eye
## 6803 Exudative retinopathy, right eye
## 6804 Exudative retinopathy, left eye
## 6805 Exudative retinopathy, bilateral
## 6806 Exudative retinopathy, unspecified eye
## 6807 Hypertensive retinopathy, right eye
## 6808 Hypertensive retinopathy, left eye
## 6809 Hypertensive retinopathy, bilateral
## 6810 Hypertensive retinopathy, unspecified eye
## 6811 Retinal micro-aneurysms, unspecified, right eye
## 6812 Retinal micro-aneurysms, unspecified, left eye
## 6813 Retinal micro-aneurysms, unspecified, bilateral
## 6814 Retinal micro-aneurysms, unspecified, unspecified eye
## 6815 Retinal neovascularization, unspecified, right eye
## 6816 Retinal neovascularization, unspecified, left eye
## 6817 Retinal neovascularization, unspecified, bilateral
## 6818 Retinal neovascularization, unspecified, unspecified eye
## 6819 Retinal vasculitis, right eye
## 6820 Retinal vasculitis, left eye
## 6821 Retinal vasculitis, bilateral
## 6822 Retinal vasculitis, unspecified eye
## 6823 Retinal telangiectasis, right eye
## 6824 Retinal telangiectasis, left eye
## 6825 Retinal telangiectasis, bilateral
## 6826 Retinal telangiectasis, unspecified eye
## 6827 Other intraretinal microvascular abnormalities
## 6828 Retinopathy of prematurity, unspecified, right eye
## 6829 Retinopathy of prematurity, unspecified, left eye
## 6830 Retinopathy of prematurity, unspecified, bilateral
## 6831 Retinopathy of prematurity, unspecified, unspecified eye
## 6832 Retinopathy of prematurity, stage 0, right eye
## 6833 Retinopathy of prematurity, stage 0, left eye
## 6834 Retinopathy of prematurity, stage 0, bilateral
## 6835 Retinopathy of prematurity, stage 0, unspecified eye
## 6836 Retinopathy of prematurity, stage 1, right eye
## 6837 Retinopathy of prematurity, stage 1, left eye
## 6838 Retinopathy of prematurity, stage 1, bilateral
## 6839 Retinopathy of prematurity, stage 1, unspecified eye
## 6840 Retinopathy of prematurity, stage 2, right eye
## 6841 Retinopathy of prematurity, stage 2, left eye
## 6842 Retinopathy of prematurity, stage 2, bilateral
## 6843 Retinopathy of prematurity, stage 2, unspecified eye
## 6844 Retinopathy of prematurity, stage 3, right eye
## 6845 Retinopathy of prematurity, stage 3, left eye
## 6846 Retinopathy of prematurity, stage 3, bilateral
## 6847 Retinopathy of prematurity, stage 3, unspecified eye
## 6848 Retinopathy of prematurity, stage 4, right eye
## 6849 Retinopathy of prematurity, stage 4, left eye
## 6850 Retinopathy of prematurity, stage 4, bilateral
## 6851 Retinopathy of prematurity, stage 4, unspecified eye
## 6852 Retinopathy of prematurity, stage 5, right eye
## 6853 Retinopathy of prematurity, stage 5, left eye
## 6854 Retinopathy of prematurity, stage 5, bilateral
## 6855 Retinopathy of prematurity, stage 5, unspecified eye
## 6856 Retrolental fibroplasia, right eye
## 6857 Retrolental fibroplasia, left eye
## 6858 Retrolental fibroplasia, bilateral
## 6859 Retrolental fibroplasia, unspecified eye
## 6860 Other non-diabetic proliferative retinopathy, unspecified eye
## 6861 Other non-diabetic proliferative retinopathy, right eye
## 6862 Other non-diabetic proliferative retinopathy, left eye
## 6863 Other non-diabetic proliferative retinopathy, bilateral
## 6864 Unspecified macular degeneration
## 6865 Nonexudative age-related macular degeneration, right eye, stage unspecified
## 6866 Nonexudative age-related macular degeneration, right eye, early dry stage
## 6867 Nonexudative age-related macular degeneration, right eye, intermediate dry stage
## 6868 Nonexudative age-related macular degeneration, right eye, advanced atrophic without subfoveal involvement
## 6869 Nonexudative age-related macular degeneration, right eye, advanced atrophic with subfoveal involvement
## 6870 Nonexudative age-related macular degeneration, left eye, stage unspecified
## 6871 Nonexudative age-related macular degeneration, left eye, early dry stage
## 6872 Nonexudative age-related macular degeneration, left eye, intermediate dry stage
## 6873 Nonexudative age-related macular degeneration, left eye, advanced atrophic without subfoveal involvement
## 6874 Nonexudative age-related macular degeneration, left eye, advanced atrophic with subfoveal involvement
## 6875 Nonexudative age-related macular degeneration, bilateral, stage unspecified
## 6876 Nonexudative age-related macular degeneration, bilateral, early dry stage
## 6877 Nonexudative age-related macular degeneration, bilateral, intermediate dry stage
## 6878 Nonexudative age-related macular degeneration, bilateral, advanced atrophic without subfoveal involvement
## 6879 Nonexudative age-related macular degeneration, bilateral, advanced atrophic with subfoveal involvement
## 6880 Nonexudative age-related macular degeneration, unspecified eye, stage unspecified
## 6881 Nonexudative age-related macular degeneration, unspecified eye, early dry stage
## 6882 Nonexudative age-related macular degeneration, unspecified eye, intermediate dry stage
## 6883 Nonexudative age-related macular degeneration, unspecified eye, advanced atrophic without subfoveal involvement
## 6884 Nonexudative age-related macular degeneration, unspecified eye, advanced atrophic with subfoveal involvement
## 6885 Exudative age-related macular degeneration, right eye, stage unspecified
## 6886 Exudative age-related macular degeneration, right eye, with active choroidal neovascularization
## 6887 Exudative age-related macular degeneration, right eye, with inactive choroidal neovascularization
## 6888 Exudative age-related macular degeneration, right eye, with inactive scar
## 6889 Exudative age-related macular degeneration, left eye, stage unspecified
## 6890 Exudative age-related macular degeneration, left eye, with active choroidal neovascularization
## 6891 Exudative age-related macular degeneration, left eye, with inactive choroidal neovascularization
## 6892 Exudative age-related macular degeneration, left eye, with inactive scar
## 6893 Exudative age-related macular degeneration, bilateral, stage unspecified
## 6894 Exudative age-related macular degeneration, bilateral, with active choroidal neovascularization
## 6895 Exudative age-related macular degeneration, bilateral, with inactive choroidal neovascularization
## 6896 Exudative age-related macular degeneration, bilateral, with inactive scar
## 6897 Exudative age-related macular degeneration, unspecified eye, stage unspecified
## 6898 Exudative age-related macular degeneration, unspecified eye, with active choroidal neovascularization
## 6899 Exudative age-related macular degeneration, unspecified eye, with inactive choroidal neovascularization
## 6900 Exudative age-related macular degeneration, unspecified eye, with inactive scar
## 6901 Angioid streaks of macula
## 6902 Macular cyst, hole, or pseudohole, right eye
## 6903 Macular cyst, hole, or pseudohole, left eye
## 6904 Macular cyst, hole, or pseudohole, bilateral
## 6905 Macular cyst, hole, or pseudohole, unspecified eye
## 6906 Cystoid macular degeneration, right eye
## 6907 Cystoid macular degeneration, left eye
## 6908 Cystoid macular degeneration, bilateral
## 6909 Cystoid macular degeneration, unspecified eye
## 6910 Drusen (degenerative) of macula, right eye
## 6911 Drusen (degenerative) of macula, left eye
## 6912 Drusen (degenerative) of macula, bilateral
## 6913 Drusen (degenerative) of macula, unspecified eye
## 6914 Puckering of macula, right eye
## 6915 Puckering of macula, left eye
## 6916 Puckering of macula, bilateral
## 6917 Puckering of macula, unspecified eye
## 6918 Toxic maculopathy, right eye
## 6919 Toxic maculopathy, left eye
## 6920 Toxic maculopathy, bilateral
## 6921 Toxic maculopathy, unspecified eye
## 6922 Unspecified peripheral retinal degeneration
## 6923 Lattice degeneration of retina, right eye
## 6924 Lattice degeneration of retina, left eye
## 6925 Lattice degeneration of retina, bilateral
## 6926 Lattice degeneration of retina, unspecified eye
## 6927 Microcystoid degeneration of retina, right eye
## 6928 Microcystoid degeneration of retina, left eye
## 6929 Microcystoid degeneration of retina, bilateral
## 6930 Microcystoid degeneration of retina, unspecified eye
## 6931 Paving stone degeneration of retina, right eye
## 6932 Paving stone degeneration of retina, left eye
## 6933 Paving stone degeneration of retina, bilateral
## 6934 Paving stone degeneration of retina, unspecified eye
## 6935 Age-related reticular degeneration of retina, right eye
## 6936 Age-related reticular degeneration of retina, left eye
## 6937 Age-related reticular degeneration of retina, bilateral
## 6938 Age-related reticular degeneration of retina, unspecified eye
## 6939 Secondary pigmentary degeneration, right eye
## 6940 Secondary pigmentary degeneration, left eye
## 6941 Secondary pigmentary degeneration, bilateral
## 6942 Secondary pigmentary degeneration, unspecified eye
## 6943 Secondary vitreoretinal degeneration, right eye
## 6944 Secondary vitreoretinal degeneration, left eye
## 6945 Secondary vitreoretinal degeneration, bilateral
## 6946 Secondary vitreoretinal degeneration, unspecified eye
## 6947 Unspecified hereditary retinal dystrophy
## 6948 Vitreoretinal dystrophy
## 6949 Pigmentary retinal dystrophy
## 6950 Other dystrophies primarily involving the sensory retina
## 6951 Dystrophies primarily involving the retinal pigment epithelium
## 6952 Retinal hemorrhage, unspecified eye
## 6953 Retinal hemorrhage, right eye
## 6954 Retinal hemorrhage, left eye
## 6955 Retinal hemorrhage, bilateral
## 6956 Unspecified separation of retinal layers
## 6957 Central serous chorioretinopathy, right eye
## 6958 Central serous chorioretinopathy, left eye
## 6959 Central serous chorioretinopathy, bilateral
## 6960 Central serous chorioretinopathy, unspecified eye
## 6961 Serous detachment of retinal pigment epithelium, right eye
## 6962 Serous detachment of retinal pigment epithelium, left eye
## 6963 Serous detachment of retinal pigment epithelium, bilateral
## 6964 Serous detachment of retinal pigment epithelium, unspecified eye
## 6965 Hemorrhagic detachment of retinal pigment epithelium, right eye
## 6966 Hemorrhagic detachment of retinal pigment epithelium, left eye
## 6967 Hemorrhagic detachment of retinal pigment epithelium, bilateral
## 6968 Hemorrhagic detachment of retinal pigment epithelium, unspecified eye
## 6969 Retinal edema
## 6970 Retinal ischemia
## 6971 Other specified retinal disorders
## 6972 Unspecified retinal disorder
## 6973 Retinal disorders in diseases classified elsewhere
## 6974 Preglaucoma, unspecified, right eye
## 6975 Preglaucoma, unspecified, left eye
## 6976 Preglaucoma, unspecified, bilateral
## 6977 Preglaucoma, unspecified, unspecified eye
## 6978 Open angle with borderline findings, low risk, right eye
## 6979 Open angle with borderline findings, low risk, left eye
## 6980 Open angle with borderline findings, low risk, bilateral
## 6981 Open angle with borderline findings, low risk, unspecified eye
## 6982 Open angle with borderline findings, high risk, right eye
## 6983 Open angle with borderline findings, high risk, left eye
## 6984 Open angle with borderline findings, high risk, bilateral
## 6985 Open angle with borderline findings, high risk, unspecified eye
## 6986 Anatomical narrow angle, right eye
## 6987 Anatomical narrow angle, left eye
## 6988 Anatomical narrow angle, bilateral
## 6989 Anatomical narrow angle, unspecified eye
## 6990 Steroid responder, right eye
## 6991 Steroid responder, left eye
## 6992 Steroid responder, bilateral
## 6993 Steroid responder, unspecified eye
## 6994 Ocular hypertension, right eye
## 6995 Ocular hypertension, left eye
## 6996 Ocular hypertension, bilateral
## 6997 Ocular hypertension, unspecified eye
## 6998 Primary angle closure without glaucoma damage, right eye
## 6999 Primary angle closure without glaucoma damage, left eye
## 7000 Primary angle closure without glaucoma damage, bilateral
## 7001 Primary angle closure without glaucoma damage, unspecified eye
## 7002 Unspecified open-angle glaucoma, stage unspecified
## 7003 Unspecified open-angle glaucoma, mild stage
## 7004 Unspecified open-angle glaucoma, moderate stage
## 7005 Unspecified open-angle glaucoma, severe stage
## 7006 Unspecified open-angle glaucoma, indeterminate stage
## 7007 Primary open-angle glaucoma, right eye, stage unspecified
## 7008 Primary open-angle glaucoma, right eye, mild stage
## 7009 Primary open-angle glaucoma, right eye, moderate stage
## 7010 Primary open-angle glaucoma, right eye, severe stage
## 7011 Primary open-angle glaucoma, right eye, indeterminate stage
## 7012 Primary open-angle glaucoma, left eye, stage unspecified
## 7013 Primary open-angle glaucoma, left eye, mild stage
## 7014 Primary open-angle glaucoma, left eye, moderate stage
## 7015 Primary open-angle glaucoma, left eye, severe stage
## 7016 Primary open-angle glaucoma, left eye, indeterminate stage
## 7017 Primary open-angle glaucoma, bilateral, stage unspecified
## 7018 Primary open-angle glaucoma, bilateral, mild stage
## 7019 Primary open-angle glaucoma, bilateral, moderate stage
## 7020 Primary open-angle glaucoma, bilateral, severe stage
## 7021 Primary open-angle glaucoma, bilateral, indeterminate stage
## 7022 Primary open-angle glaucoma, unspecified eye, stage unspecified
## 7023 Primary open-angle glaucoma, unspecified eye, mild stage
## 7024 Primary open-angle glaucoma, unspecified eye, moderate stage
## 7025 Primary open-angle glaucoma, unspecified eye, severe stage
## 7026 Primary open-angle glaucoma, unspecified eye, indeterminate stage
## 7027 Low-tension glaucoma, right eye, stage unspecified
## 7028 Low-tension glaucoma, right eye, mild stage
## 7029 Low-tension glaucoma, right eye, moderate stage
## 7030 Low-tension glaucoma, right eye, severe stage
## 7031 Low-tension glaucoma, right eye, indeterminate stage
## 7032 Low-tension glaucoma, left eye, stage unspecified
## 7033 Low-tension glaucoma, left eye, mild stage
## 7034 Low-tension glaucoma, left eye, moderate stage
## 7035 Low-tension glaucoma, left eye, severe stage
## 7036 Low-tension glaucoma, left eye, indeterminate stage
## 7037 Low-tension glaucoma, bilateral, stage unspecified
## 7038 Low-tension glaucoma, bilateral, mild stage
## 7039 Low-tension glaucoma, bilateral, moderate stage
## 7040 Low-tension glaucoma, bilateral, severe stage
## 7041 Low-tension glaucoma, bilateral, indeterminate stage
## 7042 Low-tension glaucoma, unspecified eye, stage unspecified
## 7043 Low-tension glaucoma, unspecified eye, mild stage
## 7044 Low-tension glaucoma, unspecified eye, moderate stage
## 7045 Low-tension glaucoma, unspecified eye, severe stage
## 7046 Low-tension glaucoma, unspecified eye, indeterminate stage
## 7047 Pigmentary glaucoma, right eye, stage unspecified
## 7048 Pigmentary glaucoma, right eye, mild stage
## 7049 Pigmentary glaucoma, right eye, moderate stage
## 7050 Pigmentary glaucoma, right eye, severe stage
## 7051 Pigmentary glaucoma, right eye, indeterminate stage
## 7052 Pigmentary glaucoma, left eye, stage unspecified
## 7053 Pigmentary glaucoma, left eye, mild stage
## 7054 Pigmentary glaucoma, left eye, moderate stage
## 7055 Pigmentary glaucoma, left eye, severe stage
## 7056 Pigmentary glaucoma, left eye, indeterminate stage
## 7057 Pigmentary glaucoma, bilateral, stage unspecified
## 7058 Pigmentary glaucoma, bilateral, mild stage
## 7059 Pigmentary glaucoma, bilateral, moderate stage
## 7060 Pigmentary glaucoma, bilateral, severe stage
## 7061 Pigmentary glaucoma, bilateral, indeterminate stage
## 7062 Pigmentary glaucoma, unspecified eye, stage unspecified
## 7063 Pigmentary glaucoma, unspecified eye, mild stage
## 7064 Pigmentary glaucoma, unspecified eye, moderate stage
## 7065 Pigmentary glaucoma, unspecified eye, severe stage
## 7066 Pigmentary glaucoma, unspecified eye, indeterminate stage
## 7067 Capsular glaucoma with pseudoexfoliation of lens, right eye, stage unspecified
## 7068 Capsular glaucoma with pseudoexfoliation of lens, right eye, mild stage
## 7069 Capsular glaucoma with pseudoexfoliation of lens, right eye, moderate stage
## 7070 Capsular glaucoma with pseudoexfoliation of lens, right eye, severe stage
## 7071 Capsular glaucoma with pseudoexfoliation of lens, right eye, indeterminate stage
## 7072 Capsular glaucoma with pseudoexfoliation of lens, left eye, stage unspecified
## 7073 Capsular glaucoma with pseudoexfoliation of lens, left eye, mild stage
## 7074 Capsular glaucoma with pseudoexfoliation of lens, left eye, moderate stage
## 7075 Capsular glaucoma with pseudoexfoliation of lens, left eye, severe stage
## 7076 Capsular glaucoma with pseudoexfoliation of lens, left eye, indeterminate stage
## 7077 Capsular glaucoma with pseudoexfoliation of lens, bilateral, stage unspecified
## 7078 Capsular glaucoma with pseudoexfoliation of lens, bilateral, mild stage
## 7079 Capsular glaucoma with pseudoexfoliation of lens, bilateral, moderate stage
## 7080 Capsular glaucoma with pseudoexfoliation of lens, bilateral, severe stage
## 7081 Capsular glaucoma with pseudoexfoliation of lens, bilateral, indeterminate stage
## 7082 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, stage unspecified
## 7083 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, mild stage
## 7084 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, moderate stage
## 7085 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, severe stage
## 7086 Capsular glaucoma with pseudoexfoliation of lens, unspecified eye, indeterminate stage
## 7087 Residual stage of open-angle glaucoma, right eye
## 7088 Residual stage of open-angle glaucoma, left eye
## 7089 Residual stage of open-angle glaucoma, bilateral
## 7090 Residual stage of open-angle glaucoma, unspecified eye
## 7091 Unspecified primary angle-closure glaucoma, stage unspecified
## 7092 Unspecified primary angle-closure glaucoma, mild stage
## 7093 Unspecified primary angle-closure glaucoma, moderate stage
## 7094 Unspecified primary angle-closure glaucoma, severe stage
## 7095 Unspecified primary angle-closure glaucoma, indeterminate stage
## 7096 Acute angle-closure glaucoma, right eye
## 7097 Acute angle-closure glaucoma, left eye
## 7098 Acute angle-closure glaucoma, bilateral
## 7099 Acute angle-closure glaucoma, unspecified eye
## 7100 Chronic angle-closure glaucoma, right eye, stage unspecified
## 7101 Chronic angle-closure glaucoma, right eye, mild stage
## 7102 Chronic angle-closure glaucoma, right eye, moderate stage
## 7103 Chronic angle-closure glaucoma, right eye, severe stage
## 7104 Chronic angle-closure glaucoma, right eye, indeterminate stage
## 7105 Chronic angle-closure glaucoma, left eye, stage unspecified
## 7106 Chronic angle-closure glaucoma, left eye, mild stage
## 7107 Chronic angle-closure glaucoma, left eye, moderate stage
## 7108 Chronic angle-closure glaucoma, left eye, severe stage
## 7109 Chronic angle-closure glaucoma, left eye, indeterminate stage
## 7110 Chronic angle-closure glaucoma, bilateral, stage unspecified
## 7111 Chronic angle-closure glaucoma, bilateral, mild stage
## 7112 Chronic angle-closure glaucoma, bilateral, moderate stage
## 7113 Chronic angle-closure glaucoma, bilateral, severe stage
## 7114 Chronic angle-closure glaucoma, bilateral, indeterminate stage
## 7115 Chronic angle-closure glaucoma, unspecified eye, stage unspecified
## 7116 Chronic angle-closure glaucoma, unspecified eye, mild stage
## 7117 Chronic angle-closure glaucoma, unspecified eye, moderate stage
## 7118 Chronic angle-closure glaucoma, unspecified eye, severe stage
## 7119 Chronic angle-closure glaucoma, unspecified eye, indeterminate stage
## 7120 Intermittent angle-closure glaucoma, right eye
## 7121 Intermittent angle-closure glaucoma, left eye
## 7122 Intermittent angle-closure glaucoma, bilateral
## 7123 Intermittent angle-closure glaucoma, unspecified eye
## 7124 Residual stage of angle-closure glaucoma, right eye
## 7125 Residual stage of angle-closure glaucoma, left eye
## 7126 Residual stage of angle-closure glaucoma, bilateral
## 7127 Residual stage of angle-closure glaucoma, unspecified eye
## 7128 Glaucoma secondary to eye trauma, unspecified eye, stage unspecified
## 7129 Glaucoma secondary to eye trauma, unspecified eye, mild stage
## 7130 Glaucoma secondary to eye trauma, unspecified eye, moderate stage
## 7131 Glaucoma secondary to eye trauma, unspecified eye, severe stage
## 7132 Glaucoma secondary to eye trauma, unspecified eye, indeterminate stage
## 7133 Glaucoma secondary to eye trauma, right eye, stage unspecified
## 7134 Glaucoma secondary to eye trauma, right eye, mild stage
## 7135 Glaucoma secondary to eye trauma, right eye, moderate stage
## 7136 Glaucoma secondary to eye trauma, right eye, severe stage
## 7137 Glaucoma secondary to eye trauma, right eye, indeterminate stage
## 7138 Glaucoma secondary to eye trauma, left eye, stage unspecified
## 7139 Glaucoma secondary to eye trauma, left eye, mild stage
## 7140 Glaucoma secondary to eye trauma, left eye, moderate stage
## 7141 Glaucoma secondary to eye trauma, left eye, severe stage
## 7142 Glaucoma secondary to eye trauma, left eye, indeterminate stage
## 7143 Glaucoma secondary to eye trauma, bilateral, stage unspecified
## 7144 Glaucoma secondary to eye trauma, bilateral, mild stage
## 7145 Glaucoma secondary to eye trauma, bilateral, moderate stage
## 7146 Glaucoma secondary to eye trauma, bilateral, severe stage
## 7147 Glaucoma secondary to eye trauma, bilateral, indeterminate stage
## 7148 Glaucoma secondary to eye inflammation, unspecified eye, stage unspecified
## 7149 Glaucoma secondary to eye inflammation, unspecified eye, mild stage
## 7150 Glaucoma secondary to eye inflammation, unspecified eye, moderate stage
## 7151 Glaucoma secondary to eye inflammation, unspecified eye, severe stage
## 7152 Glaucoma secondary to eye inflammation, unspecified eye, indeterminate stage
## 7153 Glaucoma secondary to eye inflammation, right eye, stage unspecified
## 7154 Glaucoma secondary to eye inflammation, right eye, mild stage
## 7155 Glaucoma secondary to eye inflammation, right eye, moderate stage
## 7156 Glaucoma secondary to eye inflammation, right eye, severe stage
## 7157 Glaucoma secondary to eye inflammation, right eye, indeterminate stage
## 7158 Glaucoma secondary to eye inflammation, left eye, stage unspecified
## 7159 Glaucoma secondary to eye inflammation, left eye, mild stage
## 7160 Glaucoma secondary to eye inflammation, left eye, moderate stage
## 7161 Glaucoma secondary to eye inflammation, left eye, severe stage
## 7162 Glaucoma secondary to eye inflammation, left eye, indeterminate stage
## 7163 Glaucoma secondary to eye inflammation, bilateral, stage unspecified
## 7164 Glaucoma secondary to eye inflammation, bilateral, mild stage
## 7165 Glaucoma secondary to eye inflammation, bilateral, moderate stage
## 7166 Glaucoma secondary to eye inflammation, bilateral, severe stage
## 7167 Glaucoma secondary to eye inflammation, bilateral, indeterminate stage
## 7168 Glaucoma secondary to other eye disorders, unspecified eye, stage unspecified
## 7169 Glaucoma secondary to other eye disorders, unspecified eye, mild stage
## 7170 Glaucoma secondary to other eye disorders, unspecified eye, moderate stage
## 7171 Glaucoma secondary to other eye disorders, unspecified eye, severe stage
## 7172 Glaucoma secondary to other eye disorders, unspecified eye, indeterminate stage
## 7173 Glaucoma secondary to other eye disorders, right eye, stage unspecified
## 7174 Glaucoma secondary to other eye disorders, right eye, mild stage
## 7175 Glaucoma secondary to other eye disorders, right eye, moderate stage
## 7176 Glaucoma secondary to other eye disorders, right eye, severe stage
## 7177 Glaucoma secondary to other eye disorders, right eye, indeterminate stage
## 7178 Glaucoma secondary to other eye disorders, left eye, stage unspecified
## 7179 Glaucoma secondary to other eye disorders, left eye, mild stage
## 7180 Glaucoma secondary to other eye disorders, left eye, moderate stage
## 7181 Glaucoma secondary to other eye disorders, left eye, severe stage
## 7182 Glaucoma secondary to other eye disorders, left eye, indeterminate stage
## 7183 Glaucoma secondary to other eye disorders, bilateral, stage unspecified
## 7184 Glaucoma secondary to other eye disorders, bilateral, mild stage
## 7185 Glaucoma secondary to other eye disorders, bilateral, moderate stage
## 7186 Glaucoma secondary to other eye disorders, bilateral, severe stage
## 7187 Glaucoma secondary to other eye disorders, bilateral, indeterminate stage
## 7188 Glaucoma secondary to drugs, unspecified eye, stage unspecified
## 7189 Glaucoma secondary to drugs, unspecified eye, mild stage
## 7190 Glaucoma secondary to drugs, unspecified eye, moderate stage
## 7191 Glaucoma secondary to drugs, unspecified eye, severe stage
## 7192 Glaucoma secondary to drugs, unspecified eye, indeterminate stage
## 7193 Glaucoma secondary to drugs, right eye, stage unspecified
## 7194 Glaucoma secondary to drugs, right eye, mild stage
## 7195 Glaucoma secondary to drugs, right eye, moderate stage
## 7196 Glaucoma secondary to drugs, right eye, severe stage
## 7197 Glaucoma secondary to drugs, right eye, indeterminate stage
## 7198 Glaucoma secondary to drugs, left eye, stage unspecified
## 7199 Glaucoma secondary to drugs, left eye, mild stage
## 7200 Glaucoma secondary to drugs, left eye, moderate stage
## 7201 Glaucoma secondary to drugs, left eye, severe stage
## 7202 Glaucoma secondary to drugs, left eye, indeterminate stage
## 7203 Glaucoma secondary to drugs, bilateral, stage unspecified
## 7204 Glaucoma secondary to drugs, bilateral, mild stage
## 7205 Glaucoma secondary to drugs, bilateral, moderate stage
## 7206 Glaucoma secondary to drugs, bilateral, severe stage
## 7207 Glaucoma secondary to drugs, bilateral, indeterminate stage
## 7208 Glaucoma with increased episcleral venous pressure, right eye
## 7209 Glaucoma with increased episcleral venous pressure, left eye
## 7210 Glaucoma with increased episcleral venous pressure, bilateral
## 7211 Glaucoma with increased episcleral venous pressure, unspecified eye
## 7212 Hypersecretion glaucoma, right eye
## 7213 Hypersecretion glaucoma, left eye
## 7214 Hypersecretion glaucoma, bilateral
## 7215 Hypersecretion glaucoma, unspecified eye
## 7216 Aqueous misdirection, right eye
## 7217 Aqueous misdirection, left eye
## 7218 Aqueous misdirection, bilateral
## 7219 Aqueous misdirection, unspecified eye
## 7220 Other specified glaucoma
## 7221 Unspecified glaucoma
## 7222 Glaucoma in diseases classified elsewhere
## 7223 Vitreous prolapse, unspecified eye
## 7224 Vitreous prolapse, right eye
## 7225 Vitreous prolapse, left eye
## 7226 Vitreous prolapse, bilateral
## 7227 Vitreous hemorrhage, unspecified eye
## 7228 Vitreous hemorrhage, right eye
## 7229 Vitreous hemorrhage, left eye
## 7230 Vitreous hemorrhage, bilateral
## 7231 Crystalline deposits in vitreous body, unspecified eye
## 7232 Crystalline deposits in vitreous body, right eye
## 7233 Crystalline deposits in vitreous body, left eye
## 7234 Crystalline deposits in vitreous body, bilateral
## 7235 Vitreous membranes and strands, right eye
## 7236 Vitreous membranes and strands, left eye
## 7237 Vitreous membranes and strands, bilateral
## 7238 Vitreous membranes and strands, unspecified eye
## 7239 Other vitreous opacities, right eye
## 7240 Other vitreous opacities, left eye
## 7241 Other vitreous opacities, bilateral
## 7242 Other vitreous opacities, unspecified eye
## 7243 Vitreous degeneration, right eye
## 7244 Vitreous degeneration, left eye
## 7245 Vitreous degeneration, bilateral
## 7246 Vitreous degeneration, unspecified eye
## 7247 Vitreomacular adhesion, right eye
## 7248 Vitreomacular adhesion, left eye
## 7249 Vitreomacular adhesion, bilateral
## 7250 Vitreomacular adhesion, unspecified eye
## 7251 Other disorders of vitreous body
## 7252 Unspecified disorder of vitreous body
## 7253 Unspecified purulent endophthalmitis, right eye
## 7254 Unspecified purulent endophthalmitis, left eye
## 7255 Unspecified purulent endophthalmitis, bilateral
## 7256 Unspecified purulent endophthalmitis, unspecified eye
## 7257 Panophthalmitis (acute), right eye
## 7258 Panophthalmitis (acute), left eye
## 7259 Panophthalmitis (acute), bilateral
## 7260 Panophthalmitis (acute), unspecified eye
## 7261 Vitreous abscess (chronic), right eye
## 7262 Vitreous abscess (chronic), left eye
## 7263 Vitreous abscess (chronic), bilateral
## 7264 Vitreous abscess (chronic), unspecified eye
## 7265 Panuveitis, right eye
## 7266 Panuveitis, left eye
## 7267 Panuveitis, bilateral
## 7268 Panuveitis, unspecified eye
## 7269 Parasitic endophthalmitis, unspecified, right eye
## 7270 Parasitic endophthalmitis, unspecified, left eye
## 7271 Parasitic endophthalmitis, unspecified, bilateral
## 7272 Parasitic endophthalmitis, unspecified, unspecified eye
## 7273 Sympathetic uveitis, right eye
## 7274 Sympathetic uveitis, left eye
## 7275 Sympathetic uveitis, bilateral
## 7276 Sympathetic uveitis, unspecified eye
## 7277 Other endophthalmitis
## 7278 Degenerative myopia, unspecified eye
## 7279 Degenerative myopia, right eye
## 7280 Degenerative myopia, left eye
## 7281 Degenerative myopia, bilateral
## 7282 Degenerative myopia with choroidal neovascularization, right eye
## 7283 Degenerative myopia with choroidal neovascularization, left eye
## 7284 Degenerative myopia with choroidal neovascularization, bilateral eye
## 7285 Degenerative myopia with choroidal neovascularization, unspecified eye
## 7286 Degenerative myopia with macular hole, right eye
## 7287 Degenerative myopia with macular hole, left eye
## 7288 Degenerative myopia with macular hole, bilateral eye
## 7289 Degenerative myopia with macular hole, unspecified eye
## 7290 Degenerative myopia with retinal detachment, right eye
## 7291 Degenerative myopia with retinal detachment, left eye
## 7292 Degenerative myopia with retinal detachment, bilateral eye
## 7293 Degenerative myopia with retinal detachment, unspecified eye
## 7294 Degenerative myopia with foveoschisis, right eye
## 7295 Degenerative myopia with foveoschisis, left eye
## 7296 Degenerative myopia with foveoschisis, bilateral eye
## 7297 Degenerative myopia with foveoschisis, unspecified eye
## 7298 Degenerative myopia with other maculopathy, right eye
## 7299 Degenerative myopia with other maculopathy, left eye
## 7300 Degenerative myopia with other maculopathy, bilateral eye
## 7301 Degenerative myopia with other maculopathy, unspecified eye
## 7302 Unspecified degenerative disorder of globe
## 7303 Chalcosis, right eye
## 7304 Chalcosis, left eye
## 7305 Chalcosis, bilateral
## 7306 Chalcosis, unspecified eye
## 7307 Siderosis of eye, right eye
## 7308 Siderosis of eye, left eye
## 7309 Siderosis of eye, bilateral
## 7310 Siderosis of eye, unspecified eye
## 7311 Other degenerative disorders of globe, right eye
## 7312 Other degenerative disorders of globe, left eye
## 7313 Other degenerative disorders of globe, bilateral
## 7314 Other degenerative disorders of globe, unspecified eye
## 7315 Unspecified hypotony of eye
## 7316 Flat anterior chamber hypotony of right eye
## 7317 Flat anterior chamber hypotony of left eye
## 7318 Flat anterior chamber hypotony of eye, bilateral
## 7319 Flat anterior chamber hypotony of unspecified eye
## 7320 Hypotony of right eye due to ocular fistula
## 7321 Hypotony of left eye due to ocular fistula
## 7322 Hypotony of eye due to ocular fistula, bilateral
## 7323 Hypotony of unspecified eye due to ocular fistula
## 7324 Hypotony of eye due to other ocular disorders, right eye
## 7325 Hypotony of eye due to other ocular disorders, left eye
## 7326 Hypotony of eye due to other ocular disorders, bilateral
## 7327 Hypotony of eye due to other ocular disorders, unspecified eye
## 7328 Primary hypotony of right eye
## 7329 Primary hypotony of left eye
## 7330 Primary hypotony of eye, bilateral
## 7331 Primary hypotony of unspecified eye
## 7332 Unspecified degenerated conditions of globe
## 7333 Absolute glaucoma, right eye
## 7334 Absolute glaucoma, left eye
## 7335 Absolute glaucoma, bilateral
## 7336 Absolute glaucoma, unspecified eye
## 7337 Atrophy of globe, right eye
## 7338 Atrophy of globe, left eye
## 7339 Atrophy of globe, bilateral
## 7340 Atrophy of globe, unspecified eye
## 7341 Leucocoria, right eye
## 7342 Leucocoria, left eye
## 7343 Leucocoria, bilateral
## 7344 Leucocoria, unspecified eye
## 7345 Unspecified retained (old) intraocular foreign body, magnetic, right eye
## 7346 Unspecified retained (old) intraocular foreign body, magnetic, left eye
## 7347 Unspecified retained (old) intraocular foreign body, magnetic, bilateral
## 7348 Unspecified retained (old) intraocular foreign body, magnetic, unspecified eye
## 7349 Retained (old) magnetic foreign body in anterior chamber, right eye
## 7350 Retained (old) magnetic foreign body in anterior chamber, left eye
## 7351 Retained (old) magnetic foreign body in anterior chamber, bilateral
## 7352 Retained (old) magnetic foreign body in anterior chamber, unspecified eye
## 7353 Retained (old) magnetic foreign body in iris or ciliary body, right eye
## 7354 Retained (old) magnetic foreign body in iris or ciliary body, left eye
## 7355 Retained (old) magnetic foreign body in iris or ciliary body, bilateral
## 7356 Retained (old) magnetic foreign body in iris or ciliary body, unspecified eye
## 7357 Retained (old) magnetic foreign body in lens, right eye
## 7358 Retained (old) magnetic foreign body in lens, left eye
## 7359 Retained (old) magnetic foreign body in lens, bilateral
## 7360 Retained (old) magnetic foreign body in lens, unspecified eye
## 7361 Retained (old) magnetic foreign body in posterior wall of globe, right eye
## 7362 Retained (old) magnetic foreign body in posterior wall of globe, left eye
## 7363 Retained (old) magnetic foreign body in posterior wall of globe, bilateral
## 7364 Retained (old) magnetic foreign body in posterior wall of globe, unspecified eye
## 7365 Retained (old) magnetic foreign body in vitreous body, right eye
## 7366 Retained (old) magnetic foreign body in vitreous body, left eye
## 7367 Retained (old) magnetic foreign body in vitreous body, bilateral
## 7368 Retained (old) magnetic foreign body in vitreous body, unspecified eye
## 7369 Retained (old) intraocular foreign body, magnetic, in other or multiple sites, right eye
## 7370 Retained (old) intraocular foreign body, magnetic, in other or multiple sites, left eye
## 7371 Retained (old) intraocular foreign body, magnetic, in other or multiple sites, bilateral
## 7372 Retained (old) intraocular foreign body, magnetic, in other or multiple sites, unspecified eye
## 7373 Unspecified retained (old) intraocular foreign body, nonmagnetic, right eye
## 7374 Unspecified retained (old) intraocular foreign body, nonmagnetic, left eye
## 7375 Unspecified retained (old) intraocular foreign body, nonmagnetic, bilateral
## 7376 Unspecified retained (old) intraocular foreign body, nonmagnetic, unspecified eye
## 7377 Retained (nonmagnetic) (old) foreign body in anterior chamber, right eye
## 7378 Retained (nonmagnetic) (old) foreign body in anterior chamber, left eye
## 7379 Retained (nonmagnetic) (old) foreign body in anterior chamber, bilateral
## 7380 Retained (nonmagnetic) (old) foreign body in anterior chamber, unspecified eye
## 7381 Retained (nonmagnetic) (old) foreign body in iris or ciliary body, right eye
## 7382 Retained (nonmagnetic) (old) foreign body in iris or ciliary body, left eye
## 7383 Retained (nonmagnetic) (old) foreign body in iris or ciliary body, bilateral
## 7384 Retained (nonmagnetic) (old) foreign body in iris or ciliary body, unspecified eye
## 7385 Retained (nonmagnetic) (old) foreign body in lens, right eye
## 7386 Retained (nonmagnetic) (old) foreign body in lens, left eye
## 7387 Retained (nonmagnetic) (old) foreign body in lens, bilateral
## 7388 Retained (nonmagnetic) (old) foreign body in lens, unspecified eye
## 7389 Retained (nonmagnetic) (old) foreign body in posterior wall of globe, right eye
## 7390 Retained (nonmagnetic) (old) foreign body in posterior wall of globe, left eye
## 7391 Retained (nonmagnetic) (old) foreign body in posterior wall of globe, bilateral
## 7392 Retained (nonmagnetic) (old) foreign body in posterior wall of globe, unspecified eye
## 7393 Retained (nonmagnetic) (old) foreign body in vitreous body, right eye
## 7394 Retained (nonmagnetic) (old) foreign body in vitreous body, left eye
## 7395 Retained (nonmagnetic) (old) foreign body in vitreous body, bilateral
## 7396 Retained (nonmagnetic) (old) foreign body in vitreous body, unspecified eye
## 7397 Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, right eye
## 7398 Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, left eye
## 7399 Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, bilateral
## 7400 Retained (old) intraocular foreign body, nonmagnetic, in other or multiple sites, unspecified eye
## 7401 Hemophthalmos, right eye
## 7402 Hemophthalmos, left eye
## 7403 Hemophthalmos, bilateral
## 7404 Hemophthalmos, unspecified eye
## 7405 Luxation of globe, right eye
## 7406 Luxation of globe, left eye
## 7407 Luxation of globe, bilateral
## 7408 Luxation of globe, unspecified eye
## 7409 Other disorders of globe
## 7410 Unspecified disorder of globe
## 7411 Optic papillitis, unspecified eye
## 7412 Optic papillitis, right eye
## 7413 Optic papillitis, left eye
## 7414 Optic papillitis, bilateral
## 7415 Retrobulbar neuritis, unspecified eye
## 7416 Retrobulbar neuritis, right eye
## 7417 Retrobulbar neuritis, left eye
## 7418 Retrobulbar neuritis, bilateral
## 7419 Nutritional optic neuropathy
## 7420 Toxic optic neuropathy
## 7421 Other optic neuritis
## 7422 Unspecified optic neuritis
## 7423 Ischemic optic neuropathy, right eye
## 7424 Ischemic optic neuropathy, left eye
## 7425 Ischemic optic neuropathy, bilateral
## 7426 Ischemic optic neuropathy, unspecified eye
## 7427 Hemorrhage in optic nerve sheath, right eye
## 7428 Hemorrhage in optic nerve sheath, left eye
## 7429 Hemorrhage in optic nerve sheath, bilateral
## 7430 Hemorrhage in optic nerve sheath, unspecified eye
## 7431 Optic nerve hypoplasia, right eye
## 7432 Optic nerve hypoplasia, left eye
## 7433 Optic nerve hypoplasia, bilateral
## 7434 Optic nerve hypoplasia, unspecified eye
## 7435 Other disorders of optic nerve, not elsewhere classified, right eye
## 7436 Other disorders of optic nerve, not elsewhere classified, left eye
## 7437 Other disorders of optic nerve, not elsewhere classified, bilateral
## 7438 Other disorders of optic nerve, not elsewhere classified, unspecified eye
## 7439 Unspecified papilledema
## 7440 Papilledema associated with increased intracranial pressure
## 7441 Papilledema associated with decreased ocular pressure
## 7442 Papilledema associated with retinal disorder
## 7443 Foster-Kennedy syndrome, right eye
## 7444 Foster-Kennedy syndrome, left eye
## 7445 Foster-Kennedy syndrome, bilateral
## 7446 Foster-Kennedy syndrome, unspecified eye
## 7447 Unspecified optic atrophy
## 7448 Primary optic atrophy, right eye
## 7449 Primary optic atrophy, left eye
## 7450 Primary optic atrophy, bilateral
## 7451 Primary optic atrophy, unspecified eye
## 7452 Hereditary optic atrophy
## 7453 Glaucomatous optic atrophy, right eye
## 7454 Glaucomatous optic atrophy, left eye
## 7455 Glaucomatous optic atrophy, bilateral
## 7456 Glaucomatous optic atrophy, unspecified eye
## 7457 Other optic atrophy, right eye
## 7458 Other optic atrophy, left eye
## 7459 Other optic atrophy, bilateral
## 7460 Other optic atrophy, unspecified eye
## 7461 Coloboma of optic disc, right eye
## 7462 Coloboma of optic disc, left eye
## 7463 Coloboma of optic disc, bilateral
## 7464 Coloboma of optic disc, unspecified eye
## 7465 Drusen of optic disc, right eye
## 7466 Drusen of optic disc, left eye
## 7467 Drusen of optic disc, bilateral
## 7468 Drusen of optic disc, unspecified eye
## 7469 Pseudopapilledema of optic disc, right eye
## 7470 Pseudopapilledema of optic disc, left eye
## 7471 Pseudopapilledema of optic disc, bilateral
## 7472 Pseudopapilledema of optic disc, unspecified eye
## 7473 Other disorders of optic disc, right eye
## 7474 Other disorders of optic disc, left eye
## 7475 Other disorders of optic disc, bilateral
## 7476 Other disorders of optic disc, unspecified eye
## 7477 Disorders of optic chiasm in (due to) inflammatory disorders
## 7478 Disorders of optic chiasm in (due to) neoplasm
## 7479 Disorders of optic chiasm in (due to) vascular disorders
## 7480 Disorders of optic chiasm in (due to) other disorders
## 7481 Disorders of visual pathways in (due to) inflammatory disorders, right side
## 7482 Disorders of visual pathways in (due to) inflammatory disorders, left side
## 7483 Disorders of visual pathways in (due to) inflammatory disorders, unspecified side
## 7484 Disorders of visual pathways in (due to) neoplasm, right side
## 7485 Disorders of visual pathways in (due to) neoplasm, left side
## 7486 Disorders of visual pathways in (due to) neoplasm, unspecified side
## 7487 Disorders of visual pathways in (due to) vascular disorders, right side
## 7488 Disorders of visual pathways in (due to) vascular disorders, left side
## 7489 Disorders of visual pathways in (due to) vascular disorders, unspecified side
## 7490 Cortical blindness, right side of brain
## 7491 Cortical blindness, left side of brain
## 7492 Cortical blindness, unspecified side of brain
## 7493 Disorders of visual cortex in (due to) inflammatory disorders, right side of brain
## 7494 Disorders of visual cortex in (due to) inflammatory disorders, left side of brain
## 7495 Disorders of visual cortex in (due to) inflammatory disorders, unspecified side of brain
## 7496 Disorders of visual cortex in (due to) neoplasm, right side of brain
## 7497 Disorders of visual cortex in (due to) neoplasm, left side of brain
## 7498 Disorders of visual cortex in (due to) neoplasm, unspecified side of brain
## 7499 Disorders of visual cortex in (due to) vascular disorders, right side of brain
## 7500 Disorders of visual cortex in (due to) vascular disorders, left side of brain
## 7501 Disorders of visual cortex in (due to) vascular disorders, unspecified side of brain
## 7502 Unspecified disorder of visual pathways
## 7503 Third [oculomotor] nerve palsy, unspecified eye
## 7504 Third [oculomotor] nerve palsy, right eye
## 7505 Third [oculomotor] nerve palsy, left eye
## 7506 Third [oculomotor] nerve palsy, bilateral
## 7507 Fourth [trochlear] nerve palsy, unspecified eye
## 7508 Fourth [trochlear] nerve palsy, right eye
## 7509 Fourth [trochlear] nerve palsy, left eye
## 7510 Fourth [trochlear] nerve palsy, bilateral
## 7511 Sixth [abducent] nerve palsy, unspecified eye
## 7512 Sixth [abducent] nerve palsy, right eye
## 7513 Sixth [abducent] nerve palsy, left eye
## 7514 Sixth [abducent] nerve palsy, bilateral
## 7515 Total (external) ophthalmoplegia, unspecified eye
## 7516 Total (external) ophthalmoplegia, right eye
## 7517 Total (external) ophthalmoplegia, left eye
## 7518 Total (external) ophthalmoplegia, bilateral
## 7519 Progressive external ophthalmoplegia, unspecified eye
## 7520 Progressive external ophthalmoplegia, right eye
## 7521 Progressive external ophthalmoplegia, left eye
## 7522 Progressive external ophthalmoplegia, bilateral
## 7523 Kearns-Sayre syndrome, right eye
## 7524 Kearns-Sayre syndrome, left eye
## 7525 Kearns-Sayre syndrome, bilateral
## 7526 Kearns-Sayre syndrome, unspecified eye
## 7527 Other paralytic strabismus, right eye
## 7528 Other paralytic strabismus, left eye
## 7529 Other paralytic strabismus, bilateral
## 7530 Other paralytic strabismus, unspecified eye
## 7531 Unspecified paralytic strabismus
## 7532 Unspecified esotropia
## 7533 Monocular esotropia, right eye
## 7534 Monocular esotropia, left eye
## 7535 Monocular esotropia with A pattern, right eye
## 7536 Monocular esotropia with A pattern, left eye
## 7537 Monocular esotropia with V pattern, right eye
## 7538 Monocular esotropia with V pattern, left eye
## 7539 Monocular esotropia with other noncomitancies, right eye
## 7540 Monocular esotropia with other noncomitancies, left eye
## 7541 Alternating esotropia
## 7542 Alternating esotropia with A pattern
## 7543 Alternating esotropia with V pattern
## 7544 Alternating esotropia with other noncomitancies
## 7545 Unspecified exotropia
## 7546 Monocular exotropia, right eye
## 7547 Monocular exotropia, left eye
## 7548 Monocular exotropia with A pattern, right eye
## 7549 Monocular exotropia with A pattern, left eye
## 7550 Monocular exotropia with V pattern, right eye
## 7551 Monocular exotropia with V pattern, left eye
## 7552 Monocular exotropia with other noncomitancies, right eye
## 7553 Monocular exotropia with other noncomitancies, left eye
## 7554 Alternating exotropia
## 7555 Alternating exotropia with A pattern
## 7556 Alternating exotropia with V pattern
## 7557 Alternating exotropia with other noncomitancies
## 7558 Vertical strabismus, right eye
## 7559 Vertical strabismus, left eye
## 7560 Unspecified intermittent heterotropia
## 7561 Intermittent monocular esotropia, right eye
## 7562 Intermittent monocular esotropia, left eye
## 7563 Intermittent alternating esotropia
## 7564 Intermittent monocular exotropia, right eye
## 7565 Intermittent monocular exotropia, left eye
## 7566 Intermittent alternating exotropia
## 7567 Unspecified heterotropia
## 7568 Cyclotropia, right eye
## 7569 Cyclotropia, left eye
## 7570 Monofixation syndrome
## 7571 Accommodative component in esotropia
## 7572 Unspecified heterophoria
## 7573 Esophoria
## 7574 Exophoria
## 7575 Vertical heterophoria
## 7576 Cyclophoria
## 7577 Alternating heterophoria
## 7578 Mechanical strabismus, unspecified
## 7579 Brown's sheath syndrome, right eye
## 7580 Brown's sheath syndrome, left eye
## 7581 Other mechanical strabismus
## 7582 Duane's syndrome, right eye
## 7583 Duane's syndrome, left eye
## 7584 Other specified strabismus
## 7585 Unspecified strabismus
## 7586 Palsy (spasm) of conjugate gaze
## 7587 Convergence insufficiency
## 7588 Convergence excess
## 7589 Internuclear ophthalmoplegia, unspecified eye
## 7590 Internuclear ophthalmoplegia, right eye
## 7591 Internuclear ophthalmoplegia, left eye
## 7592 Internuclear ophthalmoplegia, bilateral
## 7593 Other specified disorders of binocular movement
## 7594 Unspecified disorder of binocular movement
## 7595 Hypermetropia, unspecified eye
## 7596 Hypermetropia, right eye
## 7597 Hypermetropia, left eye
## 7598 Hypermetropia, bilateral
## 7599 Myopia, unspecified eye
## 7600 Myopia, right eye
## 7601 Myopia, left eye
## 7602 Myopia, bilateral
## 7603 Unspecified astigmatism, right eye
## 7604 Unspecified astigmatism, left eye
## 7605 Unspecified astigmatism, bilateral
## 7606 Unspecified astigmatism, unspecified eye
## 7607 Irregular astigmatism, right eye
## 7608 Irregular astigmatism, left eye
## 7609 Irregular astigmatism, bilateral
## 7610 Irregular astigmatism, unspecified eye
## 7611 Regular astigmatism, right eye
## 7612 Regular astigmatism, left eye
## 7613 Regular astigmatism, bilateral
## 7614 Regular astigmatism, unspecified eye
## 7615 Anisometropia
## 7616 Aniseikonia
## 7617 Presbyopia
## 7618 Internal ophthalmoplegia (complete) (total), right eye
## 7619 Internal ophthalmoplegia (complete) (total), left eye
## 7620 Internal ophthalmoplegia (complete) (total), bilateral
## 7621 Internal ophthalmoplegia (complete) (total), unspecified eye
## 7622 Paresis of accommodation, right eye
## 7623 Paresis of accommodation, left eye
## 7624 Paresis of accommodation, bilateral
## 7625 Paresis of accommodation, unspecified eye
## 7626 Spasm of accommodation, right eye
## 7627 Spasm of accommodation, left eye
## 7628 Spasm of accommodation, bilateral
## 7629 Spasm of accommodation, unspecified eye
## 7630 Other disorders of refraction
## 7631 Unspecified disorder of refraction
## 7632 Unspecified amblyopia, right eye
## 7633 Unspecified amblyopia, left eye
## 7634 Unspecified amblyopia, bilateral
## 7635 Unspecified amblyopia, unspecified eye
## 7636 Deprivation amblyopia, right eye
## 7637 Deprivation amblyopia, left eye
## 7638 Deprivation amblyopia, bilateral
## 7639 Deprivation amblyopia, unspecified eye
## 7640 Refractive amblyopia, right eye
## 7641 Refractive amblyopia, left eye
## 7642 Refractive amblyopia, bilateral
## 7643 Refractive amblyopia, unspecified eye
## 7644 Strabismic amblyopia, right eye
## 7645 Strabismic amblyopia, left eye
## 7646 Strabismic amblyopia, bilateral
## 7647 Strabismic amblyopia, unspecified eye
## 7648 Amblyopia suspect, right eye
## 7649 Amblyopia suspect, left eye
## 7650 Amblyopia suspect, bilateral
## 7651 Amblyopia suspect, unspecified eye
## 7652 Unspecified subjective visual disturbances
## 7653 Day blindness
## 7654 Transient visual loss, right eye
## 7655 Transient visual loss, left eye
## 7656 Transient visual loss, bilateral
## 7657 Transient visual loss, unspecified eye
## 7658 Sudden visual loss, right eye
## 7659 Sudden visual loss, left eye
## 7660 Sudden visual loss, bilateral
## 7661 Sudden visual loss, unspecified eye
## 7662 Visual discomfort, right eye
## 7663 Visual discomfort, left eye
## 7664 Visual discomfort, bilateral
## 7665 Visual discomfort, unspecified
## 7666 Visual distortions of shape and size
## 7667 Psychophysical visual disturbances
## 7668 Other subjective visual disturbances
## 7669 Diplopia
## 7670 Unspecified disorder of binocular vision
## 7671 Abnormal retinal correspondence
## 7672 Fusion with defective stereopsis
## 7673 Simultaneous visual perception without fusion
## 7674 Suppression of binocular vision
## 7675 Unspecified visual field defects
## 7676 Scotoma involving central area, right eye
## 7677 Scotoma involving central area, left eye
## 7678 Scotoma involving central area, bilateral
## 7679 Scotoma involving central area, unspecified eye
## 7680 Scotoma of blind spot area, right eye
## 7681 Scotoma of blind spot area, left eye
## 7682 Scotoma of blind spot area, bilateral
## 7683 Scotoma of blind spot area, unspecified eye
## 7684 Sector or arcuate defects, right eye
## 7685 Sector or arcuate defects, left eye
## 7686 Sector or arcuate defects, bilateral
## 7687 Sector or arcuate defects, unspecified eye
## 7688 Other localized visual field defect, right eye
## 7689 Other localized visual field defect, left eye
## 7690 Other localized visual field defect, bilateral
## 7691 Other localized visual field defect, unspecified eye
## 7692 Homonymous bilateral field defects, right side
## 7693 Homonymous bilateral field defects, left side
## 7694 Homonymous bilateral field defects, unspecified side
## 7695 Heteronymous bilateral field defects
## 7696 Generalized contraction of visual field, right eye
## 7697 Generalized contraction of visual field, left eye
## 7698 Generalized contraction of visual field, bilateral
## 7699 Generalized contraction of visual field, unspecified eye
## 7700 Unspecified color vision deficiencies
## 7701 Achromatopsia
## 7702 Acquired color vision deficiency
## 7703 Deuteranomaly
## 7704 Protanomaly
## 7705 Tritanomaly
## 7706 Other color vision deficiencies
## 7707 Unspecified night blindness
## 7708 Abnormal dark adaptation curve
## 7709 Acquired night blindness
## 7710 Congenital night blindness
## 7711 Other night blindness
## 7712 Glare sensitivity
## 7713 Impaired contrast sensitivity
## 7714 Other visual disturbances
## 7715 Unspecified visual disturbance
## 7716 Blindness right eye category 3, blindness left eye category 3
## 7717 Blindness right eye category 3, blindness left eye category 4
## 7718 Blindness right eye category 3, blindness left eye category 5
## 7719 Blindness right eye category 4, blindness left eye category 3
## 7720 Blindness right eye category 4, blindness left eye category 4
## 7721 Blindness right eye category 4, blindness left eye category 5
## 7722 Blindness right eye category 5, blindness left eye category 3
## 7723 Blindness right eye category 5, blindness left eye category 4
## 7724 Blindness right eye category 5, blindness left eye category 5
## 7725 Blindness, one eye, low vision other eye, unspecified eyes
## 7726 Blindness right eye category 3, low vision left eye category 1
## 7727 Blindness right eye category 3, low vision left eye category 2
## 7728 Blindness right eye category 4, low vision left eye category 1
## 7729 Blindness right eye category 4, low vision left eye category 2
## 7730 Blindness right eye category 5, low vision left eye category 1
## 7731 Blindness right eye category 5, low vision left eye category 2
## 7732 Low vision right eye category 1, blindness left eye category 3
## 7733 Low vision right eye category 1, blindness left eye category 4
## 7734 Low vision right eye category 1, blindness left eye category 5
## 7735 Low vision right eye category 2, blindness left eye category 3
## 7736 Low vision right eye category 2, blindness left eye category 4
## 7737 Low vision right eye category 2, blindness left eye category 5
## 7738 Low vision right eye category 1, low vision left eye category 1
## 7739 Low vision right eye category 1, low vision left eye category 2
## 7740 Low vision right eye category 2, low vision left eye category 1
## 7741 Low vision right eye category 2, low vision left eye category 2
## 7742 Unqualified visual loss, both eyes
## 7743 Blindness, one eye, unspecified eye
## 7744 Blindness right eye category 3, normal vision left eye
## 7745 Blindness right eye category 4, normal vision left eye
## 7746 Blindness right eye category 5, normal vision left eye
## 7747 Blindness left eye category 3, normal vision right eye
## 7748 Blindness left eye category 4, normal vision right eye
## 7749 Blindness left eye category 5, normal vision right eye
## 7750 Low vision, one eye, unspecified eye
## 7751 Low vision right eye category 1, normal vision left eye
## 7752 Low vision right eye category 2, normal vision left eye
## 7753 Low vision left eye category 1, normal vision right eye
## 7754 Low vision left eye category 2, normal vision right eye
## 7755 Unqualified visual loss, one eye, unspecified
## 7756 Unqualified visual loss, right eye, normal vision left eye
## 7757 Unqualified visual loss, left eye, normal vision right eye
## 7758 Unspecified visual loss
## 7759 Legal blindness, as defined in USA
## 7760 Unspecified nystagmus
## 7761 Congenital nystagmus
## 7762 Latent nystagmus
## 7763 Visual deprivation nystagmus
## 7764 Dissociated nystagmus
## 7765 Other forms of nystagmus
## 7766 Saccadic eye movements
## 7767 Other irregular eye movements
## 7768 Unspecified anomaly of pupillary function
## 7769 Argyll Robertson pupil, atypical
## 7770 Anisocoria
## 7771 Miosis
## 7772 Mydriasis
## 7773 Tonic pupil, right eye
## 7774 Tonic pupil, left eye
## 7775 Tonic pupil, bilateral
## 7776 Tonic pupil, unspecified eye
## 7777 Other anomalies of pupillary function
## 7778 Ocular pain, unspecified eye
## 7779 Ocular pain, right eye
## 7780 Ocular pain, left eye
## 7781 Ocular pain, bilateral
## 7782 Brow ptosis, right
## 7783 Brow ptosis, left
## 7784 Brow ptosis, bilateral
## 7785 Brow ptosis, unspecified
## 7786 Other specified disorders of eye and adnexa
## 7787 Unspecified disorder of eye and adnexa
## 7788 Keratopathy (bullous aphakic) following cataract surgery, right eye
## 7789 Keratopathy (bullous aphakic) following cataract surgery, left eye
## 7790 Keratopathy (bullous aphakic) following cataract surgery, bilateral
## 7791 Keratopathy (bullous aphakic) following cataract surgery, unspecified eye
## 7792 Cataract (lens) fragments in eye following cataract surgery, right eye
## 7793 Cataract (lens) fragments in eye following cataract surgery, left eye
## 7794 Cataract (lens) fragments in eye following cataract surgery, bilateral
## 7795 Cataract (lens) fragments in eye following cataract surgery, unspecified eye
## 7796 Cystoid macular edema following cataract surgery, right eye
## 7797 Cystoid macular edema following cataract surgery, left eye
## 7798 Cystoid macular edema following cataract surgery, bilateral
## 7799 Cystoid macular edema following cataract surgery, unspecified eye
## 7800 Other disorders of the right eye following cataract surgery
## 7801 Other disorders of the left eye following cataract surgery
## 7802 Other disorders of the eye following cataract surgery, bilateral
## 7803 Other disorders of unspecified eye following cataract surgery
## 7804 Intraoperative hemorrhage and hematoma of right eye and adnexa complicating an ophthalmic procedure
## 7805 Intraoperative hemorrhage and hematoma of left eye and adnexa complicating an ophthalmic procedure
## 7806 Intraoperative hemorrhage and hematoma of eye and adnexa complicating an ophthalmic procedure, bilateral
## 7807 Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating an ophthalmic procedure
## 7808 Intraoperative hemorrhage and hematoma of right eye and adnexa complicating other procedure
## 7809 Intraoperative hemorrhage and hematoma of left eye and adnexa complicating other procedure
## 7810 Intraoperative hemorrhage and hematoma of eye and adnexa complicating other procedure, bilateral
## 7811 Intraoperative hemorrhage and hematoma of unspecified eye and adnexa complicating other procedure
## 7812 Accidental puncture and laceration of right eye and adnexa during an ophthalmic procedure
## 7813 Accidental puncture and laceration of left eye and adnexa during an ophthalmic procedure
## 7814 Accidental puncture and laceration of eye and adnexa during an ophthalmic procedure, bilateral
## 7815 Accidental puncture and laceration of unspecified eye and adnexa during an ophthalmic procedure
## 7816 Accidental puncture and laceration of right eye and adnexa during other procedure
## 7817 Accidental puncture and laceration of left eye and adnexa during other procedure
## 7818 Accidental puncture and laceration of eye and adnexa during other procedure, bilateral
## 7819 Accidental puncture and laceration of unspecified eye and adnexa during other procedure
## 7820 Postprocedural hemorrhage of right eye and adnexa following an ophthalmic procedure
## 7821 Postprocedural hemorrhage of left eye and adnexa following an ophthalmic procedure
## 7822 Postprocedural hemorrhage of eye and adnexa following an ophthalmic procedure, bilateral
## 7823 Postprocedural hemorrhage of unspecified eye and adnexa following an ophthalmic procedure
## 7824 Postprocedural hemorrhage of right eye and adnexa following other procedure
## 7825 Postprocedural hemorrhage of left eye and adnexa following other procedure
## 7826 Postprocedural hemorrhage of eye and adnexa following other procedure, bilateral
## 7827 Postprocedural hemorrhage of unspecified eye and adnexa following other procedure
## 7828 Postprocedural hematoma of right eye and adnexa following an ophthalmic procedure
## 7829 Postprocedural hematoma of left eye and adnexa following an ophthalmic procedure
## 7830 Postprocedural hematoma of eye and adnexa following an ophthalmic procedure, bilateral
## 7831 Postprocedural hematoma of unspecified eye and adnexa following an ophthalmic procedure
## 7832 Postprocedural hematoma of right eye and adnexa following other procedure
## 7833 Postprocedural hematoma of left eye and adnexa following other procedure
## 7834 Postprocedural hematoma of eye and adnexa following other procedure, bilateral
## 7835 Postprocedural hematoma of unspecified eye and adnexa following other procedure
## 7836 Postprocedural seroma of right eye and adnexa following an ophthalmic procedure
## 7837 Postprocedural seroma of left eye and adnexa following an ophthalmic procedure
## 7838 Postprocedural seroma of eye and adnexa following an ophthalmic procedure, bilateral
## 7839 Postprocedural seroma of unspecified eye and adnexa following an ophthalmic procedure
## 7840 Postprocedural seroma of right eye and adnexa following other procedure
## 7841 Postprocedural seroma of left eye and adnexa following other procedure
## 7842 Postprocedural seroma of eye and adnexa following other procedure, bilateral
## 7843 Postprocedural seroma of unspecified eye and adnexa following other procedure
## 7844 Inflammation (infection) of postprocedural bleb, unspecified
## 7845 Inflammation (infection) of postprocedural bleb, stage 1
## 7846 Inflammation (infection) of postprocedural bleb, stage 2
## 7847 Inflammation (infection) of postprocedural bleb, stage 3
## 7848 Chorioretinal scars after surgery for detachment, right eye
## 7849 Chorioretinal scars after surgery for detachment, left eye
## 7850 Chorioretinal scars after surgery for detachment, bilateral
## 7851 Chorioretinal scars after surgery for detachment, unspecified eye
## 7852 Other intraoperative complications of eye and adnexa, not elsewhere classified
## 7853 Other postprocedural complications and disorders of eye and adnexa, not elsewhere classified
## 7854 Abscess of external ear, unspecified ear
## 7855 Abscess of right external ear
## 7856 Abscess of left external ear
## 7857 Abscess of external ear, bilateral
## 7858 Cellulitis of external ear, unspecified ear
## 7859 Cellulitis of right external ear
## 7860 Cellulitis of left external ear
## 7861 Cellulitis of external ear, bilateral
## 7862 Malignant otitis externa, unspecified ear
## 7863 Malignant otitis externa, right ear
## 7864 Malignant otitis externa, left ear
## 7865 Malignant otitis externa, bilateral
## 7866 Diffuse otitis externa, right ear
## 7867 Diffuse otitis externa, left ear
## 7868 Diffuse otitis externa, bilateral
## 7869 Diffuse otitis externa, unspecified ear
## 7870 Hemorrhagic otitis externa, right ear
## 7871 Hemorrhagic otitis externa, left ear
## 7872 Hemorrhagic otitis externa, bilateral
## 7873 Hemorrhagic otitis externa, unspecified ear
## 7874 Swimmer's ear, right ear
## 7875 Swimmer's ear, left ear
## 7876 Swimmer's ear, bilateral
## 7877 Swimmer's ear, unspecified ear
## 7878 Other infective otitis externa, right ear
## 7879 Other infective otitis externa, left ear
## 7880 Other infective otitis externa, bilateral
## 7881 Other infective otitis externa, unspecified ear
## 7882 Cholesteatoma of external ear, unspecified ear
## 7883 Cholesteatoma of right external ear
## 7884 Cholesteatoma of left external ear
## 7885 Cholesteatoma of external ear, bilateral
## 7886 Unspecified acute noninfective otitis externa, right ear
## 7887 Unspecified acute noninfective otitis externa, left ear
## 7888 Unspecified acute noninfective otitis externa, bilateral
## 7889 Unspecified acute noninfective otitis externa, unspecified ear
## 7890 Acute actinic otitis externa, right ear
## 7891 Acute actinic otitis externa, left ear
## 7892 Acute actinic otitis externa, bilateral
## 7893 Acute actinic otitis externa, unspecified ear
## 7894 Acute chemical otitis externa, right ear
## 7895 Acute chemical otitis externa, left ear
## 7896 Acute chemical otitis externa, bilateral
## 7897 Acute chemical otitis externa, unspecified ear
## 7898 Acute contact otitis externa, right ear
## 7899 Acute contact otitis externa, left ear
## 7900 Acute contact otitis externa, bilateral
## 7901 Acute contact otitis externa, unspecified ear
## 7902 Acute eczematoid otitis externa, right ear
## 7903 Acute eczematoid otitis externa, left ear
## 7904 Acute eczematoid otitis externa, bilateral
## 7905 Acute eczematoid otitis externa, unspecified ear
## 7906 Acute reactive otitis externa, right ear
## 7907 Acute reactive otitis externa, left ear
## 7908 Acute reactive otitis externa, bilateral
## 7909 Acute reactive otitis externa, unspecified ear
## 7910 Other noninfective acute otitis externa, right ear
## 7911 Other noninfective acute otitis externa, left ear
## 7912 Other noninfective acute otitis externa, bilateral
## 7913 Other noninfective acute otitis externa, unspecified ear
## 7914 Unspecified chronic otitis externa, unspecified ear
## 7915 Unspecified chronic otitis externa, right ear
## 7916 Unspecified chronic otitis externa, left ear
## 7917 Unspecified chronic otitis externa, bilateral
## 7918 Other otitis externa, right ear
## 7919 Other otitis externa, left ear
## 7920 Other otitis externa, bilateral
## 7921 Other otitis externa, unspecified ear
## 7922 Unspecified otitis externa, unspecified ear
## 7923 Unspecified otitis externa, right ear
## 7924 Unspecified otitis externa, left ear
## 7925 Unspecified otitis externa, bilateral
## 7926 Unspecified perichondritis of right external ear
## 7927 Unspecified perichondritis of left external ear
## 7928 Unspecified perichondritis of external ear, bilateral
## 7929 Unspecified perichondritis of external ear, unspecified ear
## 7930 Acute perichondritis of right external ear
## 7931 Acute perichondritis of left external ear
## 7932 Acute perichondritis of external ear, bilateral
## 7933 Acute perichondritis of external ear, unspecified ear
## 7934 Chronic perichondritis of right external ear
## 7935 Chronic perichondritis of left external ear
## 7936 Chronic perichondritis of external ear, bilateral
## 7937 Chronic perichondritis of external ear, unspecified ear
## 7938 Chondritis of right external ear
## 7939 Chondritis of left external ear
## 7940 Chondritis of external ear, bilateral
## 7941 Chondritis of external ear, unspecified ear
## 7942 Unspecified noninfective disorders of pinna, right ear
## 7943 Unspecified noninfective disorders of pinna, left ear
## 7944 Unspecified noninfective disorders of pinna, bilateral
## 7945 Unspecified noninfective disorders of pinna, unspecified ear
## 7946 Acquired deformity of pinna, right ear
## 7947 Acquired deformity of pinna, left ear
## 7948 Acquired deformity of pinna, bilateral
## 7949 Acquired deformity of pinna, unspecified ear
## 7950 Hematoma of pinna, right ear
## 7951 Hematoma of pinna, left ear
## 7952 Hematoma of pinna, bilateral
## 7953 Hematoma of pinna, unspecified ear
## 7954 Noninfective disorders of pinna, right ear
## 7955 Noninfective disorders of pinna, left ear
## 7956 Noninfective disorders of pinna, bilateral
## 7957 Noninfective disorders of pinna, unspecified ear
## 7958 Impacted cerumen, unspecified ear
## 7959 Impacted cerumen, right ear
## 7960 Impacted cerumen, left ear
## 7961 Impacted cerumen, bilateral
## 7962 Acquired stenosis of right external ear canal, unspecified
## 7963 Acquired stenosis of left external ear canal, unspecified
## 7964 Acquired stenosis of external ear canal, unspecified, bilateral
## 7965 Acquired stenosis of external ear canal, unspecified, unspecified ear
## 7966 Acquired stenosis of right external ear canal secondary to trauma
## 7967 Acquired stenosis of left external ear canal secondary to trauma
## 7968 Acquired stenosis of external ear canal secondary to trauma, bilateral
## 7969 Acquired stenosis of external ear canal secondary to trauma, unspecified ear
## 7970 Acquired stenosis of right external ear canal secondary to inflammation and infection
## 7971 Acquired stenosis of left external ear canal secondary to inflammation and infection
## 7972 Acquired stenosis of external ear canal secondary to inflammation and infection, bilateral
## 7973 Acquired stenosis of external ear canal secondary to inflammation and infection, unspecified ear
## 7974 Other acquired stenosis of right external ear canal
## 7975 Other acquired stenosis of left external ear canal
## 7976 Other acquired stenosis of external ear canal, bilateral
## 7977 Other acquired stenosis of external ear canal, unspecified ear
## 7978 Exostosis of right external canal
## 7979 Exostosis of left external canal
## 7980 Exostosis of external canal, bilateral
## 7981 Exostosis of external canal, unspecified ear
## 7982 Other specified disorders of right external ear
## 7983 Other specified disorders of left external ear
## 7984 Other specified disorders of external ear, bilateral
## 7985 Other specified disorders of external ear, unspecified ear
## 7986 Disorder of external ear, unspecified, unspecified ear
## 7987 Disorder of right external ear, unspecified
## 7988 Disorder of left external ear, unspecified
## 7989 Disorder of external ear, unspecified, bilateral
## 7990 Otitis externa in other diseases classified elsewhere, unspecified ear
## 7991 Otitis externa in other diseases classified elsewhere, right ear
## 7992 Otitis externa in other diseases classified elsewhere, left ear
## 7993 Otitis externa in other diseases classified elsewhere, bilateral
## 7994 Other disorders of right external ear in diseases classified elsewhere
## 7995 Other disorders of left external ear in diseases classified elsewhere
## 7996 Other disorders of external ear in diseases classified elsewhere, bilateral
## 7997 Other disorders of external ear in diseases classified elsewhere, unspecified ear
## 7998 Acute serous otitis media, unspecified ear
## 7999 Acute serous otitis media, right ear
## 8000 Acute serous otitis media, left ear
## 8001 Acute serous otitis media, bilateral
## 8002 Acute serous otitis media, recurrent, right ear
## 8003 Acute serous otitis media, recurrent, left ear
## 8004 Acute serous otitis media, recurrent, bilateral
## 8005 Acute serous otitis media, recurrent, unspecified ear
## 8006 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), right ear
## 8007 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), left ear
## 8008 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), bilateral
## 8009 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, right ear
## 8010 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, left ear
## 8011 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, bilateral
## 8012 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), recurrent, unspecified ear
## 8013 Acute and subacute allergic otitis media (mucoid) (sanguinous) (serous), unspecified ear
## 8014 Other acute nonsuppurative otitis media, right ear
## 8015 Other acute nonsuppurative otitis media, left ear
## 8016 Other acute nonsuppurative otitis media, bilateral
## 8017 Other acute nonsuppurative otitis media, recurrent, right ear
## 8018 Other acute nonsuppurative otitis media, recurrent, left ear
## 8019 Other acute nonsuppurative otitis media, recurrent, bilateral
## 8020 Other acute nonsuppurative otitis media recurrent, unspecified ear
## 8021 Other acute nonsuppurative otitis media, unspecified ear
## 8022 Chronic serous otitis media, unspecified ear
## 8023 Chronic serous otitis media, right ear
## 8024 Chronic serous otitis media, left ear
## 8025 Chronic serous otitis media, bilateral
## 8026 Chronic mucoid otitis media, unspecified ear
## 8027 Chronic mucoid otitis media, right ear
## 8028 Chronic mucoid otitis media, left ear
## 8029 Chronic mucoid otitis media, bilateral
## 8030 Chronic allergic otitis media, right ear
## 8031 Chronic allergic otitis media, left ear
## 8032 Chronic allergic otitis media, bilateral
## 8033 Chronic allergic otitis media, unspecified ear
## 8034 Other chronic nonsuppurative otitis media, right ear
## 8035 Other chronic nonsuppurative otitis media, left ear
## 8036 Other chronic nonsuppurative otitis media, bilateral
## 8037 Other chronic nonsuppurative otitis media, unspecified ear
## 8038 Unspecified nonsuppurative otitis media, unspecified ear
## 8039 Unspecified nonsuppurative otitis media, right ear
## 8040 Unspecified nonsuppurative otitis media, left ear
## 8041 Unspecified nonsuppurative otitis media, bilateral
## 8042 Acute suppurative otitis media without spontaneous rupture of ear drum, right ear
## 8043 Acute suppurative otitis media without spontaneous rupture of ear drum, left ear
## 8044 Acute suppurative otitis media without spontaneous rupture of ear drum, bilateral
## 8045 Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, right ear
## 8046 Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, left ear
## 8047 Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, bilateral
## 8048 Acute suppurative otitis media without spontaneous rupture of ear drum, recurrent, unspecified ear
## 8049 Acute suppurative otitis media without spontaneous rupture of ear drum, unspecified ear
## 8050 Acute suppurative otitis media with spontaneous rupture of ear drum, right ear
## 8051 Acute suppurative otitis media with spontaneous rupture of ear drum, left ear
## 8052 Acute suppurative otitis media with spontaneous rupture of ear drum, bilateral
## 8053 Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, right ear
## 8054 Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, left ear
## 8055 Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, bilateral
## 8056 Acute suppurative otitis media with spontaneous rupture of ear drum, recurrent, unspecified ear
## 8057 Acute suppurative otitis media with spontaneous rupture of ear drum, unspecified ear
## 8058 Chronic tubotympanic suppurative otitis media, unspecified
## 8059 Chronic tubotympanic suppurative otitis media, right ear
## 8060 Chronic tubotympanic suppurative otitis media, left ear
## 8061 Chronic tubotympanic suppurative otitis media, bilateral
## 8062 Chronic atticoantral suppurative otitis media, unspecified ear
## 8063 Chronic atticoantral suppurative otitis media, right ear
## 8064 Chronic atticoantral suppurative otitis media, left ear
## 8065 Chronic atticoantral suppurative otitis media, bilateral
## 8066 Other chronic suppurative otitis media, right ear
## 8067 Other chronic suppurative otitis media, left ear
## 8068 Other chronic suppurative otitis media, bilateral
## 8069 Other chronic suppurative otitis media, unspecified ear
## 8070 Suppurative otitis media, unspecified, unspecified ear
## 8071 Suppurative otitis media, unspecified, right ear
## 8072 Suppurative otitis media, unspecified, left ear
## 8073 Suppurative otitis media, unspecified, bilateral
## 8074 Otitis media, unspecified, unspecified ear
## 8075 Otitis media, unspecified, right ear
## 8076 Otitis media, unspecified, left ear
## 8077 Otitis media, unspecified, bilateral
## 8078 Otitis media in diseases classified elsewhere, right ear
## 8079 Otitis media in diseases classified elsewhere, left ear
## 8080 Otitis media in diseases classified elsewhere, bilateral
## 8081 Otitis media in diseases classified elsewhere, unspecified ear
## 8082 Unspecified Eustachian salpingitis, right ear
## 8083 Unspecified Eustachian salpingitis, left ear
## 8084 Unspecified Eustachian salpingitis, bilateral
## 8085 Unspecified Eustachian salpingitis, unspecified ear
## 8086 Acute Eustachian salpingitis, right ear
## 8087 Acute Eustachian salpingitis, left ear
## 8088 Acute Eustachian salpingitis, bilateral
## 8089 Acute Eustachian salpingitis, unspecified ear
## 8090 Chronic Eustachian salpingitis, right ear
## 8091 Chronic Eustachian salpingitis, left ear
## 8092 Chronic Eustachian salpingitis, bilateral
## 8093 Chronic Eustachian salpingitis, unspecified ear
## 8094 Unspecified obstruction of Eustachian tube, right ear
## 8095 Unspecified obstruction of Eustachian tube, left ear
## 8096 Unspecified obstruction of Eustachian tube, bilateral
## 8097 Unspecified obstruction of Eustachian tube, unspecified ear
## 8098 Osseous obstruction of Eustachian tube, right ear
## 8099 Osseous obstruction of Eustachian tube, left ear
## 8100 Osseous obstruction of Eustachian tube, bilateral
## 8101 Osseous obstruction of Eustachian tube, unspecified ear
## 8102 Intrinsic cartilagenous obstruction of Eustachian tube, right ear
## 8103 Intrinsic cartilagenous obstruction of Eustachian tube, left ear
## 8104 Intrinsic cartilagenous obstruction of Eustachian tube, bilateral
## 8105 Intrinsic cartilagenous obstruction of Eustachian tube, unspecified ear
## 8106 Extrinsic cartilagenous obstruction of Eustachian tube, right ear
## 8107 Extrinsic cartilagenous obstruction of Eustachian tube, left ear
## 8108 Extrinsic cartilagenous obstruction of Eustachian tube, bilateral
## 8109 Extrinsic cartilagenous obstruction of Eustachian tube, unspecified ear
## 8110 Patulous Eustachian tube, unspecified ear
## 8111 Patulous Eustachian tube, right ear
## 8112 Patulous Eustachian tube, left ear
## 8113 Patulous Eustachian tube, bilateral
## 8114 Other specified disorders of Eustachian tube, unspecified ear
## 8115 Other specified disorders of Eustachian tube, right ear
## 8116 Other specified disorders of Eustachian tube, left ear
## 8117 Other specified disorders of Eustachian tube, bilateral
## 8118 Unspecified Eustachian tube disorder, unspecified ear
## 8119 Unspecified Eustachian tube disorder, right ear
## 8120 Unspecified Eustachian tube disorder, left ear
## 8121 Unspecified Eustachian tube disorder, bilateral
## 8122 Acute mastoiditis without complications, right ear
## 8123 Acute mastoiditis without complications, left ear
## 8124 Acute mastoiditis without complications, bilateral
## 8125 Acute mastoiditis without complications, unspecified ear
## 8126 Subperiosteal abscess of mastoid, right ear
## 8127 Subperiosteal abscess of mastoid, left ear
## 8128 Subperiosteal abscess of mastoid, bilateral
## 8129 Subperiosteal abscess of mastoid, unspecified ear
## 8130 Acute mastoiditis with other complications, right ear
## 8131 Acute mastoiditis with other complications, left ear
## 8132 Acute mastoiditis with other complications, bilateral
## 8133 Acute mastoiditis with other complications, unspecified ear
## 8134 Chronic mastoiditis, unspecified ear
## 8135 Chronic mastoiditis, right ear
## 8136 Chronic mastoiditis, left ear
## 8137 Chronic mastoiditis, bilateral
## 8138 Unspecified petrositis, right ear
## 8139 Unspecified petrositis, left ear
## 8140 Unspecified petrositis, bilateral
## 8141 Unspecified petrositis, unspecified ear
## 8142 Acute petrositis, right ear
## 8143 Acute petrositis, left ear
## 8144 Acute petrositis, bilateral
## 8145 Acute petrositis, unspecified ear
## 8146 Chronic petrositis, right ear
## 8147 Chronic petrositis, left ear
## 8148 Chronic petrositis, bilateral
## 8149 Chronic petrositis, unspecified ear
## 8150 Postauricular fistula, right ear
## 8151 Postauricular fistula, left ear
## 8152 Postauricular fistula, bilateral
## 8153 Postauricular fistula, unspecified ear
## 8154 Other mastoiditis and related conditions, right ear
## 8155 Other mastoiditis and related conditions, left ear
## 8156 Other mastoiditis and related conditions, bilateral
## 8157 Other mastoiditis and related conditions, unspecified ear
## 8158 Unspecified mastoiditis, unspecified ear
## 8159 Unspecified mastoiditis, right ear
## 8160 Unspecified mastoiditis, left ear
## 8161 Unspecified mastoiditis, bilateral
## 8162 Cholesteatoma of attic, unspecified ear
## 8163 Cholesteatoma of attic, right ear
## 8164 Cholesteatoma of attic, left ear
## 8165 Cholesteatoma of attic, bilateral
## 8166 Cholesteatoma of tympanum, unspecified ear
## 8167 Cholesteatoma of tympanum, right ear
## 8168 Cholesteatoma of tympanum, left ear
## 8169 Cholesteatoma of tympanum, bilateral
## 8170 Cholesteatoma of mastoid, unspecified ear
## 8171 Cholesteatoma of mastoid, right ear
## 8172 Cholesteatoma of mastoid, left ear
## 8173 Cholesteatoma of mastoid, bilateral
## 8174 Diffuse cholesteatosis, unspecified ear
## 8175 Diffuse cholesteatosis, right ear
## 8176 Diffuse cholesteatosis, left ear
## 8177 Diffuse cholesteatosis, bilateral
## 8178 Unspecified cholesteatoma, unspecified ear
## 8179 Unspecified cholesteatoma, right ear
## 8180 Unspecified cholesteatoma, left ear
## 8181 Unspecified cholesteatoma, bilateral
## 8182 Central perforation of tympanic membrane, unspecified ear
## 8183 Central perforation of tympanic membrane, right ear
## 8184 Central perforation of tympanic membrane, left ear
## 8185 Central perforation of tympanic membrane, bilateral
## 8186 Attic perforation of tympanic membrane, unspecified ear
## 8187 Attic perforation of tympanic membrane, right ear
## 8188 Attic perforation of tympanic membrane, left ear
## 8189 Attic perforation of tympanic membrane, bilateral
## 8190 Other marginal perforations of tympanic membrane, right ear
## 8191 Other marginal perforations of tympanic membrane, left ear
## 8192 Other marginal perforations of tympanic membrane, bilateral
## 8193 Other marginal perforations of tympanic membrane, unspecified ear
## 8194 Multiple perforations of tympanic membrane, right ear
## 8195 Multiple perforations of tympanic membrane, left ear
## 8196 Multiple perforations of tympanic membrane, bilateral
## 8197 Multiple perforations of tympanic membrane, unspecified ear
## 8198 Total perforations of tympanic membrane, right ear
## 8199 Total perforations of tympanic membrane, left ear
## 8200 Total perforations of tympanic membrane, bilateral
## 8201 Total perforations of tympanic membrane, unspecified ear
## 8202 Unspecified perforation of tympanic membrane, unspecified ear
## 8203 Unspecified perforation of tympanic membrane, right ear
## 8204 Unspecified perforation of tympanic membrane, left ear
## 8205 Unspecified perforation of tympanic membrane, bilateral
## 8206 Acute myringitis, right ear
## 8207 Acute myringitis, left ear
## 8208 Acute myringitis, bilateral
## 8209 Acute myringitis, unspecified ear
## 8210 Bullous myringitis, right ear
## 8211 Bullous myringitis, left ear
## 8212 Bullous myringitis, bilateral
## 8213 Bullous myringitis, unspecified ear
## 8214 Other acute myringitis, right ear
## 8215 Other acute myringitis, left ear
## 8216 Other acute myringitis, bilateral
## 8217 Other acute myringitis, unspecified ear
## 8218 Chronic myringitis, unspecified ear
## 8219 Chronic myringitis, right ear
## 8220 Chronic myringitis, left ear
## 8221 Chronic myringitis, bilateral
## 8222 Unspecified myringitis, unspecified ear
## 8223 Unspecified myringitis, right ear
## 8224 Unspecified myringitis, left ear
## 8225 Unspecified myringitis, bilateral
## 8226 Atrophic flaccid tympanic membrane, right ear
## 8227 Atrophic flaccid tympanic membrane, left ear
## 8228 Atrophic flaccid tympanic membrane, bilateral
## 8229 Atrophic flaccid tympanic membrane, unspecified ear
## 8230 Atrophic nonflaccid tympanic membrane, right ear
## 8231 Atrophic nonflaccid tympanic membrane, left ear
## 8232 Atrophic nonflaccid tympanic membrane, bilateral
## 8233 Atrophic nonflaccid tympanic membrane, unspecified ear
## 8234 Other specified disorders of tympanic membrane, right ear
## 8235 Other specified disorders of tympanic membrane, left ear
## 8236 Other specified disorders of tympanic membrane, bilateral
## 8237 Other specified disorders of tympanic membrane, unspecified ear
## 8238 Unspecified disorder of tympanic membrane, unspecified ear
## 8239 Unspecified disorder of tympanic membrane, right ear
## 8240 Unspecified disorder of tympanic membrane, left ear
## 8241 Unspecified disorder of tympanic membrane, bilateral
## 8242 Tympanosclerosis, right ear
## 8243 Tympanosclerosis, left ear
## 8244 Tympanosclerosis, bilateral
## 8245 Tympanosclerosis, unspecified ear
## 8246 Adhesive right middle ear disease
## 8247 Adhesive left middle ear disease
## 8248 Adhesive middle ear disease, bilateral
## 8249 Adhesive middle ear disease, unspecified ear
## 8250 Discontinuity and dislocation of ear ossicles, unspecified ear
## 8251 Discontinuity and dislocation of right ear ossicles
## 8252 Discontinuity and dislocation of left ear ossicles
## 8253 Discontinuity and dislocation of ear ossicles, bilateral
## 8254 Ankylosis of ear ossicles, right ear
## 8255 Ankylosis of ear ossicles, left ear
## 8256 Ankylosis of ear ossicles, bilateral
## 8257 Ankylosis of ear ossicles, unspecified ear
## 8258 Partial loss of ear ossicles, right ear
## 8259 Partial loss of ear ossicles, left ear
## 8260 Partial loss of ear ossicles, bilateral
## 8261 Partial loss of ear ossicles, unspecified ear
## 8262 Other acquired abnormalities of right ear ossicles
## 8263 Other acquired abnormalities of left ear ossicles
## 8264 Other acquired abnormalities of ear ossicles, bilateral
## 8265 Other acquired abnormalities of ear ossicles, unspecified ear
## 8266 Polyp of middle ear, unspecified ear
## 8267 Polyp of right middle ear
## 8268 Polyp of left middle ear
## 8269 Polyp of middle ear, bilateral
## 8270 Other specified disorders of right middle ear and mastoid
## 8271 Other specified disorders of left middle ear and mastoid
## 8272 Other specified disorders of middle ear and mastoid, bilateral
## 8273 Other specified disorders of middle ear and mastoid, unspecified ear
## 8274 Unspecified disorder of middle ear and mastoid, unspecified ear
## 8275 Unspecified disorder of right middle ear and mastoid
## 8276 Unspecified disorder of left middle ear and mastoid
## 8277 Unspecified disorder of middle ear and mastoid, bilateral
## 8278 Mastoiditis in infectious and parasitic diseases classified elsewhere, unspecified ear
## 8279 Mastoiditis in infectious and parasitic diseases classified elsewhere, right ear
## 8280 Mastoiditis in infectious and parasitic diseases classified elsewhere, left ear
## 8281 Mastoiditis in infectious and parasitic diseases classified elsewhere, bilateral
## 8282 Other specified disorders of middle ear and mastoid in diseases classified elsewhere, unspecified ear
## 8283 Other specified disorders of right middle ear and mastoid in diseases classified elsewhere
## 8284 Other specified disorders of left middle ear and mastoid in diseases classified elsewhere
## 8285 Other specified disorders of middle ear and mastoid in diseases classified elsewhere, bilateral
## 8286 Otosclerosis involving oval window, nonobliterative, unspecified ear
## 8287 Otosclerosis involving oval window, nonobliterative, right ear
## 8288 Otosclerosis involving oval window, nonobliterative, left ear
## 8289 Otosclerosis involving oval window, nonobliterative, bilateral
## 8290 Otosclerosis involving oval window, obliterative, unspecified ear
## 8291 Otosclerosis involving oval window, obliterative, right ear
## 8292 Otosclerosis involving oval window, obliterative, left ear
## 8293 Otosclerosis involving oval window, obliterative, bilateral
## 8294 Cochlear otosclerosis, unspecified ear
## 8295 Cochlear otosclerosis, right ear
## 8296 Cochlear otosclerosis, left ear
## 8297 Cochlear otosclerosis, bilateral
## 8298 Other otosclerosis, unspecified ear
## 8299 Other otosclerosis, right ear
## 8300 Other otosclerosis, left ear
## 8301 Other otosclerosis, bilateral
## 8302 Unspecified otosclerosis, unspecified ear
## 8303 Unspecified otosclerosis, right ear
## 8304 Unspecified otosclerosis, left ear
## 8305 Unspecified otosclerosis, bilateral
## 8306 Meniere's disease, right ear
## 8307 Meniere's disease, left ear
## 8308 Meniere's disease, bilateral
## 8309 Meniere's disease, unspecified ear
## 8310 Benign paroxysmal vertigo, unspecified ear
## 8311 Benign paroxysmal vertigo, right ear
## 8312 Benign paroxysmal vertigo, left ear
## 8313 Benign paroxysmal vertigo, bilateral
## 8314 Vestibular neuronitis, unspecified ear
## 8315 Vestibular neuronitis, right ear
## 8316 Vestibular neuronitis, left ear
## 8317 Vestibular neuronitis, bilateral
## 8318 Aural vertigo, right ear
## 8319 Aural vertigo, left ear
## 8320 Aural vertigo, bilateral
## 8321 Aural vertigo, unspecified ear
## 8322 Other peripheral vertigo, right ear
## 8323 Other peripheral vertigo, left ear
## 8324 Other peripheral vertigo, bilateral
## 8325 Other peripheral vertigo, unspecified ear
## 8326 Vertigo of central origin
## 8327 Other disorders of vestibular function, right ear
## 8328 Other disorders of vestibular function, left ear
## 8329 Other disorders of vestibular function, bilateral
## 8330 Other disorders of vestibular function, unspecified ear
## 8331 Unspecified disorder of vestibular function, unspecified ear
## 8332 Unspecified disorder of vestibular function, right ear
## 8333 Unspecified disorder of vestibular function, left ear
## 8334 Unspecified disorder of vestibular function, bilateral
## 8335 Vertiginous syndromes in diseases classified elsewhere, right ear
## 8336 Vertiginous syndromes in diseases classified elsewhere, left ear
## 8337 Vertiginous syndromes in diseases classified elsewhere, bilateral
## 8338 Vertiginous syndromes in diseases classified elsewhere, unspecified ear
## 8339 Labyrinthitis, right ear
## 8340 Labyrinthitis, left ear
## 8341 Labyrinthitis, bilateral
## 8342 Labyrinthitis, unspecified ear
## 8343 Labyrinthine fistula, right ear
## 8344 Labyrinthine fistula, left ear
## 8345 Labyrinthine fistula, bilateral
## 8346 Labyrinthine fistula, unspecified ear
## 8347 Labyrinthine dysfunction, right ear
## 8348 Labyrinthine dysfunction, left ear
## 8349 Labyrinthine dysfunction, bilateral
## 8350 Labyrinthine dysfunction, unspecified ear
## 8351 Noise effects on right inner ear
## 8352 Noise effects on left inner ear
## 8353 Noise effects on inner ear, bilateral
## 8354 Noise effects on inner ear, unspecified ear
## 8355 Other specified diseases of right inner ear
## 8356 Other specified diseases of left inner ear
## 8357 Other specified diseases of inner ear, bilateral
## 8358 Other specified diseases of inner ear, unspecified ear
## 8359 Unspecified disease of inner ear, unspecified ear
## 8360 Unspecified disease of right inner ear
## 8361 Unspecified disease of left inner ear
## 8362 Unspecified disease of inner ear, bilateral
## 8363 Conductive hearing loss, bilateral
## 8364 Conductive hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side
## 8365 Conductive hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side
## 8366 Conductive hearing loss, unspecified
## 8367 Sensorineural hearing loss, bilateral
## 8368 Sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side
## 8369 Sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side
## 8370 Unspecified sensorineural hearing loss
## 8371 Mixed conductive and sensorineural hearing loss, bilateral
## 8372 Mixed conductive and sensorineural hearing loss, unilateral, right ear, with unrestricted hearing on the contralateral side
## 8373 Mixed conductive and sensorineural hearing loss, unilateral, left ear, with unrestricted hearing on the contralateral side
## 8374 Mixed conductive and sensorineural hearing loss, unspecified
## 8375 Conductive hearing loss, unilateral, right ear with restricted hearing on the contralateral side
## 8376 Conductive hearing loss, unilateral, left ear with restricted hearing on the contralateral side
## 8377 Sensorineural hearing loss, unilateral, right ear, with restricted hearing on the contralateral side
## 8378 Sensorineural hearing loss, unilateral, left ear, with restricted hearing on the contralateral side
## 8379 Mixed conductive and sensorineural hearing loss, unilateral, right ear with restricted hearing on the contralateral side
## 8380 Mixed conductive and sensorineural hearing loss, unilateral, left ear with restricted hearing on the contralateral side
## 8381 Ototoxic hearing loss, right ear
## 8382 Ototoxic hearing loss, left ear
## 8383 Ototoxic hearing loss, bilateral
## 8384 Ototoxic hearing loss, unspecified ear
## 8385 Presbycusis, unspecified ear
## 8386 Presbycusis, right ear
## 8387 Presbycusis, left ear
## 8388 Presbycusis, bilateral
## 8389 Sudden idiopathic hearing loss, unspecified ear
## 8390 Sudden idiopathic hearing loss, right ear
## 8391 Sudden idiopathic hearing loss, left ear
## 8392 Sudden idiopathic hearing loss, bilateral
## 8393 Deaf nonspeaking, not elsewhere classified
## 8394 Other specified hearing loss, right ear
## 8395 Other specified hearing loss, left ear
## 8396 Other specified hearing loss, bilateral
## 8397 Other specified hearing loss, unspecified ear
## 8398 Unspecified hearing loss, unspecified ear
## 8399 Unspecified hearing loss, right ear
## 8400 Unspecified hearing loss, left ear
## 8401 Unspecified hearing loss, bilateral
## 8402 Otalgia, right ear
## 8403 Otalgia, left ear
## 8404 Otalgia, bilateral
## 8405 Otalgia, unspecified ear
## 8406 Otorrhea, unspecified ear
## 8407 Otorrhea, right ear
## 8408 Otorrhea, left ear
## 8409 Otorrhea, bilateral
## 8410 Otorrhagia, unspecified ear
## 8411 Otorrhagia, right ear
## 8412 Otorrhagia, left ear
## 8413 Otorrhagia, bilateral
## 8414 Transient ischemic deafness, right ear
## 8415 Transient ischemic deafness, left ear
## 8416 Transient ischemic deafness, bilateral
## 8417 Transient ischemic deafness, unspecified ear
## 8418 Unspecified degenerative and vascular disorders of right ear
## 8419 Unspecified degenerative and vascular disorders of left ear
## 8420 Unspecified degenerative and vascular disorders of ear, bilateral
## 8421 Unspecified degenerative and vascular disorders of unspecified ear
## 8422 Tinnitus, right ear
## 8423 Tinnitus, left ear
## 8424 Tinnitus, bilateral
## 8425 Tinnitus, unspecified ear
## 8426 Pulsatile tinnitus, right ear
## 8427 Pulsatile tinnitus, left ear
## 8428 Pulsatile tinnitus, bilateral
## 8429 Pulsatile tinnitus, unspecified ear
## 8430 Auditory recruitment, right ear
## 8431 Auditory recruitment, left ear
## 8432 Auditory recruitment, bilateral
## 8433 Auditory recruitment, unspecified ear
## 8434 Diplacusis, right ear
## 8435 Diplacusis, left ear
## 8436 Diplacusis, bilateral
## 8437 Diplacusis, unspecified ear
## 8438 Hyperacusis, right ear
## 8439 Hyperacusis, left ear
## 8440 Hyperacusis, bilateral
## 8441 Hyperacusis, unspecified ear
## 8442 Temporary auditory threshold shift, right ear
## 8443 Temporary auditory threshold shift, left ear
## 8444 Temporary auditory threshold shift, bilateral
## 8445 Temporary auditory threshold shift, unspecified ear
## 8446 Central auditory processing disorder
## 8447 Other abnormal auditory perceptions, right ear
## 8448 Other abnormal auditory perceptions, left ear
## 8449 Other abnormal auditory perceptions, bilateral
## 8450 Other abnormal auditory perceptions, unspecified ear
## 8451 Disorders of right acoustic nerve
## 8452 Disorders of left acoustic nerve
## 8453 Disorders of bilateral acoustic nerves
## 8454 Disorders of unspecified acoustic nerve
## 8455 Other specified disorders of right ear
## 8456 Other specified disorders of left ear
## 8457 Other specified disorders of ear, bilateral
## 8458 Other specified disorders of ear, unspecified ear
## 8459 Unspecified disorder of ear, unspecified ear
## 8460 Unspecified disorder of right ear
## 8461 Unspecified disorder of left ear
## 8462 Unspecified disorder of ear, bilateral
## 8463 Acoustic neuritis in infectious and parasitic diseases classified elsewhere, unspecified ear
## 8464 Acoustic neuritis in infectious and parasitic diseases classified elsewhere, right ear
## 8465 Acoustic neuritis in infectious and parasitic diseases classified elsewhere, left ear
## 8466 Acoustic neuritis in infectious and parasitic diseases classified elsewhere, bilateral
## 8467 Other specified disorders of ear in diseases classified elsewhere, unspecified ear
## 8468 Other specified disorders of right ear in diseases classified elsewhere
## 8469 Other specified disorders of left ear in diseases classified elsewhere
## 8470 Other specified disorders of ear in diseases classified elsewhere, bilateral
## 8471 Recurrent cholesteatoma of postmastoidectomy cavity, unspecified ear
## 8472 Recurrent cholesteatoma of postmastoidectomy cavity, right ear
## 8473 Recurrent cholesteatoma of postmastoidectomy cavity, left ear
## 8474 Recurrent cholesteatoma of postmastoidectomy cavity, bilateral ears
## 8475 Chronic inflammation of postmastoidectomy cavity, right ear
## 8476 Chronic inflammation of postmastoidectomy cavity, left ear
## 8477 Chronic inflammation of postmastoidectomy cavity, bilateral ears
## 8478 Chronic inflammation of postmastoidectomy cavity, unspecified ear
## 8479 Granulation of postmastoidectomy cavity, right ear
## 8480 Granulation of postmastoidectomy cavity, left ear
## 8481 Granulation of postmastoidectomy cavity, bilateral ears
## 8482 Granulation of postmastoidectomy cavity, unspecified ear
## 8483 Mucosal cyst of postmastoidectomy cavity, right ear
## 8484 Mucosal cyst of postmastoidectomy cavity, left ear
## 8485 Mucosal cyst of postmastoidectomy cavity, bilateral ears
## 8486 Mucosal cyst of postmastoidectomy cavity, unspecified ear
## 8487 Other disorders following mastoidectomy, right ear
## 8488 Other disorders following mastoidectomy, left ear
## 8489 Other disorders following mastoidectomy, bilateral ears
## 8490 Other disorders following mastoidectomy, unspecified ear
## 8491 Intraoperative hemorrhage and hematoma of ear and mastoid process complicating a procedure on the ear and mastoid process
## 8492 Intraoperative hemorrhage and hematoma of ear and mastoid process complicating other procedure
## 8493 Accidental puncture and laceration of the ear and mastoid process during a procedure on the ear and mastoid process
## 8494 Accidental puncture and laceration of the ear and mastoid process during other procedure
## 8495 Postprocedural hemorrhage of ear and mastoid process following a procedure on the ear and mastoid process
## 8496 Postprocedural hemorrhage of ear and mastoid process following other procedure
## 8497 Postprocedural hematoma of ear and mastoid process following a procedure on the ear and mastoid process
## 8498 Postprocedural hematoma of ear and mastoid process following other procedure
## 8499 Postprocedural seroma of ear and mastoid process following a procedure on the ear and mastoid process
## 8500 Postprocedural seroma of ear and mastoid process following other procedure
## 8501 Postprocedural stenosis of right external ear canal
## 8502 Postprocedural stenosis of left external ear canal
## 8503 Postprocedural stenosis of external ear canal, bilateral
## 8504 Postprocedural stenosis of unspecified external ear canal
## 8505 Other intraoperative complications and disorders of the ear and mastoid process, not elsewhere classified
## 8506 Other postprocedural complications and disorders of the ear and mastoid process, not elsewhere classified
## 8507 Rheumatic fever without heart involvement
## 8508 Acute rheumatic pericarditis
## 8509 Acute rheumatic endocarditis
## 8510 Acute rheumatic myocarditis
## 8511 Other acute rheumatic heart disease
## 8512 Acute rheumatic heart disease, unspecified
## 8513 Rheumatic chorea with heart involvement
## 8514 Rheumatic chorea without heart involvement
## 8515 Rheumatic mitral stenosis
## 8516 Rheumatic mitral insufficiency
## 8517 Rheumatic mitral stenosis with insufficiency
## 8518 Other rheumatic mitral valve diseases
## 8519 Rheumatic mitral valve disease, unspecified
## 8520 Rheumatic aortic stenosis
## 8521 Rheumatic aortic insufficiency
## 8522 Rheumatic aortic stenosis with insufficiency
## 8523 Other rheumatic aortic valve diseases
## 8524 Rheumatic aortic valve disease, unspecified
## 8525 Rheumatic tricuspid stenosis
## 8526 Rheumatic tricuspid insufficiency
## 8527 Rheumatic tricuspid stenosis and insufficiency
## 8528 Other rheumatic tricuspid valve diseases
## 8529 Rheumatic tricuspid valve disease, unspecified
## 8530 Rheumatic disorders of both mitral and aortic valves
## 8531 Rheumatic disorders of both mitral and tricuspid valves
## 8532 Rheumatic disorders of both aortic and tricuspid valves
## 8533 Combined rheumatic disorders of mitral, aortic and tricuspid valves
## 8534 Other rheumatic multiple valve diseases
## 8535 Rheumatic multiple valve disease, unspecified
## 8536 Rheumatic myocarditis
## 8537 Rheumatic diseases of endocardium, valve unspecified
## 8538 Chronic rheumatic pericarditis
## 8539 Rheumatic heart failure
## 8540 Other specified rheumatic heart diseases
## 8541 Rheumatic heart disease, unspecified
## 8542 Essential (primary) hypertension
## 8543 Hypertensive heart disease with heart failure
## 8544 Hypertensive heart disease without heart failure
## 8545 Hypertensive chronic kidney disease with stage 5 chronic kidney disease or end stage renal disease
## 8546 Hypertensive chronic kidney disease with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease
## 8547 Hypertensive heart and chronic kidney disease with heart failure and stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease
## 8548 Hypertensive heart and chronic kidney disease without heart failure, with stage 1 through stage 4 chronic kidney disease, or unspecified chronic kidney disease
## 8549 Hypertensive heart and chronic kidney disease without heart failure, with stage 5 chronic kidney disease, or end stage renal disease
## 8550 Hypertensive heart and chronic kidney disease with heart failure and with stage 5 chronic kidney disease, or end stage renal disease
## 8551 Renovascular hypertension
## 8552 Hypertension secondary to other renal disorders
## 8553 Hypertension secondary to endocrine disorders
## 8554 Other secondary hypertension
## 8555 Secondary hypertension, unspecified
## 8556 Hypertensive urgency
## 8557 Hypertensive emergency
## 8558 Hypertensive crisis, unspecified
## 8559 Unstable angina
## 8560 Angina pectoris with documented spasm
## 8561 Other forms of angina pectoris
## 8562 Angina pectoris, unspecified
## 8563 ST elevation (STEMI) myocardial infarction involving left main coronary artery
## 8564 ST elevation (STEMI) myocardial infarction involving left anterior descending coronary artery
## 8565 ST elevation (STEMI) myocardial infarction involving other coronary artery of anterior wall
## 8566 ST elevation (STEMI) myocardial infarction involving right coronary artery
## 8567 ST elevation (STEMI) myocardial infarction involving other coronary artery of inferior wall
## 8568 ST elevation (STEMI) myocardial infarction involving left circumflex coronary artery
## 8569 ST elevation (STEMI) myocardial infarction involving other sites
## 8570 ST elevation (STEMI) myocardial infarction of unspecified site
## 8571 Non-ST elevation (NSTEMI) myocardial infarction
## 8572 Acute myocardial infarction, unspecified
## 8573 Myocardial infarction type 2
## 8574 Other myocardial infarction type
## 8575 Subsequent ST elevation (STEMI) myocardial infarction of anterior wall
## 8576 Subsequent ST elevation (STEMI) myocardial infarction of inferior wall
## 8577 Subsequent non-ST elevation (NSTEMI) myocardial infarction
## 8578 Subsequent ST elevation (STEMI) myocardial infarction of other sites
## 8579 Subsequent ST elevation (STEMI) myocardial infarction of unspecified site
## 8580 Hemopericardium as current complication following acute myocardial infarction
## 8581 Atrial septal defect as current complication following acute myocardial infarction
## 8582 Ventricular septal defect as current complication following acute myocardial infarction
## 8583 Rupture of cardiac wall without hemopericardium as current complication following acute myocardial infarction
## 8584 Rupture of chordae tendineae as current complication following acute myocardial infarction
## 8585 Rupture of papillary muscle as current complication following acute myocardial infarction
## 8586 Thrombosis of atrium, auricular appendage, and ventricle as current complications following acute myocardial infarction
## 8587 Postinfarction angina
## 8588 Other current complications following acute myocardial infarction
## 8589 Acute coronary thrombosis not resulting in myocardial infarction
## 8590 Dressler's syndrome
## 8591 Other forms of acute ischemic heart disease
## 8592 Acute ischemic heart disease, unspecified
## 8593 Atherosclerotic heart disease of native coronary artery without angina pectoris
## 8594 Atherosclerotic heart disease of native coronary artery with unstable angina pectoris
## 8595 Atherosclerotic heart disease of native coronary artery with angina pectoris with documented spasm
## 8596 Atherosclerotic heart disease of native coronary artery with other forms of angina pectoris
## 8597 Atherosclerotic heart disease of native coronary artery with unspecified angina pectoris
## 8598 Old myocardial infarction
## 8599 Aneurysm of heart
## 8600 Coronary artery aneurysm
## 8601 Coronary artery dissection
## 8602 Ischemic cardiomyopathy
## 8603 Silent myocardial ischemia
## 8604 Atherosclerosis of coronary artery bypass graft(s), unspecified, with unstable angina pectoris
## 8605 Atherosclerosis of coronary artery bypass graft(s), unspecified, with angina pectoris with documented spasm
## 8606 Atherosclerosis of coronary artery bypass graft(s), unspecified, with other forms of angina pectoris
## 8607 Atherosclerosis of coronary artery bypass graft(s), unspecified, with unspecified angina pectoris
## 8608 Atherosclerosis of autologous vein coronary artery bypass graft(s) with unstable angina pectoris
## 8609 Atherosclerosis of autologous vein coronary artery bypass graft(s) with angina pectoris with documented spasm
## 8610 Atherosclerosis of autologous vein coronary artery bypass graft(s) with other forms of angina pectoris
## 8611 Atherosclerosis of autologous vein coronary artery bypass graft(s) with unspecified angina pectoris
## 8612 Atherosclerosis of autologous artery coronary artery bypass graft(s) with unstable angina pectoris
## 8613 Atherosclerosis of autologous artery coronary artery bypass graft(s) with angina pectoris with documented spasm
## 8614 Atherosclerosis of autologous artery coronary artery bypass graft(s) with other forms of angina pectoris
## 8615 Atherosclerosis of autologous artery coronary artery bypass graft(s) with unspecified angina pectoris
## 8616 Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unstable angina pectoris
## 8617 Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with angina pectoris with documented spasm
## 8618 Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with other forms of angina pectoris
## 8619 Atherosclerosis of nonautologous biological coronary artery bypass graft(s) with unspecified angina pectoris
## 8620 Atherosclerosis of native coronary artery of transplanted heart with unstable angina
## 8621 Atherosclerosis of native coronary artery of transplanted heart with angina pectoris with documented spasm
## 8622 Atherosclerosis of native coronary artery of transplanted heart with other forms of angina pectoris
## 8623 Atherosclerosis of native coronary artery of transplanted heart with unspecified angina pectoris
## 8624 Atherosclerosis of bypass graft of coronary artery of transplanted heart with unstable angina
## 8625 Atherosclerosis of bypass graft of coronary artery of transplanted heart with angina pectoris with documented spasm
## 8626 Atherosclerosis of bypass graft of coronary artery of transplanted heart with other forms of angina pectoris
## 8627 Atherosclerosis of bypass graft of coronary artery of transplanted heart with unspecified angina pectoris
## 8628 Atherosclerosis of other coronary artery bypass graft(s) with unstable angina pectoris
## 8629 Atherosclerosis of other coronary artery bypass graft(s) with angina pectoris with documented spasm
## 8630 Atherosclerosis of other coronary artery bypass graft(s) with other forms of angina pectoris
## 8631 Atherosclerosis of other coronary artery bypass graft(s) with unspecified angina pectoris
## 8632 Atherosclerosis of coronary artery bypass graft(s) without angina pectoris
## 8633 Atherosclerosis of native coronary artery of transplanted heart without angina pectoris
## 8634 Atherosclerosis of bypass graft of coronary artery of transplanted heart without angina pectoris
## 8635 Chronic total occlusion of coronary artery
## 8636 Coronary atherosclerosis due to lipid rich plaque
## 8637 Coronary atherosclerosis due to calcified coronary lesion
## 8638 Other forms of chronic ischemic heart disease
## 8639 Chronic ischemic heart disease, unspecified
## 8640 Septic pulmonary embolism with acute cor pulmonale
## 8641 Saddle embolus of pulmonary artery with acute cor pulmonale
## 8642 Other pulmonary embolism with acute cor pulmonale
## 8643 Septic pulmonary embolism without acute cor pulmonale
## 8644 Saddle embolus of pulmonary artery without acute cor pulmonale
## 8645 Single subsegmental pulmonary embolism without acute cor pulmonale
## 8646 Multiple subsegmental pulmonary emboli without acute cor pulmonale
## 8647 Other pulmonary embolism without acute cor pulmonale
## 8648 Primary pulmonary hypertension
## 8649 Kyphoscoliotic heart disease
## 8650 Pulmonary hypertension, unspecified
## 8651 Secondary pulmonary arterial hypertension
## 8652 Pulmonary hypertension due to left heart disease
## 8653 Pulmonary hypertension due to lung diseases and hypoxia
## 8654 Chronic thromboembolic pulmonary hypertension
## 8655 Other secondary pulmonary hypertension
## 8656 Cor pulmonale (chronic)
## 8657 Chronic pulmonary embolism
## 8658 Eisenmenger's syndrome
## 8659 Other specified pulmonary heart diseases
## 8660 Pulmonary heart disease, unspecified
## 8661 Arteriovenous fistula of pulmonary vessels
## 8662 Aneurysm of pulmonary artery
## 8663 Other diseases of pulmonary vessels
## 8664 Disease of pulmonary vessels, unspecified
## 8665 Acute nonspecific idiopathic pericarditis
## 8666 Infective pericarditis
## 8667 Other forms of acute pericarditis
## 8668 Acute pericarditis, unspecified
## 8669 Chronic adhesive pericarditis
## 8670 Chronic constrictive pericarditis
## 8671 Hemopericardium, not elsewhere classified
## 8672 Pericardial effusion (noninflammatory)
## 8673 Cardiac tamponade
## 8674 Other specified diseases of pericardium
## 8675 Disease of pericardium, unspecified
## 8676 Pericarditis in diseases classified elsewhere
## 8677 Acute and subacute infective endocarditis
## 8678 Acute and subacute endocarditis, unspecified
## 8679 Nonrheumatic mitral (valve) insufficiency
## 8680 Nonrheumatic mitral (valve) prolapse
## 8681 Nonrheumatic mitral (valve) stenosis
## 8682 Other nonrheumatic mitral valve disorders
## 8683 Nonrheumatic mitral valve disorder, unspecified
## 8684 Nonrheumatic aortic (valve) stenosis
## 8685 Nonrheumatic aortic (valve) insufficiency
## 8686 Nonrheumatic aortic (valve) stenosis with insufficiency
## 8687 Other nonrheumatic aortic valve disorders
## 8688 Nonrheumatic aortic valve disorder, unspecified
## 8689 Nonrheumatic tricuspid (valve) stenosis
## 8690 Nonrheumatic tricuspid (valve) insufficiency
## 8691 Nonrheumatic tricuspid (valve) stenosis with insufficiency
## 8692 Other nonrheumatic tricuspid valve disorders
## 8693 Nonrheumatic tricuspid valve disorder, unspecified
## 8694 Nonrheumatic pulmonary valve stenosis
## 8695 Nonrheumatic pulmonary valve insufficiency
## 8696 Nonrheumatic pulmonary valve stenosis with insufficiency
## 8697 Other nonrheumatic pulmonary valve disorders
## 8698 Nonrheumatic pulmonary valve disorder, unspecified
## 8699 Endocarditis, valve unspecified
## 8700 Endocarditis and heart valve disorders in diseases classified elsewhere
## 8701 Infective myocarditis
## 8702 Isolated myocarditis
## 8703 Other acute myocarditis
## 8704 Acute myocarditis, unspecified
## 8705 Myocarditis in diseases classified elsewhere
## 8706 Dilated cardiomyopathy
## 8707 Obstructive hypertrophic cardiomyopathy
## 8708 Other hypertrophic cardiomyopathy
## 8709 Endomyocardial (eosinophilic) disease
## 8710 Endocardial fibroelastosis
## 8711 Other restrictive cardiomyopathy
## 8712 Alcoholic cardiomyopathy
## 8713 Cardiomyopathy due to drug and external agent
## 8714 Other cardiomyopathies
## 8715 Cardiomyopathy, unspecified
## 8716 Cardiomyopathy in diseases classified elsewhere
## 8717 Atrioventricular block, first degree
## 8718 Atrioventricular block, second degree
## 8719 Atrioventricular block, complete
## 8720 Unspecified atrioventricular block
## 8721 Other atrioventricular block
## 8722 Left anterior fascicular block
## 8723 Left posterior fascicular block
## 8724 Unspecified fascicular block
## 8725 Other fascicular block
## 8726 Left bundle-branch block, unspecified
## 8727 Right fascicular block
## 8728 Unspecified right bundle-branch block
## 8729 Other right bundle-branch block
## 8730 Bifascicular block
## 8731 Trifascicular block
## 8732 Nonspecific intraventricular block
## 8733 Other specified heart block
## 8734 Pre-excitation syndrome
## 8735 Long QT syndrome
## 8736 Other specified conduction disorders
## 8737 Conduction disorder, unspecified
## 8738 Cardiac arrest due to underlying cardiac condition
## 8739 Cardiac arrest due to other underlying condition
## 8740 Cardiac arrest, cause unspecified
## 8741 Re-entry ventricular arrhythmia
## 8742 Supraventricular tachycardia
## 8743 Ventricular tachycardia
## 8744 Paroxysmal tachycardia, unspecified
## 8745 Paroxysmal atrial fibrillation
## 8746 Longstanding persistent atrial fibrillation
## 8747 Other persistent atrial fibrillation
## 8748 Chronic atrial fibrillation, unspecified
## 8749 Permanent atrial fibrillation
## 8750 Typical atrial flutter
## 8751 Atypical atrial flutter
## 8752 Unspecified atrial fibrillation
## 8753 Unspecified atrial flutter
## 8754 Ventricular fibrillation
## 8755 Ventricular flutter
## 8756 Atrial premature depolarization
## 8757 Junctional premature depolarization
## 8758 Ventricular premature depolarization
## 8759 Unspecified premature depolarization
## 8760 Other premature depolarization
## 8761 Sick sinus syndrome
## 8762 Other specified cardiac arrhythmias
## 8763 Cardiac arrhythmia, unspecified
## 8764 Left ventricular failure, unspecified
## 8765 Unspecified systolic (congestive) heart failure
## 8766 Acute systolic (congestive) heart failure
## 8767 Chronic systolic (congestive) heart failure
## 8768 Acute on chronic systolic (congestive) heart failure
## 8769 Unspecified diastolic (congestive) heart failure
## 8770 Acute diastolic (congestive) heart failure
## 8771 Chronic diastolic (congestive) heart failure
## 8772 Acute on chronic diastolic (congestive) heart failure
## 8773 Unspecified combined systolic (congestive) and diastolic (congestive) heart failure
## 8774 Acute combined systolic (congestive) and diastolic (congestive) heart failure
## 8775 Chronic combined systolic (congestive) and diastolic (congestive) heart failure
## 8776 Acute on chronic combined systolic (congestive) and diastolic (congestive) heart failure
## 8777 Right heart failure, unspecified
## 8778 Acute right heart failure
## 8779 Chronic right heart failure
## 8780 Acute on chronic right heart failure
## 8781 Right heart failure due to left heart failure
## 8782 Biventricular heart failure
## 8783 High output heart failure
## 8784 End stage heart failure
## 8785 Other heart failure
## 8786 Heart failure, unspecified
## 8787 Cardiac septal defect, acquired
## 8788 Rupture of chordae tendineae, not elsewhere classified
## 8789 Rupture of papillary muscle, not elsewhere classified
## 8790 Intracardiac thrombosis, not elsewhere classified
## 8791 Myocarditis, unspecified
## 8792 Myocardial degeneration
## 8793 Cardiomegaly
## 8794 Takotsubo syndrome
## 8795 Other ill-defined heart diseases
## 8796 Heart disease, unspecified
## 8797 Other heart disorders in diseases classified elsewhere
## 8798 Nontraumatic subarachnoid hemorrhage from unspecified carotid siphon and bifurcation
## 8799 Nontraumatic subarachnoid hemorrhage from right carotid siphon and bifurcation
## 8800 Nontraumatic subarachnoid hemorrhage from left carotid siphon and bifurcation
## 8801 Nontraumatic subarachnoid hemorrhage from unspecified middle cerebral artery
## 8802 Nontraumatic subarachnoid hemorrhage from right middle cerebral artery
## 8803 Nontraumatic subarachnoid hemorrhage from left middle cerebral artery
## 8804 Nontraumatic subarachnoid hemorrhage from anterior communicating artery
## 8805 Nontraumatic subarachnoid hemorrhage from unspecified posterior communicating artery
## 8806 Nontraumatic subarachnoid hemorrhage from right posterior communicating artery
## 8807 Nontraumatic subarachnoid hemorrhage from left posterior communicating artery
## 8808 Nontraumatic subarachnoid hemorrhage from basilar artery
## 8809 Nontraumatic subarachnoid hemorrhage from unspecified vertebral artery
## 8810 Nontraumatic subarachnoid hemorrhage from right vertebral artery
## 8811 Nontraumatic subarachnoid hemorrhage from left vertebral artery
## 8812 Nontraumatic subarachnoid hemorrhage from other intracranial arteries
## 8813 Nontraumatic subarachnoid hemorrhage from unspecified intracranial artery
## 8814 Other nontraumatic subarachnoid hemorrhage
## 8815 Nontraumatic subarachnoid hemorrhage, unspecified
## 8816 Nontraumatic intracerebral hemorrhage in hemisphere, subcortical
## 8817 Nontraumatic intracerebral hemorrhage in hemisphere, cortical
## 8818 Nontraumatic intracerebral hemorrhage in hemisphere, unspecified
## 8819 Nontraumatic intracerebral hemorrhage in brain stem
## 8820 Nontraumatic intracerebral hemorrhage in cerebellum
## 8821 Nontraumatic intracerebral hemorrhage, intraventricular
## 8822 Nontraumatic intracerebral hemorrhage, multiple localized
## 8823 Other nontraumatic intracerebral hemorrhage
## 8824 Nontraumatic intracerebral hemorrhage, unspecified
## 8825 Nontraumatic subdural hemorrhage, unspecified
## 8826 Nontraumatic acute subdural hemorrhage
## 8827 Nontraumatic subacute subdural hemorrhage
## 8828 Nontraumatic chronic subdural hemorrhage
## 8829 Nontraumatic extradural hemorrhage
## 8830 Nontraumatic intracranial hemorrhage, unspecified
## 8831 Cerebral infarction due to thrombosis of unspecified precerebral artery
## 8832 Cerebral infarction due to thrombosis of right vertebral artery
## 8833 Cerebral infarction due to thrombosis of left vertebral artery
## 8834 Cerebral infarction due to thrombosis of bilateral vertebral arteries
## 8835 Cerebral infarction due to thrombosis of unspecified vertebral artery
## 8836 Cerebral infarction due to thrombosis of basilar artery
## 8837 Cerebral infarction due to thrombosis of right carotid artery
## 8838 Cerebral infarction due to thrombosis of left carotid artery
## 8839 Cerebral infarction due to thrombosis of bilateral carotid arteries
## 8840 Cerebral infarction due to thrombosis of unspecified carotid artery
## 8841 Cerebral infarction due to thrombosis of other precerebral artery
## 8842 Cerebral infarction due to embolism of unspecified precerebral artery
## 8843 Cerebral infarction due to embolism of right vertebral artery
## 8844 Cerebral infarction due to embolism of left vertebral artery
## 8845 Cerebral infarction due to embolism of bilateral vertebral arteries
## 8846 Cerebral infarction due to embolism of unspecified vertebral artery
## 8847 Cerebral infarction due to embolism of basilar artery
## 8848 Cerebral infarction due to embolism of right carotid artery
## 8849 Cerebral infarction due to embolism of left carotid artery
## 8850 Cerebral infarction due to embolism of bilateral carotid arteries
## 8851 Cerebral infarction due to embolism of unspecified carotid artery
## 8852 Cerebral infarction due to embolism of other precerebral artery
## 8853 Cerebral infarction due to unspecified occlusion or stenosis of unspecified precerebral arteries
## 8854 Cerebral infarction due to unspecified occlusion or stenosis of right vertebral artery
## 8855 Cerebral infarction due to unspecified occlusion or stenosis of left vertebral artery
## 8856 Cerebral infarction due to unspecified occlusion or stenosis of bilateral vertebral arteries
## 8857 Cerebral infarction due to unspecified occlusion or stenosis of unspecified vertebral artery
## 8858 Cerebral infarction due to unspecified occlusion or stenosis of basilar artery
## 8859 Cerebral infarction due to unspecified occlusion or stenosis of right carotid arteries
## 8860 Cerebral infarction due to unspecified occlusion or stenosis of left carotid arteries
## 8861 Cerebral infarction due to unspecified occlusion or stenosis of bilateral carotid arteries
## 8862 Cerebral infarction due to unspecified occlusion or stenosis of unspecified carotid artery
## 8863 Cerebral infarction due to unspecified occlusion or stenosis of other precerebral arteries
## 8864 Cerebral infarction due to thrombosis of unspecified cerebral artery
## 8865 Cerebral infarction due to thrombosis of right middle cerebral artery
## 8866 Cerebral infarction due to thrombosis of left middle cerebral artery
## 8867 Cerebral infarction due to thrombosis of bilateral middle cerebral arteries
## 8868 Cerebral infarction due to thrombosis of unspecified middle cerebral artery
## 8869 Cerebral infarction due to thrombosis of right anterior cerebral artery
## 8870 Cerebral infarction due to thrombosis of left anterior cerebral artery
## 8871 Cerebral infarction due to thrombosis of bilateral anterior cerebral arteries
## 8872 Cerebral infarction due to thrombosis of unspecified anterior cerebral artery
## 8873 Cerebral infarction due to thrombosis of right posterior cerebral artery
## 8874 Cerebral infarction due to thrombosis of left posterior cerebral artery
## 8875 Cerebral infarction due to thrombosis of bilateral posterior cerebral arteries
## 8876 Cerebral infarction due to thrombosis of unspecified posterior cerebral artery
## 8877 Cerebral infarction due to thrombosis of right cerebellar artery
## 8878 Cerebral infarction due to thrombosis of left cerebellar artery
## 8879 Cerebral infarction due to thrombosis of bilateral cerebellar arteries
## 8880 Cerebral infarction due to thrombosis of unspecified cerebellar artery
## 8881 Cerebral infarction due to thrombosis of other cerebral artery
## 8882 Cerebral infarction due to embolism of unspecified cerebral artery
## 8883 Cerebral infarction due to embolism of right middle cerebral artery
## 8884 Cerebral infarction due to embolism of left middle cerebral artery
## 8885 Cerebral infarction due to embolism of bilateral middle cerebral arteries
## 8886 Cerebral infarction due to embolism of unspecified middle cerebral artery
## 8887 Cerebral infarction due to embolism of right anterior cerebral artery
## 8888 Cerebral infarction due to embolism of left anterior cerebral artery
## 8889 Cerebral infarction due to embolism of bilateral anterior cerebral arteries
## 8890 Cerebral infarction due to embolism of unspecified anterior cerebral artery
## 8891 Cerebral infarction due to embolism of right posterior cerebral artery
## 8892 Cerebral infarction due to embolism of left posterior cerebral artery
## 8893 Cerebral infarction due to embolism of bilateral posterior cerebral arteries
## 8894 Cerebral infarction due to embolism of unspecified posterior cerebral artery
## 8895 Cerebral infarction due to embolism of right cerebellar artery
## 8896 Cerebral infarction due to embolism of left cerebellar artery
## 8897 Cerebral infarction due to embolism of bilateral cerebellar arteries
## 8898 Cerebral infarction due to embolism of unspecified cerebellar artery
## 8899 Cerebral infarction due to embolism of other cerebral artery
## 8900 Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebral artery
## 8901 Cerebral infarction due to unspecified occlusion or stenosis of right middle cerebral artery
## 8902 Cerebral infarction due to unspecified occlusion or stenosis of left middle cerebral artery
## 8903 Cerebral infarction due to unspecified occlusion or stenosis of bilateral middle cerebral arteries
## 8904 Cerebral infarction due to unspecified occlusion or stenosis of unspecified middle cerebral artery
## 8905 Cerebral infarction due to unspecified occlusion or stenosis of right anterior cerebral artery
## 8906 Cerebral infarction due to unspecified occlusion or stenosis of left anterior cerebral artery
## 8907 Cerebral infarction due to unspecified occlusion or stenosis of bilateral anterior cerebral arteries
## 8908 Cerebral infarction due to unspecified occlusion or stenosis of unspecified anterior cerebral artery
## 8909 Cerebral infarction due to unspecified occlusion or stenosis of right posterior cerebral artery
## 8910 Cerebral infarction due to unspecified occlusion or stenosis of left posterior cerebral artery
## 8911 Cerebral infarction due to unspecified occlusion or stenosis of bilateral posterior cerebral arteries
## 8912 Cerebral infarction due to unspecified occlusion or stenosis of unspecified posterior cerebral artery
## 8913 Cerebral infarction due to unspecified occlusion or stenosis of right cerebellar artery
## 8914 Cerebral infarction due to unspecified occlusion or stenosis of left cerebellar artery
## 8915 Cerebral infarction due to unspecified occlusion or stenosis of bilateral cerebellar arteries
## 8916 Cerebral infarction due to unspecified occlusion or stenosis of unspecified cerebellar artery
## 8917 Cerebral infarction due to unspecified occlusion or stenosis of other cerebral artery
## 8918 Cerebral infarction due to cerebral venous thrombosis, nonpyogenic
## 8919 Other cerebral infarction due to occlusion or stenosis of small artery
## 8920 Other cerebral infarction
## 8921 Cerebral infarction, unspecified
## 8922 Occlusion and stenosis of right vertebral artery
## 8923 Occlusion and stenosis of left vertebral artery
## 8924 Occlusion and stenosis of bilateral vertebral arteries
## 8925 Occlusion and stenosis of unspecified vertebral artery
## 8926 Occlusion and stenosis of basilar artery
## 8927 Occlusion and stenosis of right carotid artery
## 8928 Occlusion and stenosis of left carotid artery
## 8929 Occlusion and stenosis of bilateral carotid arteries
## 8930 Occlusion and stenosis of unspecified carotid artery
## 8931 Occlusion and stenosis of other precerebral arteries
## 8932 Occlusion and stenosis of unspecified precerebral artery
## 8933 Occlusion and stenosis of right middle cerebral artery
## 8934 Occlusion and stenosis of left middle cerebral artery
## 8935 Occlusion and stenosis of bilateral middle cerebral arteries
## 8936 Occlusion and stenosis of unspecified middle cerebral artery
## 8937 Occlusion and stenosis of right anterior cerebral artery
## 8938 Occlusion and stenosis of left anterior cerebral artery
## 8939 Occlusion and stenosis of bilateral anterior cerebral arteries
## 8940 Occlusion and stenosis of unspecified anterior cerebral artery
## 8941 Occlusion and stenosis of right posterior cerebral artery
## 8942 Occlusion and stenosis of left posterior cerebral artery
## 8943 Occlusion and stenosis of bilateral posterior cerebral arteries
## 8944 Occlusion and stenosis of unspecified posterior cerebral artery
## 8945 Occlusion and stenosis of cerebellar arteries
## 8946 Occlusion and stenosis of other cerebral arteries
## 8947 Occlusion and stenosis of unspecified cerebral artery
## 8948 Dissection of cerebral arteries, nonruptured
## 8949 Cerebral aneurysm, nonruptured
## 8950 Cerebral atherosclerosis
## 8951 Progressive vascular leukoencephalopathy
## 8952 Hypertensive encephalopathy
## 8953 Moyamoya disease
## 8954 Nonpyogenic thrombosis of intracranial venous system
## 8955 Cerebral arteritis, not elsewhere classified
## 8956 Acute cerebrovascular insufficiency
## 8957 Cerebral ischemia
## 8958 Posterior reversible encephalopathy syndrome
## 8959 Reversible cerebrovascular vasoconstriction syndrome
## 8960 Other cerebrovascular vasospasm and vasoconstriction
## 8961 Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy
## 8962 Other hereditary cerebrovascular disease
## 8963 Other cerebrovascular disease
## 8964 Cerebrovascular disease, unspecified
## 8965 Cerebral amyloid angiopathy
## 8966 Cerebral arteritis in other diseases classified elsewhere
## 8967 Other cerebrovascular disorders in diseases classified elsewhere
## 8968 Unspecified sequelae of nontraumatic subarachnoid hemorrhage
## 8969 Attention and concentration deficit following nontraumatic subarachnoid hemorrhage
## 8970 Memory deficit following nontraumatic subarachnoid hemorrhage
## 8971 Visuospatial deficit and spatial neglect following nontraumatic subarachnoid hemorrhage
## 8972 Psychomotor deficit following nontraumatic subarachnoid hemorrhage
## 8973 Frontal lobe and executive function deficit following nontraumatic subarachnoid hemorrhage
## 8974 Cognitive social or emotional deficit following nontraumatic subarachnoid hemorrhage
## 8975 Other symptoms and signs involving cognitive functions following nontraumatic subarachnoid hemorrhage
## 8976 Unspecified symptoms and signs involving cognitive functions following nontraumatic subarachnoid hemorrhage
## 8977 Aphasia following nontraumatic subarachnoid hemorrhage
## 8978 Dysphasia following nontraumatic subarachnoid hemorrhage
## 8979 Dysarthria following nontraumatic subarachnoid hemorrhage
## 8980 Fluency disorder following nontraumatic subarachnoid hemorrhage
## 8981 Other speech and language deficits following nontraumatic subarachnoid hemorrhage
## 8982 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting right dominant side
## 8983 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left dominant side
## 8984 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting right non-dominant side
## 8985 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting left non-dominant side
## 8986 Monoplegia of upper limb following nontraumatic subarachnoid hemorrhage affecting unspecified side
## 8987 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting right dominant side
## 8988 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left dominant side
## 8989 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting right non-dominant side
## 8990 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting left non-dominant side
## 8991 Monoplegia of lower limb following nontraumatic subarachnoid hemorrhage affecting unspecified side
## 8992 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting right dominant side
## 8993 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting left dominant side
## 8994 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting right non-dominant side
## 8995 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting left non-dominant side
## 8996 Hemiplegia and hemiparesis following nontraumatic subarachnoid hemorrhage affecting unspecified side
## 8997 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting right dominant side
## 8998 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left dominant side
## 8999 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting right non-dominant side
## 9000 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting left non-dominant side
## 9001 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage, bilateral
## 9002 Other paralytic syndrome following nontraumatic subarachnoid hemorrhage affecting unspecified side
## 9003 Apraxia following nontraumatic subarachnoid hemorrhage
## 9004 Dysphagia following nontraumatic subarachnoid hemorrhage
## 9005 Facial weakness following nontraumatic subarachnoid hemorrhage
## 9006 Ataxia following nontraumatic subarachnoid hemorrhage
## 9007 Other sequelae following nontraumatic subarachnoid hemorrhage
## 9008 Unspecified sequelae of nontraumatic intracerebral hemorrhage
## 9009 Attention and concentration deficit following nontraumatic intracerebral hemorrhage
## 9010 Memory deficit following nontraumatic intracerebral hemorrhage
## 9011 Visuospatial deficit and spatial neglect following nontraumatic intracerebral hemorrhage
## 9012 Psychomotor deficit following nontraumatic intracerebral hemorrhage
## 9013 Frontal lobe and executive function deficit following nontraumatic intracerebral hemorrhage
## 9014 Cognitive social or emotional deficit following nontraumatic intracerebral hemorrhage
## 9015 Other symptoms and signs involving cognitive functions following nontraumatic intracerebral hemorrhage
## 9016 Unspecified symptoms and signs involving cognitive functions following nontraumatic intracerebral hemorrhage
## 9017 Aphasia following nontraumatic intracerebral hemorrhage
## 9018 Dysphasia following nontraumatic intracerebral hemorrhage
## 9019 Dysarthria following nontraumatic intracerebral hemorrhage
## 9020 Fluency disorder following nontraumatic intracerebral hemorrhage
## 9021 Other speech and language deficits following nontraumatic intracerebral hemorrhage
## 9022 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting right dominant side
## 9023 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting left dominant side
## 9024 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting right non-dominant side
## 9025 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting left non-dominant side
## 9026 Monoplegia of upper limb following nontraumatic intracerebral hemorrhage affecting unspecified side
## 9027 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting right dominant side
## 9028 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting left dominant side
## 9029 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting right non-dominant side
## 9030 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting left non-dominant side
## 9031 Monoplegia of lower limb following nontraumatic intracerebral hemorrhage affecting unspecified side
## 9032 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting right dominant side
## 9033 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting left dominant side
## 9034 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting right non-dominant side
## 9035 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting left non-dominant side
## 9036 Hemiplegia and hemiparesis following nontraumatic intracerebral hemorrhage affecting unspecified side
## 9037 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting right dominant side
## 9038 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting left dominant side
## 9039 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting right non-dominant side
## 9040 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting left non-dominant side
## 9041 Other paralytic syndrome following nontraumatic intracerebral hemorrhage, bilateral
## 9042 Other paralytic syndrome following nontraumatic intracerebral hemorrhage affecting unspecified side
## 9043 Apraxia following nontraumatic intracerebral hemorrhage
## 9044 Dysphagia following nontraumatic intracerebral hemorrhage
## 9045 Facial weakness following nontraumatic intracerebral hemorrhage
## 9046 Ataxia following nontraumatic intracerebral hemorrhage
## 9047 Other sequelae of nontraumatic intracerebral hemorrhage
## 9048 Unspecified sequelae of other nontraumatic intracranial hemorrhage
## 9049 Attention and concentration deficit following other nontraumatic intracranial hemorrhage
## 9050 Memory deficit following other nontraumatic intracranial hemorrhage
## 9051 Visuospatial deficit and spatial neglect following other nontraumatic intracranial hemorrhage
## 9052 Psychomotor deficit following other nontraumatic intracranial hemorrhage
## 9053 Frontal lobe and executive function deficit following other nontraumatic intracranial hemorrhage
## 9054 Cognitive social or emotional deficit following other nontraumatic intracranial hemorrhage
## 9055 Other symptoms and signs involving cognitive functions following other nontraumatic intracranial hemorrhage
## 9056 Unspecified symptoms and signs involving cognitive functions following other nontraumatic intracranial hemorrhage
## 9057 Aphasia following other nontraumatic intracranial hemorrhage
## 9058 Dysphasia following other nontraumatic intracranial hemorrhage
## 9059 Dysarthria following other nontraumatic intracranial hemorrhage
## 9060 Fluency disorder following other nontraumatic intracranial hemorrhage
## 9061 Other speech and language deficits following other nontraumatic intracranial hemorrhage
## 9062 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting right dominant side
## 9063 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting left dominant side
## 9064 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting right non-dominant side
## 9065 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting left non-dominant side
## 9066 Monoplegia of upper limb following other nontraumatic intracranial hemorrhage affecting unspecified side
## 9067 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting right dominant side
## 9068 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting left dominant side
## 9069 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting right non-dominant side
## 9070 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting left non-dominant side
## 9071 Monoplegia of lower limb following other nontraumatic intracranial hemorrhage affecting unspecified side
## 9072 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting right dominant side
## 9073 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting left dominant side
## 9074 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting right non-dominant side
## 9075 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting left non-dominant side
## 9076 Hemiplegia and hemiparesis following other nontraumatic intracranial hemorrhage affecting unspecified side
## 9077 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting right dominant side
## 9078 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting left dominant side
## 9079 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting right non-dominant side
## 9080 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting left non-dominant side
## 9081 Other paralytic syndrome following other nontraumatic intracranial hemorrhage, bilateral
## 9082 Other paralytic syndrome following other nontraumatic intracranial hemorrhage affecting unspecified side
## 9083 Apraxia following other nontraumatic intracranial hemorrhage
## 9084 Dysphagia following other nontraumatic intracranial hemorrhage
## 9085 Facial weakness following other nontraumatic intracranial hemorrhage
## 9086 Ataxia following other nontraumatic intracranial hemorrhage
## 9087 Other sequelae of other nontraumatic intracranial hemorrhage
## 9088 Unspecified sequelae of cerebral infarction
## 9089 Attention and concentration deficit following cerebral infarction
## 9090 Memory deficit following cerebral infarction
## 9091 Visuospatial deficit and spatial neglect following cerebral infarction
## 9092 Psychomotor deficit following cerebral infarction
## 9093 Frontal lobe and executive function deficit following cerebral infarction
## 9094 Cognitive social or emotional deficit following cerebral infarction
## 9095 Other symptoms and signs involving cognitive functions following cerebral infarction
## 9096 Unspecified symptoms and signs involving cognitive functions following cerebral infarction
## 9097 Aphasia following cerebral infarction
## 9098 Dysphasia following cerebral infarction
## 9099 Dysarthria following cerebral infarction
## 9100 Fluency disorder following cerebral infarction
## 9101 Other speech and language deficits following cerebral infarction
## 9102 Monoplegia of upper limb following cerebral infarction affecting right dominant side
## 9103 Monoplegia of upper limb following cerebral infarction affecting left dominant side
## 9104 Monoplegia of upper limb following cerebral infarction affecting right non-dominant side
## 9105 Monoplegia of upper limb following cerebral infarction affecting left non-dominant side
## 9106 Monoplegia of upper limb following cerebral infarction affecting unspecified side
## 9107 Monoplegia of lower limb following cerebral infarction affecting right dominant side
## 9108 Monoplegia of lower limb following cerebral infarction affecting left dominant side
## 9109 Monoplegia of lower limb following cerebral infarction affecting right non-dominant side
## 9110 Monoplegia of lower limb following cerebral infarction affecting left non-dominant side
## 9111 Monoplegia of lower limb following cerebral infarction affecting unspecified side
## 9112 Hemiplegia and hemiparesis following cerebral infarction affecting right dominant side
## 9113 Hemiplegia and hemiparesis following cerebral infarction affecting left dominant side
## 9114 Hemiplegia and hemiparesis following cerebral infarction affecting right non-dominant side
## 9115 Hemiplegia and hemiparesis following cerebral infarction affecting left non-dominant side
## 9116 Hemiplegia and hemiparesis following cerebral infarction affecting unspecified side
## 9117 Other paralytic syndrome following cerebral infarction affecting right dominant side
## 9118 Other paralytic syndrome following cerebral infarction affecting left dominant side
## 9119 Other paralytic syndrome following cerebral infarction affecting right non-dominant side
## 9120 Other paralytic syndrome following cerebral infarction affecting left non-dominant side
## 9121 Other paralytic syndrome following cerebral infarction, bilateral
## 9122 Other paralytic syndrome following cerebral infarction affecting unspecified side
## 9123 Apraxia following cerebral infarction
## 9124 Dysphagia following cerebral infarction
## 9125 Facial weakness following cerebral infarction
## 9126 Ataxia following cerebral infarction
## 9127 Other sequelae of cerebral infarction
## 9128 Unspecified sequelae of other cerebrovascular disease
## 9129 Attention and concentration deficit following other cerebrovascular disease
## 9130 Memory deficit following other cerebrovascular disease
## 9131 Visuospatial deficit and spatial neglect following other cerebrovascular disease
## 9132 Psychomotor deficit following other cerebrovascular disease
## 9133 Frontal lobe and executive function deficit following other cerebrovascular disease
## 9134 Cognitive social or emotional deficit following other cerebrovascular disease
## 9135 Other symptoms and signs involving cognitive functions following other cerebrovascular disease
## 9136 Unspecified symptoms and signs involving cognitive functions following other cerebrovascular disease
## 9137 Aphasia following other cerebrovascular disease
## 9138 Dysphasia following other cerebrovascular disease
## 9139 Dysarthria following other cerebrovascular disease
## 9140 Fluency disorder following other cerebrovascular disease
## 9141 Other speech and language deficits following other cerebrovascular disease
## 9142 Monoplegia of upper limb following other cerebrovascular disease affecting right dominant side
## 9143 Monoplegia of upper limb following other cerebrovascular disease affecting left dominant side
## 9144 Monoplegia of upper limb following other cerebrovascular disease affecting right non-dominant side
## 9145 Monoplegia of upper limb following other cerebrovascular disease affecting left non-dominant side
## 9146 Monoplegia of upper limb following other cerebrovascular disease affecting unspecified side
## 9147 Monoplegia of lower limb following other cerebrovascular disease affecting right dominant side
## 9148 Monoplegia of lower limb following other cerebrovascular disease affecting left dominant side
## 9149 Monoplegia of lower limb following other cerebrovascular disease affecting right non-dominant side
## 9150 Monoplegia of lower limb following other cerebrovascular disease affecting left non-dominant side
## 9151 Monoplegia of lower limb following other cerebrovascular disease affecting unspecified side
## 9152 Hemiplegia and hemiparesis following other cerebrovascular disease affecting right dominant side
## 9153 Hemiplegia and hemiparesis following other cerebrovascular disease affecting left dominant side
## 9154 Hemiplegia and hemiparesis following other cerebrovascular disease affecting right non-dominant side
## 9155 Hemiplegia and hemiparesis following other cerebrovascular disease affecting left non-dominant side
## 9156 Hemiplegia and hemiparesis following other cerebrovascular disease affecting unspecified side
## 9157 Other paralytic syndrome following other cerebrovascular disease affecting right dominant side
## 9158 Other paralytic syndrome following other cerebrovascular disease affecting left dominant side
## 9159 Other paralytic syndrome following other cerebrovascular disease affecting right non-dominant side
## 9160 Other paralytic syndrome following other cerebrovascular disease affecting left non-dominant side
## 9161 Other paralytic syndrome following other cerebrovascular disease, bilateral
## 9162 Other paralytic syndrome following other cerebrovascular disease affecting unspecified side
## 9163 Apraxia following other cerebrovascular disease
## 9164 Dysphagia following other cerebrovascular disease
## 9165 Facial weakness following other cerebrovascular disease
## 9166 Ataxia following other cerebrovascular disease
## 9167 Other sequelae of other cerebrovascular disease
## 9168 Unspecified sequelae of unspecified cerebrovascular disease
## 9169 Attention and concentration deficit following unspecified cerebrovascular disease
## 9170 Memory deficit following unspecified cerebrovascular disease
## 9171 Visuospatial deficit and spatial neglect following unspecified cerebrovascular disease
## 9172 Psychomotor deficit following unspecified cerebrovascular disease
## 9173 Frontal lobe and executive function deficit following unspecified cerebrovascular disease
## 9174 Cognitive social or emotional deficit following unspecified cerebrovascular disease
## 9175 Other symptoms and signs involving cognitive functions following unspecified cerebrovascular disease
## 9176 Unspecified symptoms and signs involving cognitive functions following unspecified cerebrovascular disease
## 9177 Aphasia following unspecified cerebrovascular disease
## 9178 Dysphasia following unspecified cerebrovascular disease
## 9179 Dysarthria following unspecified cerebrovascular disease
## 9180 Fluency disorder following unspecified cerebrovascular disease
## 9181 Other speech and language deficits following unspecified cerebrovascular disease
## 9182 Monoplegia of upper limb following unspecified cerebrovascular disease affecting right dominant side
## 9183 Monoplegia of upper limb following unspecified cerebrovascular disease affecting left dominant side
## 9184 Monoplegia of upper limb following unspecified cerebrovascular disease affecting right non-dominant side
## 9185 Monoplegia of upper limb following unspecified cerebrovascular disease affecting left non-dominant side
## 9186 Monoplegia of upper limb following unspecified cerebrovascular disease affecting unspecified side
## 9187 Monoplegia of lower limb following unspecified cerebrovascular disease affecting right dominant side
## 9188 Monoplegia of lower limb following unspecified cerebrovascular disease affecting left dominant side
## 9189 Monoplegia of lower limb following unspecified cerebrovascular disease affecting right non-dominant side
## 9190 Monoplegia of lower limb following unspecified cerebrovascular disease affecting left non-dominant side
## 9191 Monoplegia of lower limb following unspecified cerebrovascular disease affecting unspecified side
## 9192 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting right dominant side
## 9193 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting left dominant side
## 9194 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting right non-dominant side
## 9195 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting left non-dominant side
## 9196 Hemiplegia and hemiparesis following unspecified cerebrovascular disease affecting unspecified side
## 9197 Other paralytic syndrome following unspecified cerebrovascular disease affecting right dominant side
## 9198 Other paralytic syndrome following unspecified cerebrovascular disease affecting left dominant side
## 9199 Other paralytic syndrome following unspecified cerebrovascular disease affecting right non-dominant side
## 9200 Other paralytic syndrome following unspecified cerebrovascular disease affecting left non-dominant side
## 9201 Other paralytic syndrome following unspecified cerebrovascular disease, bilateral
## 9202 Other paralytic syndrome following unspecified cerebrovascular disease affecting unspecified side
## 9203 Apraxia following unspecified cerebrovascular disease
## 9204 Dysphagia following unspecified cerebrovascular disease
## 9205 Facial weakness following unspecified cerebrovascular disease
## 9206 Ataxia following unspecified cerebrovascular disease
## 9207 Other sequelae following unspecified cerebrovascular disease
## 9208 Atherosclerosis of aorta
## 9209 Atherosclerosis of renal artery
## 9210 Unspecified atherosclerosis of native arteries of extremities, right leg
## 9211 Unspecified atherosclerosis of native arteries of extremities, left leg
## 9212 Unspecified atherosclerosis of native arteries of extremities, bilateral legs
## 9213 Unspecified atherosclerosis of native arteries of extremities, other extremity
## 9214 Unspecified atherosclerosis of native arteries of extremities, unspecified extremity
## 9215 Atherosclerosis of native arteries of extremities with intermittent claudication, right leg
## 9216 Atherosclerosis of native arteries of extremities with intermittent claudication, left leg
## 9217 Atherosclerosis of native arteries of extremities with intermittent claudication, bilateral legs
## 9218 Atherosclerosis of native arteries of extremities with intermittent claudication, other extremity
## 9219 Atherosclerosis of native arteries of extremities with intermittent claudication, unspecified extremity
## 9220 Atherosclerosis of native arteries of extremities with rest pain, right leg
## 9221 Atherosclerosis of native arteries of extremities with rest pain, left leg
## 9222 Atherosclerosis of native arteries of extremities with rest pain, bilateral legs
## 9223 Atherosclerosis of native arteries of extremities with rest pain, other extremity
## 9224 Atherosclerosis of native arteries of extremities with rest pain, unspecified extremity
## 9225 Atherosclerosis of native arteries of right leg with ulceration of thigh
## 9226 Atherosclerosis of native arteries of right leg with ulceration of calf
## 9227 Atherosclerosis of native arteries of right leg with ulceration of ankle
## 9228 Atherosclerosis of native arteries of right leg with ulceration of heel and midfoot
## 9229 Atherosclerosis of native arteries of right leg with ulceration of other part of foot
## 9230 Atherosclerosis of native arteries of right leg with ulceration of other part of lower leg
## 9231 Atherosclerosis of native arteries of right leg with ulceration of unspecified site
## 9232 Atherosclerosis of native arteries of left leg with ulceration of thigh
## 9233 Atherosclerosis of native arteries of left leg with ulceration of calf
## 9234 Atherosclerosis of native arteries of left leg with ulceration of ankle
## 9235 Atherosclerosis of native arteries of left leg with ulceration of heel and midfoot
## 9236 Atherosclerosis of native arteries of left leg with ulceration of other part of foot
## 9237 Atherosclerosis of native arteries of left leg with ulceration of other part of lower leg
## 9238 Atherosclerosis of native arteries of left leg with ulceration of unspecified site
## 9239 Atherosclerosis of native arteries of other extremities with ulceration
## 9240 Atherosclerosis of native arteries of extremities with gangrene, right leg
## 9241 Atherosclerosis of native arteries of extremities with gangrene, left leg
## 9242 Atherosclerosis of native arteries of extremities with gangrene, bilateral legs
## 9243 Atherosclerosis of native arteries of extremities with gangrene, other extremity
## 9244 Atherosclerosis of native arteries of extremities with gangrene, unspecified extremity
## 9245 Other atherosclerosis of native arteries of extremities, right leg
## 9246 Other atherosclerosis of native arteries of extremities, left leg
## 9247 Other atherosclerosis of native arteries of extremities, bilateral legs
## 9248 Other atherosclerosis of native arteries of extremities, other extremity
## 9249 Other atherosclerosis of native arteries of extremities, unspecified extremity
## 9250 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg
## 9251 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg
## 9252 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs
## 9253 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity
## 9254 Unspecified atherosclerosis of unspecified type of bypass graft(s) of the extremities, unspecified extremity
## 9255 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, right leg
## 9256 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, left leg
## 9257 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, bilateral legs
## 9258 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, other extremity
## 9259 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with intermittent claudication, unspecified extremity
## 9260 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, right leg
## 9261 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, left leg
## 9262 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, bilateral legs
## 9263 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, other extremity
## 9264 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with rest pain, unspecified extremity
## 9265 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of thigh
## 9266 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of calf
## 9267 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of ankle
## 9268 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of heel and midfoot
## 9269 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of other part of foot
## 9270 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of other part of lower leg
## 9271 Atherosclerosis of unspecified type of bypass graft(s) of the right leg with ulceration of unspecified site
## 9272 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of thigh
## 9273 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of calf
## 9274 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of ankle
## 9275 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of heel and midfoot
## 9276 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of other part of foot
## 9277 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of other part of lower leg
## 9278 Atherosclerosis of unspecified type of bypass graft(s) of the left leg with ulceration of unspecified site
## 9279 Atherosclerosis of unspecified type of bypass graft(s) of other extremity with ulceration
## 9280 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, right leg
## 9281 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, left leg
## 9282 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, bilateral legs
## 9283 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, other extremity
## 9284 Atherosclerosis of unspecified type of bypass graft(s) of the extremities with gangrene, unspecified extremity
## 9285 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, right leg
## 9286 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, left leg
## 9287 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, bilateral legs
## 9288 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, other extremity
## 9289 Other atherosclerosis of unspecified type of bypass graft(s) of the extremities, unspecified extremity
## 9290 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg
## 9291 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg
## 9292 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs
## 9293 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity
## 9294 Unspecified atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity
## 9295 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, right leg
## 9296 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, left leg
## 9297 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, bilateral legs
## 9298 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, other extremity
## 9299 Atherosclerosis of autologous vein bypass graft(s) of the extremities with intermittent claudication, unspecified extremity
## 9300 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, right leg
## 9301 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, left leg
## 9302 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, bilateral legs
## 9303 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, other extremity
## 9304 Atherosclerosis of autologous vein bypass graft(s) of the extremities with rest pain, unspecified extremity
## 9305 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of thigh
## 9306 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of calf
## 9307 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of ankle
## 9308 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of heel and midfoot
## 9309 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of other part of foot
## 9310 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of other part of lower leg
## 9311 Atherosclerosis of autologous vein bypass graft(s) of the right leg with ulceration of unspecified site
## 9312 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of thigh
## 9313 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of calf
## 9314 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of ankle
## 9315 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of heel and midfoot
## 9316 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of other part of foot
## 9317 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of other part of lower leg
## 9318 Atherosclerosis of autologous vein bypass graft(s) of the left leg with ulceration of unspecified site
## 9319 Atherosclerosis of autologous vein bypass graft(s) of other extremity with ulceration
## 9320 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, right leg
## 9321 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, left leg
## 9322 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, bilateral legs
## 9323 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, other extremity
## 9324 Atherosclerosis of autologous vein bypass graft(s) of the extremities with gangrene, unspecified extremity
## 9325 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, right leg
## 9326 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, left leg
## 9327 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, bilateral legs
## 9328 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, other extremity
## 9329 Other atherosclerosis of autologous vein bypass graft(s) of the extremities, unspecified extremity
## 9330 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg
## 9331 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg
## 9332 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs
## 9333 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, other extremity
## 9334 Unspecified atherosclerosis of nonautologous biological bypass graft(s) of the extremities, unspecified extremity
## 9335 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, right leg
## 9336 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, left leg
## 9337 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, bilateral legs
## 9338 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, other extremity
## 9339 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with intermittent claudication, unspecified extremity
## 9340 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, right leg
## 9341 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, left leg
## 9342 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, bilateral legs
## 9343 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, other extremity
## 9344 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with rest pain, unspecified extremity
## 9345 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of thigh
## 9346 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of calf
## 9347 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of ankle
## 9348 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of heel and midfoot
## 9349 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of other part of foot
## 9350 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of other part of lower leg
## 9351 Atherosclerosis of nonautologous biological bypass graft(s) of the right leg with ulceration of unspecified site
## 9352 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of thigh
## 9353 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of calf
## 9354 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of ankle
## 9355 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of heel and midfoot
## 9356 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of other part of foot
## 9357 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of other part of lower leg
## 9358 Atherosclerosis of nonautologous biological bypass graft(s) of the left leg with ulceration of unspecified site
## 9359 Atherosclerosis of nonautologous biological bypass graft(s) of other extremity with ulceration
## 9360 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, right leg
## 9361 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, left leg
## 9362 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, bilateral legs
## 9363 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, other extremity
## 9364 Atherosclerosis of nonautologous biological bypass graft(s) of the extremities with gangrene, unspecified extremity
## 9365 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, right leg
## 9366 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, left leg
## 9367 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, bilateral legs
## 9368 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, other extremity
## 9369 Other atherosclerosis of nonautologous biological bypass graft(s) of the extremities, unspecified extremity
## 9370 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg
## 9371 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg
## 9372 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs
## 9373 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity
## 9374 Unspecified atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity
## 9375 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, right leg
## 9376 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, left leg
## 9377 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, bilateral legs
## 9378 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, other extremity
## 9379 Atherosclerosis of nonbiological bypass graft(s) of the extremities with intermittent claudication, unspecified extremity
## 9380 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, right leg
## 9381 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, left leg
## 9382 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, bilateral legs
## 9383 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, other extremity
## 9384 Atherosclerosis of nonbiological bypass graft(s) of the extremities with rest pain, unspecified extremity
## 9385 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of thigh
## 9386 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of calf
## 9387 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of ankle
## 9388 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of heel and midfoot
## 9389 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of other part of foot
## 9390 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of other part of lower leg
## 9391 Atherosclerosis of nonbiological bypass graft(s) of the right leg with ulceration of unspecified site
## 9392 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of thigh
## 9393 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of calf
## 9394 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of ankle
## 9395 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of heel and midfoot
## 9396 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of other part of foot
## 9397 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of other part of lower leg
## 9398 Atherosclerosis of nonbiological bypass graft(s) of the left leg with ulceration of unspecified site
## 9399 Atherosclerosis of nonbiological bypass graft(s) of other extremity with ulceration
## 9400 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, right leg
## 9401 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, left leg
## 9402 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, bilateral legs
## 9403 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, other extremity
## 9404 Atherosclerosis of nonbiological bypass graft(s) of the extremities with gangrene, unspecified extremity
## 9405 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, right leg
## 9406 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, left leg
## 9407 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, bilateral legs
## 9408 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, other extremity
## 9409 Other atherosclerosis of nonbiological bypass graft(s) of the extremities, unspecified extremity
## 9410 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, right leg
## 9411 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, left leg
## 9412 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs
## 9413 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, other extremity
## 9414 Unspecified atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity
## 9415 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, right leg
## 9416 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, left leg
## 9417 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, bilateral legs
## 9418 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, other extremity
## 9419 Atherosclerosis of other type of bypass graft(s) of the extremities with intermittent claudication, unspecified extremity
## 9420 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, right leg
## 9421 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, left leg
## 9422 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, bilateral legs
## 9423 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, other extremity
## 9424 Atherosclerosis of other type of bypass graft(s) of the extremities with rest pain, unspecified extremity
## 9425 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of thigh
## 9426 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of calf
## 9427 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of ankle
## 9428 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of heel and midfoot
## 9429 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of other part of foot
## 9430 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of other part of lower leg
## 9431 Atherosclerosis of other type of bypass graft(s) of the right leg with ulceration of unspecified site
## 9432 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of thigh
## 9433 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of calf
## 9434 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of ankle
## 9435 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of heel and midfoot
## 9436 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of other part of foot
## 9437 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of other part of lower leg
## 9438 Atherosclerosis of other type of bypass graft(s) of the left leg with ulceration of unspecified site
## 9439 Atherosclerosis of other type of bypass graft(s) of other extremity with ulceration
## 9440 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, right leg
## 9441 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, left leg
## 9442 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, bilateral legs
## 9443 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, other extremity
## 9444 Atherosclerosis of other type of bypass graft(s) of the extremities with gangrene, unspecified extremity
## 9445 Other atherosclerosis of other type of bypass graft(s) of the extremities, right leg
## 9446 Other atherosclerosis of other type of bypass graft(s) of the extremities, left leg
## 9447 Other atherosclerosis of other type of bypass graft(s) of the extremities, bilateral legs
## 9448 Other atherosclerosis of other type of bypass graft(s) of the extremities, other extremity
## 9449 Other atherosclerosis of other type of bypass graft(s) of the extremities, unspecified extremity
## 9450 Atherosclerosis of other arteries
## 9451 Unspecified atherosclerosis
## 9452 Generalized atherosclerosis
## 9453 Chronic total occlusion of artery of the extremities
## 9454 Dissection of unspecified site of aorta
## 9455 Dissection of thoracic aorta
## 9456 Dissection of abdominal aorta
## 9457 Dissection of thoracoabdominal aorta
## 9458 Thoracic aortic aneurysm, ruptured
## 9459 Thoracic aortic aneurysm, without rupture
## 9460 Abdominal aortic aneurysm, ruptured
## 9461 Abdominal aortic aneurysm, without rupture
## 9462 Thoracoabdominal aortic aneurysm, ruptured
## 9463 Thoracoabdominal aortic aneurysm, without rupture
## 9464 Aortic aneurysm of unspecified site, ruptured
## 9465 Aortic aneurysm of unspecified site, without rupture
## 9466 Aneurysm of carotid artery
## 9467 Aneurysm of artery of upper extremity
## 9468 Aneurysm of renal artery
## 9469 Aneurysm of iliac artery
## 9470 Aneurysm of artery of lower extremity
## 9471 Aneurysm of other precerebral arteries
## 9472 Aneurysm of vertebral artery
## 9473 Aneurysm of other specified arteries
## 9474 Aneurysm of unspecified site
## 9475 Raynaud's syndrome without gangrene
## 9476 Raynaud's syndrome with gangrene
## 9477 Thromboangiitis obliterans [Buerger's disease]
## 9478 Erythromelalgia
## 9479 Other specified peripheral vascular diseases
## 9480 Peripheral vascular disease, unspecified
## 9481 Saddle embolus of abdominal aorta
## 9482 Other arterial embolism and thrombosis of abdominal aorta
## 9483 Embolism and thrombosis of unspecified parts of aorta
## 9484 Embolism and thrombosis of thoracic aorta
## 9485 Embolism and thrombosis of other parts of aorta
## 9486 Embolism and thrombosis of arteries of the upper extremities
## 9487 Embolism and thrombosis of arteries of the lower extremities
## 9488 Embolism and thrombosis of arteries of extremities, unspecified
## 9489 Embolism and thrombosis of iliac artery
## 9490 Embolism and thrombosis of other arteries
## 9491 Embolism and thrombosis of unspecified artery
## 9492 Atheroembolism of right upper extremity
## 9493 Atheroembolism of left upper extremity
## 9494 Atheroembolism of bilateral upper extremities
## 9495 Atheroembolism of unspecified upper extremity
## 9496 Atheroembolism of right lower extremity
## 9497 Atheroembolism of left lower extremity
## 9498 Atheroembolism of bilateral lower extremities
## 9499 Atheroembolism of unspecified lower extremity
## 9500 Atheroembolism of kidney
## 9501 Atheroembolism of other site
## 9502 Septic arterial embolism
## 9503 Arteriovenous fistula, acquired
## 9504 Stricture of artery
## 9505 Rupture of artery
## 9506 Arterial fibromuscular dysplasia
## 9507 Celiac artery compression syndrome
## 9508 Necrosis of artery
## 9509 Arteritis, unspecified
## 9510 Dissection of unspecified artery
## 9511 Dissection of carotid artery
## 9512 Dissection of iliac artery
## 9513 Dissection of renal artery
## 9514 Dissection of vertebral artery
## 9515 Dissection of other precerebral arteries
## 9516 Dissection of artery of upper extremity
## 9517 Dissection of artery of lower extremity
## 9518 Dissection of other specified artery
## 9519 Thoracic aortic ectasia
## 9520 Abdominal aortic ectasia
## 9521 Thoracoabdominal aortic ectasia
## 9522 Aortic ectasia, unspecified site
## 9523 Other specified disorders of arteries and arterioles
## 9524 Disorder of arteries and arterioles, unspecified
## 9525 Hereditary hemorrhagic telangiectasia
## 9526 Nevus, non-neoplastic
## 9527 Other diseases of capillaries
## 9528 Disease of capillaries, unspecified
## 9529 Aneurysm of aorta in diseases classified elsewhere
## 9530 Aortitis in diseases classified elsewhere
## 9531 Other disorders of arteries, arterioles and capillaries in diseases classified elsewhere
## 9532 Phlebitis and thrombophlebitis of superficial vessels of unspecified lower extremity
## 9533 Phlebitis and thrombophlebitis of superficial vessels of right lower extremity
## 9534 Phlebitis and thrombophlebitis of superficial vessels of left lower extremity
## 9535 Phlebitis and thrombophlebitis of superficial vessels of lower extremities, bilateral
## 9536 Phlebitis and thrombophlebitis of unspecified femoral vein
## 9537 Phlebitis and thrombophlebitis of right femoral vein
## 9538 Phlebitis and thrombophlebitis of left femoral vein
## 9539 Phlebitis and thrombophlebitis of femoral vein, bilateral
## 9540 Phlebitis and thrombophlebitis of unspecified deep vessels of right lower extremity
## 9541 Phlebitis and thrombophlebitis of unspecified deep vessels of left lower extremity
## 9542 Phlebitis and thrombophlebitis of unspecified deep vessels of lower extremities, bilateral
## 9543 Phlebitis and thrombophlebitis of unspecified deep vessels of unspecified lower extremity
## 9544 Phlebitis and thrombophlebitis of right iliac vein
## 9545 Phlebitis and thrombophlebitis of left iliac vein
## 9546 Phlebitis and thrombophlebitis of iliac vein, bilateral
## 9547 Phlebitis and thrombophlebitis of unspecified iliac vein
## 9548 Phlebitis and thrombophlebitis of right popliteal vein
## 9549 Phlebitis and thrombophlebitis of left popliteal vein
## 9550 Phlebitis and thrombophlebitis of popliteal vein, bilateral
## 9551 Phlebitis and thrombophlebitis of unspecified popliteal vein
## 9552 Phlebitis and thrombophlebitis of right tibial vein
## 9553 Phlebitis and thrombophlebitis of left tibial vein
## 9554 Phlebitis and thrombophlebitis of tibial vein, bilateral
## 9555 Phlebitis and thrombophlebitis of unspecified tibial vein
## 9556 Phlebitis and thrombophlebitis of right peroneal vein
## 9557 Phlebitis and thrombophlebitis of left peroneal vein
## 9558 Phlebitis and thrombophlebitis of peroneal vein, bilateral
## 9559 Phlebitis and thrombophlebitis of unspecified peroneal vein
## 9560 Phlebitis and thrombophlebitis of right calf muscular vein
## 9561 Phlebitis and thrombophlebitis of left calf muscular vein
## 9562 Phlebitis and thrombophlebitis of calf muscular vein, bilateral
## 9563 Phlebitis and thrombophlebitis of unspecified calf muscular vein
## 9564 Phlebitis and thrombophlebitis of other deep vessels of right lower extremity
## 9565 Phlebitis and thrombophlebitis of other deep vessels of left lower extremity
## 9566 Phlebitis and thrombophlebitis of other deep vessels of lower extremity, bilateral
## 9567 Phlebitis and thrombophlebitis of other deep vessels of unspecified lower extremity
## 9568 Phlebitis and thrombophlebitis of lower extremities, unspecified
## 9569 Phlebitis and thrombophlebitis of other sites
## 9570 Phlebitis and thrombophlebitis of unspecified site
## 9571 Portal vein thrombosis
## 9572 Budd-Chiari syndrome
## 9573 Thrombophlebitis migrans
## 9574 Acute embolism and thrombosis of superior vena cava
## 9575 Chronic embolism and thrombosis of superior vena cava
## 9576 Acute embolism and thrombosis of inferior vena cava
## 9577 Chronic embolism and thrombosis of inferior vena cava
## 9578 Acute embolism and thrombosis of other thoracic veins
## 9579 Chronic embolism and thrombosis of other thoracic veins
## 9580 Embolism and thrombosis of renal vein
## 9581 Acute embolism and thrombosis of unspecified deep veins of right lower extremity
## 9582 Acute embolism and thrombosis of unspecified deep veins of left lower extremity
## 9583 Acute embolism and thrombosis of unspecified deep veins of lower extremity, bilateral
## 9584 Acute embolism and thrombosis of unspecified deep veins of unspecified lower extremity
## 9585 Acute embolism and thrombosis of right femoral vein
## 9586 Acute embolism and thrombosis of left femoral vein
## 9587 Acute embolism and thrombosis of femoral vein, bilateral
## 9588 Acute embolism and thrombosis of unspecified femoral vein
## 9589 Acute embolism and thrombosis of right iliac vein
## 9590 Acute embolism and thrombosis of left iliac vein
## 9591 Acute embolism and thrombosis of iliac vein, bilateral
## 9592 Acute embolism and thrombosis of unspecified iliac vein
## 9593 Acute embolism and thrombosis of right popliteal vein
## 9594 Acute embolism and thrombosis of left popliteal vein
## 9595 Acute embolism and thrombosis of popliteal vein, bilateral
## 9596 Acute embolism and thrombosis of unspecified popliteal vein
## 9597 Acute embolism and thrombosis of right tibial vein
## 9598 Acute embolism and thrombosis of left tibial vein
## 9599 Acute embolism and thrombosis of tibial vein, bilateral
## 9600 Acute embolism and thrombosis of unspecified tibial vein
## 9601 Acute embolism and thrombosis of right peroneal vein
## 9602 Acute embolism and thrombosis of left peroneal vein
## 9603 Acute embolism and thrombosis of peroneal vein, bilateral
## 9604 Acute embolism and thrombosis of unspecified peroneal vein
## 9605 Acute embolism and thrombosis of right calf muscular vein
## 9606 Acute embolism and thrombosis of left calf muscular vein
## 9607 Acute embolism and thrombosis of calf muscular vein, bilateral
## 9608 Acute embolism and thrombosis of unspecified calf muscular vein
## 9609 Acute embolism and thrombosis of other specified deep vein of right lower extremity
## 9610 Acute embolism and thrombosis of other specified deep vein of left lower extremity
## 9611 Acute embolism and thrombosis of other specified deep vein of lower extremity, bilateral
## 9612 Acute embolism and thrombosis of other specified deep vein of unspecified lower extremity
## 9613 Acute embolism and thrombosis of unspecified deep veins of right proximal lower extremity
## 9614 Acute embolism and thrombosis of unspecified deep veins of left proximal lower extremity
## 9615 Acute embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral
## 9616 Acute embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity
## 9617 Acute embolism and thrombosis of unspecified deep veins of right distal lower extremity
## 9618 Acute embolism and thrombosis of unspecified deep veins of left distal lower extremity
## 9619 Acute embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral
## 9620 Acute embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity
## 9621 Chronic embolism and thrombosis of unspecified deep veins of right lower extremity
## 9622 Chronic embolism and thrombosis of unspecified deep veins of left lower extremity
## 9623 Chronic embolism and thrombosis of unspecified deep veins of lower extremity, bilateral
## 9624 Chronic embolism and thrombosis of unspecified deep veins of unspecified lower extremity
## 9625 Chronic embolism and thrombosis of right femoral vein
## 9626 Chronic embolism and thrombosis of left femoral vein
## 9627 Chronic embolism and thrombosis of femoral vein, bilateral
## 9628 Chronic embolism and thrombosis of unspecified femoral vein
## 9629 Chronic embolism and thrombosis of right iliac vein
## 9630 Chronic embolism and thrombosis of left iliac vein
## 9631 Chronic embolism and thrombosis of iliac vein, bilateral
## 9632 Chronic embolism and thrombosis of unspecified iliac vein
## 9633 Chronic embolism and thrombosis of right popliteal vein
## 9634 Chronic embolism and thrombosis of left popliteal vein
## 9635 Chronic embolism and thrombosis of popliteal vein, bilateral
## 9636 Chronic embolism and thrombosis of unspecified popliteal vein
## 9637 Chronic embolism and thrombosis of right tibial vein
## 9638 Chronic embolism and thrombosis of left tibial vein
## 9639 Chronic embolism and thrombosis of tibial vein, bilateral
## 9640 Chronic embolism and thrombosis of unspecified tibial vein
## 9641 Chronic embolism and thrombosis of right peroneal vein
## 9642 Chronic embolism and thrombosis of left peroneal vein
## 9643 Chronic embolism and thrombosis of peroneal vein, bilateral
## 9644 Chronic embolism and thrombosis of unspecified peroneal vein
## 9645 Chronic embolism and thrombosis of right calf muscular vein
## 9646 Chronic embolism and thrombosis of left calf muscular vein
## 9647 Chronic embolism and thrombosis of calf muscular vein, bilateral
## 9648 Chronic embolism and thrombosis of unspecified calf muscular vein
## 9649 Chronic embolism and thrombosis of other specified deep vein of right lower extremity
## 9650 Chronic embolism and thrombosis of other specified deep vein of left lower extremity
## 9651 Chronic embolism and thrombosis of other specified deep vein of lower extremity, bilateral
## 9652 Chronic embolism and thrombosis of other specified deep vein of unspecified lower extremity
## 9653 Chronic embolism and thrombosis of unspecified deep veins of right proximal lower extremity
## 9654 Chronic embolism and thrombosis of unspecified deep veins of left proximal lower extremity
## 9655 Chronic embolism and thrombosis of unspecified deep veins of proximal lower extremity, bilateral
## 9656 Chronic embolism and thrombosis of unspecified deep veins of unspecified proximal lower extremity
## 9657 Chronic embolism and thrombosis of unspecified deep veins of right distal lower extremity
## 9658 Chronic embolism and thrombosis of unspecified deep veins of left distal lower extremity
## 9659 Chronic embolism and thrombosis of unspecified deep veins of distal lower extremity, bilateral
## 9660 Chronic embolism and thrombosis of unspecified deep veins of unspecified distal lower extremity
## 9661 Acute embolism and thrombosis of unspecified veins of right upper extremity
## 9662 Acute embolism and thrombosis of unspecified veins of left upper extremity
## 9663 Acute embolism and thrombosis of unspecified veins of upper extremity, bilateral
## 9664 Acute embolism and thrombosis of unspecified veins of unspecified upper extremity
## 9665 Acute embolism and thrombosis of superficial veins of right upper extremity
## 9666 Acute embolism and thrombosis of superficial veins of left upper extremity
## 9667 Acute embolism and thrombosis of superficial veins of upper extremity, bilateral
## 9668 Acute embolism and thrombosis of superficial veins of unspecified upper extremity
## 9669 Acute embolism and thrombosis of deep veins of right upper extremity
## 9670 Acute embolism and thrombosis of deep veins of left upper extremity
## 9671 Acute embolism and thrombosis of deep veins of upper extremity, bilateral
## 9672 Acute embolism and thrombosis of deep veins of unspecified upper extremity
## 9673 Chronic embolism and thrombosis of unspecified veins of right upper extremity
## 9674 Chronic embolism and thrombosis of unspecified veins of left upper extremity
## 9675 Chronic embolism and thrombosis of unspecified veins of upper extremity, bilateral
## 9676 Chronic embolism and thrombosis of unspecified veins of unspecified upper extremity
## 9677 Chronic embolism and thrombosis of superficial veins of right upper extremity
## 9678 Chronic embolism and thrombosis of superficial veins of left upper extremity
## 9679 Chronic embolism and thrombosis of superficial veins of upper extremity, bilateral
## 9680 Chronic embolism and thrombosis of superficial veins of unspecified upper extremity
## 9681 Chronic embolism and thrombosis of deep veins of right upper extremity
## 9682 Chronic embolism and thrombosis of deep veins of left upper extremity
## 9683 Chronic embolism and thrombosis of deep veins of upper extremity, bilateral
## 9684 Chronic embolism and thrombosis of deep veins of unspecified upper extremity
## 9685 Acute embolism and thrombosis of right axillary vein
## 9686 Acute embolism and thrombosis of left axillary vein
## 9687 Acute embolism and thrombosis of axillary vein, bilateral
## 9688 Acute embolism and thrombosis of unspecified axillary vein
## 9689 Chronic embolism and thrombosis of right axillary vein
## 9690 Chronic embolism and thrombosis of left axillary vein
## 9691 Chronic embolism and thrombosis of axillary vein, bilateral
## 9692 Chronic embolism and thrombosis of unspecified axillary vein
## 9693 Acute embolism and thrombosis of right subclavian vein
## 9694 Acute embolism and thrombosis of left subclavian vein
## 9695 Acute embolism and thrombosis of subclavian vein, bilateral
## 9696 Acute embolism and thrombosis of unspecified subclavian vein
## 9697 Chronic embolism and thrombosis of right subclavian vein
## 9698 Chronic embolism and thrombosis of left subclavian vein
## 9699 Chronic embolism and thrombosis of subclavian vein, bilateral
## 9700 Chronic embolism and thrombosis of unspecified subclavian vein
## 9701 Acute embolism and thrombosis of right internal jugular vein
## 9702 Acute embolism and thrombosis of left internal jugular vein
## 9703 Acute embolism and thrombosis of internal jugular vein, bilateral
## 9704 Acute embolism and thrombosis of unspecified internal jugular vein
## 9705 Chronic embolism and thrombosis of right internal jugular vein
## 9706 Chronic embolism and thrombosis of left internal jugular vein
## 9707 Chronic embolism and thrombosis of internal jugular vein, bilateral
## 9708 Chronic embolism and thrombosis of unspecified internal jugular vein
## 9709 Embolism and thrombosis of superficial veins of right lower extremity
## 9710 Embolism and thrombosis of superficial veins of left lower extremity
## 9711 Embolism and thrombosis of superficial veins of lower extremities, bilateral
## 9712 Embolism and thrombosis of superficial veins of unspecified lower extremity
## 9713 Acute embolism and thrombosis of other specified veins
## 9714 Chronic embolism and thrombosis of other specified veins
## 9715 Acute embolism and thrombosis of unspecified vein
## 9716 Chronic embolism and thrombosis of unspecified vein
## 9717 Varicose veins of unspecified lower extremity with ulcer of thigh
## 9718 Varicose veins of unspecified lower extremity with ulcer of calf
## 9719 Varicose veins of unspecified lower extremity with ulcer of ankle
## 9720 Varicose veins of unspecified lower extremity with ulcer of heel and midfoot
## 9721 Varicose veins of unspecified lower extremity with ulcer other part of foot
## 9722 Varicose veins of unspecified lower extremity with ulcer other part of lower leg
## 9723 Varicose veins of unspecified lower extremity with ulcer of unspecified site
## 9724 Varicose veins of right lower extremity with ulcer of thigh
## 9725 Varicose veins of right lower extremity with ulcer of calf
## 9726 Varicose veins of right lower extremity with ulcer of ankle
## 9727 Varicose veins of right lower extremity with ulcer of heel and midfoot
## 9728 Varicose veins of right lower extremity with ulcer other part of foot
## 9729 Varicose veins of right lower extremity with ulcer other part of lower leg
## 9730 Varicose veins of right lower extremity with ulcer of unspecified site
## 9731 Varicose veins of left lower extremity with ulcer of thigh
## 9732 Varicose veins of left lower extremity with ulcer of calf
## 9733 Varicose veins of left lower extremity with ulcer of ankle
## 9734 Varicose veins of left lower extremity with ulcer of heel and midfoot
## 9735 Varicose veins of left lower extremity with ulcer other part of foot
## 9736 Varicose veins of left lower extremity with ulcer other part of lower leg
## 9737 Varicose veins of left lower extremity with ulcer of unspecified site
## 9738 Varicose veins of unspecified lower extremity with inflammation
## 9739 Varicose veins of right lower extremity with inflammation
## 9740 Varicose veins of left lower extremity with inflammation
## 9741 Varicose veins of unspecified lower extremity with both ulcer of thigh and inflammation
## 9742 Varicose veins of unspecified lower extremity with both ulcer of calf and inflammation
## 9743 Varicose veins of unspecified lower extremity with both ulcer of ankle and inflammation
## 9744 Varicose veins of unspecified lower extremity with both ulcer of heel and midfoot and inflammation
## 9745 Varicose veins of unspecified lower extremity with both ulcer other part of foot and inflammation
## 9746 Varicose veins of unspecified lower extremity with both ulcer of other part of lower extremity and inflammation
## 9747 Varicose veins of unspecified lower extremity with both ulcer of unspecified site and inflammation
## 9748 Varicose veins of right lower extremity with both ulcer of thigh and inflammation
## 9749 Varicose veins of right lower extremity with both ulcer of calf and inflammation
## 9750 Varicose veins of right lower extremity with both ulcer of ankle and inflammation
## 9751 Varicose veins of right lower extremity with both ulcer of heel and midfoot and inflammation
## 9752 Varicose veins of right lower extremity with both ulcer other part of foot and inflammation
## 9753 Varicose veins of right lower extremity with both ulcer of other part of lower extremity and inflammation
## 9754 Varicose veins of right lower extremity with both ulcer of unspecified site and inflammation
## 9755 Varicose veins of left lower extremity with both ulcer of thigh and inflammation
## 9756 Varicose veins of left lower extremity with both ulcer of calf and inflammation
## 9757 Varicose veins of left lower extremity with both ulcer of ankle and inflammation
## 9758 Varicose veins of left lower extremity with both ulcer of heel and midfoot and inflammation
## 9759 Varicose veins of left lower extremity with both ulcer other part of foot and inflammation
## 9760 Varicose veins of left lower extremity with both ulcer of other part of lower extremity and inflammation
## 9761 Varicose veins of left lower extremity with both ulcer of unspecified site and inflammation
## 9762 Varicose veins of right lower extremity with pain
## 9763 Varicose veins of left lower extremity with pain
## 9764 Varicose veins of bilateral lower extremities with pain
## 9765 Varicose veins of unspecified lower extremity with pain
## 9766 Varicose veins of right lower extremity with other complications
## 9767 Varicose veins of left lower extremity with other complications
## 9768 Varicose veins of bilateral lower extremities with other complications
## 9769 Varicose veins of unspecified lower extremity with other complications
## 9770 Asymptomatic varicose veins of unspecified lower extremity
## 9771 Asymptomatic varicose veins of right lower extremity
## 9772 Asymptomatic varicose veins of left lower extremity
## 9773 Asymptomatic varicose veins of bilateral lower extremities
## 9774 Esophageal varices without bleeding
## 9775 Esophageal varices with bleeding
## 9776 Secondary esophageal varices without bleeding
## 9777 Secondary esophageal varices with bleeding
## 9778 Sublingual varices
## 9779 Scrotal varices
## 9780 Pelvic varices
## 9781 Vulval varices
## 9782 Gastric varices
## 9783 Varicose veins of other specified sites
## 9784 Postthrombotic syndrome without complications of right lower extremity
## 9785 Postthrombotic syndrome without complications of left lower extremity
## 9786 Postthrombotic syndrome without complications of bilateral lower extremity
## 9787 Postthrombotic syndrome without complications of unspecified extremity
## 9788 Postthrombotic syndrome with ulcer of right lower extremity
## 9789 Postthrombotic syndrome with ulcer of left lower extremity
## 9790 Postthrombotic syndrome with ulcer of bilateral lower extremity
## 9791 Postthrombotic syndrome with ulcer of unspecified lower extremity
## 9792 Postthrombotic syndrome with inflammation of right lower extremity
## 9793 Postthrombotic syndrome with inflammation of left lower extremity
## 9794 Postthrombotic syndrome with inflammation of bilateral lower extremity
## 9795 Postthrombotic syndrome with inflammation of unspecified lower extremity
## 9796 Postthrombotic syndrome with ulcer and inflammation of right lower extremity
## 9797 Postthrombotic syndrome with ulcer and inflammation of left lower extremity
## 9798 Postthrombotic syndrome with ulcer and inflammation of bilateral lower extremity
## 9799 Postthrombotic syndrome with ulcer and inflammation of unspecified lower extremity
## 9800 Postthrombotic syndrome with other complications of right lower extremity
## 9801 Postthrombotic syndrome with other complications of left lower extremity
## 9802 Postthrombotic syndrome with other complications of bilateral lower extremity
## 9803 Postthrombotic syndrome with other complications of unspecified lower extremity
## 9804 Compression of vein
## 9805 Venous insufficiency (chronic) (peripheral)
## 9806 Chronic venous hypertension (idiopathic) without complications of right lower extremity
## 9807 Chronic venous hypertension (idiopathic) without complications of left lower extremity
## 9808 Chronic venous hypertension (idiopathic) without complications of bilateral lower extremity
## 9809 Chronic venous hypertension (idiopathic) without complications of unspecified lower extremity
## 9810 Chronic venous hypertension (idiopathic) with ulcer of right lower extremity
## 9811 Chronic venous hypertension (idiopathic) with ulcer of left lower extremity
## 9812 Chronic venous hypertension (idiopathic) with ulcer of bilateral lower extremity
## 9813 Chronic venous hypertension (idiopathic) with ulcer of unspecified lower extremity
## 9814 Chronic venous hypertension (idiopathic) with inflammation of right lower extremity
## 9815 Chronic venous hypertension (idiopathic) with inflammation of left lower extremity
## 9816 Chronic venous hypertension (idiopathic) with inflammation of bilateral lower extremity
## 9817 Chronic venous hypertension (idiopathic) with inflammation of unspecified lower extremity
## 9818 Chronic venous hypertension (idiopathic) with ulcer and inflammation of right lower extremity
## 9819 Chronic venous hypertension (idiopathic) with ulcer and inflammation of left lower extremity
## 9820 Chronic venous hypertension (idiopathic) with ulcer and inflammation of bilateral lower extremity
## 9821 Chronic venous hypertension (idiopathic) with ulcer and inflammation of unspecified lower extremity
## 9822 Chronic venous hypertension (idiopathic) with other complications of right lower extremity
## 9823 Chronic venous hypertension (idiopathic) with other complications of left lower extremity
## 9824 Chronic venous hypertension (idiopathic) with other complications of bilateral lower extremity
## 9825 Chronic venous hypertension (idiopathic) with other complications of unspecified lower extremity
## 9826 Other specified disorders of veins
## 9827 Disorder of vein, unspecified
## 9828 Nonspecific mesenteric lymphadenitis
## 9829 Chronic lymphadenitis, except mesenteric
## 9830 Other nonspecific lymphadenitis
## 9831 Nonspecific lymphadenitis, unspecified
## 9832 Lymphedema, not elsewhere classified
## 9833 Lymphangitis
## 9834 Other specified noninfective disorders of lymphatic vessels and lymph nodes
## 9835 Noninfective disorder of lymphatic vessels and lymph nodes, unspecified
## 9836 Idiopathic hypotension
## 9837 Orthostatic hypotension
## 9838 Hypotension due to drugs
## 9839 Hypotension of hemodialysis
## 9840 Postprocedural hypotension
## 9841 Other hypotension
## 9842 Hypotension, unspecified
## 9843 Gangrene, not elsewhere classified
## 9844 Postcardiotomy syndrome
## 9845 Postprocedural cardiac insufficiency following cardiac surgery
## 9846 Postprocedural cardiac insufficiency following other surgery
## 9847 Postprocedural cardiac arrest following cardiac surgery
## 9848 Postprocedural cardiac arrest following other surgery
## 9849 Postprocedural heart failure following cardiac surgery
## 9850 Postprocedural heart failure following other surgery
## 9851 Other postprocedural cardiac functional disturbances following cardiac surgery
## 9852 Other postprocedural cardiac functional disturbances following other surgery
## 9853 Postmastectomy lymphedema syndrome
## 9854 Postprocedural hypertension
## 9855 Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a cardiac catheterization
## 9856 Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating a cardiac bypass
## 9857 Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other circulatory system procedure
## 9858 Intraoperative hemorrhage and hematoma of a circulatory system organ or structure complicating other procedure
## 9859 Accidental puncture and laceration of a circulatory system organ or structure during a circulatory system procedure
## 9860 Accidental puncture and laceration of a circulatory system organ or structure during other procedure
## 9861 Postprocedural hemorrhage of a circulatory system organ or structure following a cardiac catheterization
## 9862 Postprocedural hemorrhage of a circulatory system organ or structure following cardiac bypass
## 9863 Postprocedural hemorrhage of a circulatory system organ or structure following other circulatory system procedure
## 9864 Postprocedural hemorrhage of a circulatory system organ or structure following other procedure
## 9865 Postprocedural hematoma of a circulatory system organ or structure following other procedure
## 9866 Postprocedural seroma of a circulatory system organ or structure following other procedure
## 9867 Postprocedural hematoma of a circulatory system organ or structure following a cardiac catheterization
## 9868 Postprocedural hematoma of a circulatory system organ or structure following cardiac bypass
## 9869 Postprocedural hematoma of a circulatory system organ or structure following other circulatory system procedure
## 9870 Postprocedural seroma of a circulatory system organ or structure following a cardiac catheterization
## 9871 Postprocedural seroma of a circulatory system organ or structure following cardiac bypass
## 9872 Postprocedural seroma of a circulatory system organ or structure following other circulatory system procedure
## 9873 Intraoperative cardiac arrest during cardiac surgery
## 9874 Intraoperative cardiac arrest during other surgery
## 9875 Other intraoperative cardiac functional disturbances during cardiac surgery
## 9876 Other intraoperative cardiac functional disturbances during other surgery
## 9877 Intraoperative cerebrovascular infarction during cardiac surgery
## 9878 Intraoperative cerebrovascular infarction during other surgery
## 9879 Postprocedural cerebrovascular infarction following cardiac surgery
## 9880 Postprocedural cerebrovascular infarction following other surgery
## 9881 Other intraoperative complications of the circulatory system, not elsewhere classified
## 9882 Other postprocedural complications and disorders of the circulatory system, not elsewhere classified
## 9883 Other disorder of circulatory system
## 9884 Unspecified disorder of circulatory system
## 9885 Acute nasopharyngitis [common cold]
## 9886 Acute maxillary sinusitis, unspecified
## 9887 Acute recurrent maxillary sinusitis
## 9888 Acute frontal sinusitis, unspecified
## 9889 Acute recurrent frontal sinusitis
## 9890 Acute ethmoidal sinusitis, unspecified
## 9891 Acute recurrent ethmoidal sinusitis
## 9892 Acute sphenoidal sinusitis, unspecified
## 9893 Acute recurrent sphenoidal sinusitis
## 9894 Acute pansinusitis, unspecified
## 9895 Acute recurrent pansinusitis
## 9896 Other acute sinusitis
## 9897 Other acute recurrent sinusitis
## 9898 Acute sinusitis, unspecified
## 9899 Acute recurrent sinusitis, unspecified
## 9900 Streptococcal pharyngitis
## 9901 Acute pharyngitis due to other specified organisms
## 9902 Acute pharyngitis, unspecified
## 9903 Acute streptococcal tonsillitis, unspecified
## 9904 Acute recurrent streptococcal tonsillitis
## 9905 Acute tonsillitis due to other specified organisms
## 9906 Acute recurrent tonsillitis due to other specified organisms
## 9907 Acute tonsillitis, unspecified
## 9908 Acute recurrent tonsillitis, unspecified
## 9909 Acute laryngitis
## 9910 Acute tracheitis without obstruction
## 9911 Acute tracheitis with obstruction
## 9912 Acute laryngotracheitis
## 9913 Supraglottitis, unspecified, without obstruction
## 9914 Supraglottitis, unspecified, with obstruction
## 9915 Acute obstructive laryngitis [croup]
## 9916 Acute epiglottitis without obstruction
## 9917 Acute epiglottitis with obstruction
## 9918 Acute laryngopharyngitis
## 9919 Acute upper respiratory infection, unspecified
## 9920 Influenza due to identified novel influenza A virus with pneumonia
## 9921 Influenza due to identified novel influenza A virus with other respiratory manifestations
## 9922 Influenza due to identified novel influenza A virus with gastrointestinal manifestations
## 9923 Influenza due to identified novel influenza A virus with other manifestations
## 9924 Influenza due to other identified influenza virus with unspecified type of pneumonia
## 9925 Influenza due to other identified influenza virus with the same other identified influenza virus pneumonia
## 9926 Influenza due to other identified influenza virus with other specified pneumonia
## 9927 Influenza due to other identified influenza virus with other respiratory manifestations
## 9928 Influenza due to other identified influenza virus with gastrointestinal manifestations
## 9929 Influenza due to other identified influenza virus with encephalopathy
## 9930 Influenza due to other identified influenza virus with myocarditis
## 9931 Influenza due to other identified influenza virus with otitis media
## 9932 Influenza due to other identified influenza virus with other manifestations
## 9933 Influenza due to unidentified influenza virus with unspecified type of pneumonia
## 9934 Influenza due to unidentified influenza virus with specified pneumonia
## 9935 Influenza due to unidentified influenza virus with other respiratory manifestations
## 9936 Influenza due to unidentified influenza virus with gastrointestinal manifestations
## 9937 Influenza due to unidentified influenza virus with encephalopathy
## 9938 Influenza due to unidentified influenza virus with myocarditis
## 9939 Influenza due to unidentified influenza virus with otitis media
## 9940 Influenza due to unidentified influenza virus with other manifestations
## 9941 Adenoviral pneumonia
## 9942 Respiratory syncytial virus pneumonia
## 9943 Parainfluenza virus pneumonia
## 9944 Human metapneumovirus pneumonia
## 9945 Pneumonia due to SARS-associated coronavirus
## 9946 Other viral pneumonia
## 9947 Viral pneumonia, unspecified
## 9948 Pneumonia due to Streptococcus pneumoniae
## 9949 Pneumonia due to Hemophilus influenzae
## 9950 Pneumonia due to Klebsiella pneumoniae
## 9951 Pneumonia due to Pseudomonas
## 9952 Pneumonia due to staphylococcus, unspecified
## 9953 Pneumonia due to Methicillin susceptible Staphylococcus aureus
## 9954 Pneumonia due to Methicillin resistant Staphylococcus aureus
## 9955 Pneumonia due to other staphylococcus
## 9956 Pneumonia due to streptococcus, group B
## 9957 Pneumonia due to other streptococci
## 9958 Pneumonia due to Escherichia coli
## 9959 Pneumonia due to other Gram-negative bacteria
## 9960 Pneumonia due to Mycoplasma pneumoniae
## 9961 Pneumonia due to other specified bacteria
## 9962 Unspecified bacterial pneumonia
## 9963 Chlamydial pneumonia
## 9964 Pneumonia due to other specified infectious organisms
## 9965 Pneumonia in diseases classified elsewhere
## 9966 Bronchopneumonia, unspecified organism
## 9967 Lobar pneumonia, unspecified organism
## 9968 Hypostatic pneumonia, unspecified organism
## 9969 Other pneumonia, unspecified organism
## 9970 Pneumonia, unspecified organism
## 9971 Acute bronchitis due to Mycoplasma pneumoniae
## 9972 Acute bronchitis due to Hemophilus influenzae
## 9973 Acute bronchitis due to streptococcus
## 9974 Acute bronchitis due to coxsackievirus
## 9975 Acute bronchitis due to parainfluenza virus
## 9976 Acute bronchitis due to respiratory syncytial virus
## 9977 Acute bronchitis due to rhinovirus
## 9978 Acute bronchitis due to echovirus
## 9979 Acute bronchitis due to other specified organisms
## 9980 Acute bronchitis, unspecified
## 9981 Acute bronchiolitis due to respiratory syncytial virus
## 9982 Acute bronchiolitis due to human metapneumovirus
## 9983 Acute bronchiolitis due to other specified organisms
## 9984 Acute bronchiolitis, unspecified
## 9985 Unspecified acute lower respiratory infection
## 9986 Vasomotor rhinitis
## 9987 Allergic rhinitis due to pollen
## 9988 Other seasonal allergic rhinitis
## 9989 Allergic rhinitis due to food
## 9990 Allergic rhinitis due to animal (cat) (dog) hair and dander
## 9991 Other allergic rhinitis
## 9992 Allergic rhinitis, unspecified
## 9993 Chronic rhinitis
## 9994 Chronic nasopharyngitis
## 9995 Chronic pharyngitis
## 9996 Chronic maxillary sinusitis
## 9997 Chronic frontal sinusitis
## 9998 Chronic ethmoidal sinusitis
## 9999 Chronic sphenoidal sinusitis
## 10000 Chronic pansinusitis
## 10001 Other chronic sinusitis
## 10002 Chronic sinusitis, unspecified
## 10003 Polyp of nasal cavity
## 10004 Polypoid sinus degeneration
## 10005 Other polyp of sinus
## 10006 Nasal polyp, unspecified
## 10007 Abscess, furuncle and carbuncle of nose
## 10008 Cyst and mucocele of nose and nasal sinus
## 10009 Deviated nasal septum
## 10010 Hypertrophy of nasal turbinates
## 10011 Nasal mucositis (ulcerative)
## 10012 Other specified disorders of nose and nasal sinuses
## 10013 Unspecified disorder of nose and nasal sinuses
## 10014 Chronic tonsillitis
## 10015 Chronic adenoiditis
## 10016 Chronic tonsillitis and adenoiditis
## 10017 Hypertrophy of tonsils
## 10018 Hypertrophy of adenoids
## 10019 Hypertrophy of tonsils with hypertrophy of adenoids
## 10020 Other chronic diseases of tonsils and adenoids
## 10021 Chronic disease of tonsils and adenoids, unspecified
## 10022 Peritonsillar abscess
## 10023 Chronic laryngitis
## 10024 Chronic laryngotracheitis
## 10025 Paralysis of vocal cords and larynx, unspecified
## 10026 Paralysis of vocal cords and larynx, unilateral
## 10027 Paralysis of vocal cords and larynx, bilateral
## 10028 Polyp of vocal cord and larynx
## 10029 Nodules of vocal cords
## 10030 Other diseases of vocal cords
## 10031 Edema of larynx
## 10032 Laryngeal spasm
## 10033 Stenosis of larynx
## 10034 Other diseases of larynx
## 10035 Retropharyngeal and parapharyngeal abscess
## 10036 Other abscess of pharynx
## 10037 Other diseases of pharynx
## 10038 Upper respiratory tract hypersensitivity reaction, site unspecified
## 10039 Other specified diseases of upper respiratory tract
## 10040 Disease of upper respiratory tract, unspecified
## 10041 Bronchitis, not specified as acute or chronic
## 10042 Simple chronic bronchitis
## 10043 Mucopurulent chronic bronchitis
## 10044 Mixed simple and mucopurulent chronic bronchitis
## 10045 Unspecified chronic bronchitis
## 10046 Unilateral pulmonary emphysema [MacLeod's syndrome]
## 10047 Panlobular emphysema
## 10048 Centrilobular emphysema
## 10049 Other emphysema
## 10050 Emphysema, unspecified
## 10051 Chronic obstructive pulmonary disease with (acute) lower respiratory infection
## 10052 Chronic obstructive pulmonary disease with (acute) exacerbation
## 10053 Chronic obstructive pulmonary disease, unspecified
## 10054 Mild intermittent asthma, uncomplicated
## 10055 Mild intermittent asthma with (acute) exacerbation
## 10056 Mild intermittent asthma with status asthmaticus
## 10057 Mild persistent asthma, uncomplicated
## 10058 Mild persistent asthma with (acute) exacerbation
## 10059 Mild persistent asthma with status asthmaticus
## 10060 Moderate persistent asthma, uncomplicated
## 10061 Moderate persistent asthma with (acute) exacerbation
## 10062 Moderate persistent asthma with status asthmaticus
## 10063 Severe persistent asthma, uncomplicated
## 10064 Severe persistent asthma with (acute) exacerbation
## 10065 Severe persistent asthma with status asthmaticus
## 10066 Unspecified asthma with (acute) exacerbation
## 10067 Unspecified asthma with status asthmaticus
## 10068 Unspecified asthma, uncomplicated
## 10069 Exercise induced bronchospasm
## 10070 Cough variant asthma
## 10071 Other asthma
## 10072 Bronchiectasis with acute lower respiratory infection
## 10073 Bronchiectasis with (acute) exacerbation
## 10074 Bronchiectasis, uncomplicated
## 10075 Coalworker's pneumoconiosis
## 10076 Pneumoconiosis due to asbestos and other mineral fibers
## 10077 Pneumoconiosis due to talc dust
## 10078 Pneumoconiosis due to other dust containing silica
## 10079 Aluminosis (of lung)
## 10080 Bauxite fibrosis (of lung)
## 10081 Berylliosis
## 10082 Graphite fibrosis (of lung)
## 10083 Siderosis
## 10084 Stannosis
## 10085 Pneumoconiosis due to other specified inorganic dusts
## 10086 Unspecified pneumoconiosis
## 10087 Pneumoconiosis associated with tuberculosis
## 10088 Byssinosis
## 10089 Flax-dressers' disease
## 10090 Cannabinosis
## 10091 Airway disease due to other specific organic dusts
## 10092 Farmer's lung
## 10093 Bagassosis
## 10094 Bird fancier's lung
## 10095 Suberosis
## 10096 Maltworker's lung
## 10097 Mushroom-worker's lung
## 10098 Maple-bark-stripper's lung
## 10099 Air conditioner and humidifier lung
## 10100 Hypersensitivity pneumonitis due to other organic dusts
## 10101 Hypersensitivity pneumonitis due to unspecified organic dust
## 10102 Bronchitis and pneumonitis due to chemicals, gases, fumes and vapors
## 10103 Pulmonary edema due to chemicals, gases, fumes and vapors
## 10104 Upper respiratory inflammation due to chemicals, gases, fumes and vapors, not elsewhere classified
## 10105 Other acute and subacute respiratory conditions due to chemicals, gases, fumes and vapors
## 10106 Chronic respiratory conditions due to chemicals, gases, fumes and vapors
## 10107 Other respiratory conditions due to chemicals, gases, fumes and vapors
## 10108 Unspecified respiratory condition due to chemicals, gases, fumes and vapors
## 10109 Pneumonitis due to inhalation of food and vomit
## 10110 Pneumonitis due to inhalation of oils and essences
## 10111 Pneumonitis due to inhalation of other solids and liquids
## 10112 Acute pulmonary manifestations due to radiation
## 10113 Chronic and other pulmonary manifestations due to radiation
## 10114 Acute drug-induced interstitial lung disorders
## 10115 Chronic drug-induced interstitial lung disorders
## 10116 Drug-induced interstitial lung disorders, unspecified
## 10117 Respiratory conditions due to smoke inhalation
## 10118 Respiratory conditions due to other specified external agents
## 10119 Respiratory conditions due to unspecified external agent
## 10120 Acute respiratory distress syndrome
## 10121 Acute pulmonary edema
## 10122 Chronic pulmonary edema
## 10123 Pulmonary eosinophilia, not elsewhere classified
## 10124 Alveolar proteinosis
## 10125 Pulmonary alveolar microlithiasis
## 10126 Idiopathic pulmonary hemosiderosis
## 10127 Other alveolar and parieto-alveolar conditions
## 10128 Pulmonary fibrosis, unspecified
## 10129 Idiopathic interstitial pneumonia, not otherwise specified
## 10130 Idiopathic pulmonary fibrosis
## 10131 Idiopathic non-specific interstitial pneumonitis
## 10132 Acute interstitial pneumonitis
## 10133 Respiratory bronchiolitis interstitial lung disease
## 10134 Cryptogenic organizing pneumonia
## 10135 Desquamative interstitial pneumonia
## 10136 Other interstitial pulmonary diseases with fibrosis in diseases classified elsewhere
## 10137 Lymphoid interstitial pneumonia
## 10138 Lymphangioleiomyomatosis
## 10139 Adult pulmonary Langerhans cell histiocytosis
## 10140 Surfactant mutations of the lung
## 10141 Neuroendocrine cell hyperplasia of infancy
## 10142 Pulmonary interstitial glycogenosis
## 10143 Alveolar capillary dysplasia with vein misalignment
## 10144 Other interstitial lung diseases of childhood
## 10145 Other specified interstitial pulmonary diseases
## 10146 Interstitial pulmonary disease, unspecified
## 10147 Gangrene and necrosis of lung
## 10148 Abscess of lung with pneumonia
## 10149 Abscess of lung without pneumonia
## 10150 Abscess of mediastinum
## 10151 Pyothorax with fistula
## 10152 Pyothorax without fistula
## 10153 Pleural effusion, not elsewhere classified
## 10154 Malignant pleural effusion
## 10155 Pleural effusion in other conditions classified elsewhere
## 10156 Pleural plaque with presence of asbestos
## 10157 Pleural plaque without asbestos
## 10158 Spontaneous tension pneumothorax
## 10159 Primary spontaneous pneumothorax
## 10160 Secondary spontaneous pneumothorax
## 10161 Chronic pneumothorax
## 10162 Other air leak
## 10163 Other pneumothorax
## 10164 Pneumothorax, unspecified
## 10165 Chylous effusion
## 10166 Fibrothorax
## 10167 Hemothorax
## 10168 Other specified pleural conditions
## 10169 Pleural condition, unspecified
## 10170 Unspecified tracheostomy complication
## 10171 Hemorrhage from tracheostomy stoma
## 10172 Infection of tracheostomy stoma
## 10173 Malfunction of tracheostomy stoma
## 10174 Tracheo-esophageal fistula following tracheostomy
## 10175 Other tracheostomy complication
## 10176 Acute pulmonary insufficiency following thoracic surgery
## 10177 Acute pulmonary insufficiency following nonthoracic surgery
## 10178 Chronic pulmonary insufficiency following surgery
## 10179 Chemical pneumonitis due to anesthesia
## 10180 Postprocedural subglottic stenosis
## 10181 Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating a respiratory system procedure
## 10182 Intraoperative hemorrhage and hematoma of a respiratory system organ or structure complicating other procedure
## 10183 Accidental puncture and laceration of a respiratory system organ or structure during a respiratory system procedure
## 10184 Accidental puncture and laceration of a respiratory system organ or structure during other procedure
## 10185 Postprocedural pneumothorax
## 10186 Postprocedural air leak
## 10187 Acute postprocedural respiratory failure
## 10188 Acute and chronic postprocedural respiratory failure
## 10189 Postprocedural hemorrhage of a respiratory system organ or structure following a respiratory system procedure
## 10190 Postprocedural hemorrhage of a respiratory system organ or structure following other procedure
## 10191 Transfusion-related acute lung injury (TRALI)
## 10192 Mechanical complication of respirator
## 10193 Ventilator associated pneumonia
## 10194 Other complication of respirator [ventilator]
## 10195 Postprocedural hematoma of a respiratory system organ or structure following a respiratory system procedure
## 10196 Postprocedural hematoma of a respiratory system organ or structure following other procedure
## 10197 Postprocedural seroma of a respiratory system organ or structure following a respiratory system procedure
## 10198 Postprocedural seroma of a respiratory system organ or structure following other procedure
## 10199 Other intraoperative complications of respiratory system, not elsewhere classified
## 10200 Other postprocedural complications and disorders of respiratory system, not elsewhere classified
## 10201 Acute respiratory failure, unspecified whether with hypoxia or hypercapnia
## 10202 Acute respiratory failure with hypoxia
## 10203 Acute respiratory failure with hypercapnia
## 10204 Chronic respiratory failure, unspecified whether with hypoxia or hypercapnia
## 10205 Chronic respiratory failure with hypoxia
## 10206 Chronic respiratory failure with hypercapnia
## 10207 Acute and chronic respiratory failure, unspecified whether with hypoxia or hypercapnia
## 10208 Acute and chronic respiratory failure with hypoxia
## 10209 Acute and chronic respiratory failure with hypercapnia
## 10210 Respiratory failure, unspecified, unspecified whether with hypoxia or hypercapnia
## 10211 Respiratory failure, unspecified with hypoxia
## 10212 Respiratory failure, unspecified with hypercapnia
## 10213 Acute bronchospasm
## 10214 Other diseases of bronchus, not elsewhere classified
## 10215 Atelectasis
## 10216 Other pulmonary collapse
## 10217 Interstitial emphysema
## 10218 Compensatory emphysema
## 10219 Other disorders of lung
## 10220 Mediastinitis
## 10221 Other diseases of mediastinum, not elsewhere classified
## 10222 Disorders of diaphragm
## 10223 Other specified respiratory disorders
## 10224 Respiratory disorder, unspecified
## 10225 Respiratory disorders in diseases classified elsewhere
## 10226 Anodontia
## 10227 Supernumerary teeth
## 10228 Abnormalities of size and form of teeth
## 10229 Mottled teeth
## 10230 Disturbances in tooth formation
## 10231 Hereditary disturbances in tooth structure, not elsewhere classified
## 10232 Disturbances in tooth eruption
## 10233 Teething syndrome
## 10234 Other disorders of tooth development
## 10235 Disorder of tooth development, unspecified
## 10236 Embedded teeth
## 10237 Impacted teeth
## 10238 Arrested dental caries
## 10239 Dental caries on pit and fissure surface limited to enamel
## 10240 Dental caries on pit and fissure surface penetrating into dentin
## 10241 Dental caries on pit and fissure surface penetrating into pulp
## 10242 Dental caries on smooth surface limited to enamel
## 10243 Dental caries on smooth surface penetrating into dentin
## 10244 Dental caries on smooth surface penetrating into pulp
## 10245 Dental root caries
## 10246 Dental caries, unspecified
## 10247 Excessive attrition of teeth
## 10248 Abrasion of teeth
## 10249 Erosion of teeth
## 10250 Pathological resorption of teeth
## 10251 Hypercementosis
## 10252 Ankylosis of teeth
## 10253 Deposits [accretions] on teeth
## 10254 Posteruptive color changes of dental hard tissues
## 10255 Cracked tooth
## 10256 Other specified diseases of hard tissues of teeth
## 10257 Disease of hard tissues of teeth, unspecified
## 10258 Reversible pulpitis
## 10259 Irreversible pulpitis
## 10260 Necrosis of pulp
## 10261 Pulp degeneration
## 10262 Abnormal hard tissue formation in pulp
## 10263 Acute apical periodontitis of pulpal origin
## 10264 Chronic apical periodontitis
## 10265 Periapical abscess with sinus
## 10266 Periapical abscess without sinus
## 10267 Radicular cyst
## 10268 Unspecified diseases of pulp and periapical tissues
## 10269 Other diseases of pulp and periapical tissues
## 10270 Acute gingivitis, plaque induced
## 10271 Acute gingivitis, non-plaque induced
## 10272 Chronic gingivitis, plaque induced
## 10273 Chronic gingivitis, non-plaque induced
## 10274 Aggressive periodontitis, unspecified
## 10275 Aggressive periodontitis, localized, slight
## 10276 Aggressive periodontitis, localized, moderate
## 10277 Aggressive periodontitis, localized, severe
## 10278 Aggressive periodontitis, localized, unspecified severity
## 10279 Aggressive periodontitis, generalized, slight
## 10280 Aggressive periodontitis, generalized, moderate
## 10281 Aggressive periodontitis, generalized, severe
## 10282 Aggressive periodontitis, generalized, unspecified severity
## 10283 Chronic periodontitis, unspecified
## 10284 Chronic periodontitis, localized, slight
## 10285 Chronic periodontitis, localized, moderate
## 10286 Chronic periodontitis, localized, severe
## 10287 Chronic periodontitis, localized, unspecified severity
## 10288 Chronic periodontitis, generalized, slight
## 10289 Chronic periodontitis, generalized, moderate
## 10290 Chronic periodontitis, generalized, severe
## 10291 Chronic periodontitis, generalized, unspecified severity
## 10292 Periodontosis
## 10293 Other periodontal diseases
## 10294 Periodontal disease, unspecified
## 10295 Localized gingival recession, unspecified
## 10296 Localized gingival recession, minimal
## 10297 Localized gingival recession, moderate
## 10298 Localized gingival recession, severe
## 10299 Generalized gingival recession, unspecified
## 10300 Generalized gingival recession, minimal
## 10301 Generalized gingival recession, moderate
## 10302 Generalized gingival recession, severe
## 10303 Gingival enlargement
## 10304 Gingival and edentulous alveolar ridge lesions associated with trauma
## 10305 Horizontal alveolar bone loss
## 10306 Other specified disorders of gingiva and edentulous alveolar ridge
## 10307 Disorder of gingiva and edentulous alveolar ridge, unspecified
## 10308 Exfoliation of teeth due to systemic causes
## 10309 Complete loss of teeth, unspecified cause, class I
## 10310 Complete loss of teeth, unspecified cause, class II
## 10311 Complete loss of teeth, unspecified cause, class III
## 10312 Complete loss of teeth, unspecified cause, class IV
## 10313 Complete loss of teeth, unspecified cause, unspecified class
## 10314 Complete loss of teeth due to trauma, class I
## 10315 Complete loss of teeth due to trauma, class II
## 10316 Complete loss of teeth due to trauma, class III
## 10317 Complete loss of teeth due to trauma, class IV
## 10318 Complete loss of teeth due to trauma, unspecified class
## 10319 Complete loss of teeth due to periodontal diseases, class I
## 10320 Complete loss of teeth due to periodontal diseases, class II
## 10321 Complete loss of teeth due to periodontal diseases, class III
## 10322 Complete loss of teeth due to periodontal diseases, class IV
## 10323 Complete loss of teeth due to periodontal diseases, unspecified class
## 10324 Complete loss of teeth due to caries, class I
## 10325 Complete loss of teeth due to caries, class II
## 10326 Complete loss of teeth due to caries, class III
## 10327 Complete loss of teeth due to caries, class IV
## 10328 Complete loss of teeth due to caries, unspecified class
## 10329 Complete loss of teeth due to other specified cause, class I
## 10330 Complete loss of teeth due to other specified cause, class II
## 10331 Complete loss of teeth due to other specified cause, class III
## 10332 Complete loss of teeth due to other specified cause, class IV
## 10333 Complete loss of teeth due to other specified cause, unspecified class
## 10334 Unspecified atrophy of edentulous alveolar ridge
## 10335 Minimal atrophy of the mandible
## 10336 Moderate atrophy of the mandible
## 10337 Severe atrophy of the mandible
## 10338 Minimal atrophy of maxilla
## 10339 Moderate atrophy of the maxilla
## 10340 Severe atrophy of the maxilla
## 10341 Retained dental root
## 10342 Partial loss of teeth, unspecified cause, class I
## 10343 Partial loss of teeth, unspecified cause, class II
## 10344 Partial loss of teeth, unspecified cause, class III
## 10345 Partial loss of teeth, unspecified cause, class IV
## 10346 Partial loss of teeth, unspecified cause, unspecified class
## 10347 Partial loss of teeth due to trauma, class I
## 10348 Partial loss of teeth due to trauma, class II
## 10349 Partial loss of teeth due to trauma, class III
## 10350 Partial loss of teeth due to trauma, class IV
## 10351 Partial loss of teeth due to trauma, unspecified class
## 10352 Partial loss of teeth due to periodontal diseases, class I
## 10353 Partial loss of teeth due to periodontal diseases, class II
## 10354 Partial loss of teeth due to periodontal diseases, class III
## 10355 Partial loss of teeth due to periodontal diseases, class IV
## 10356 Partial loss of teeth due to periodontal diseases, unspecified class
## 10357 Partial loss of teeth due to caries, class I
## 10358 Partial loss of teeth due to caries, class II
## 10359 Partial loss of teeth due to caries, class III
## 10360 Partial loss of teeth due to caries, class IV
## 10361 Partial loss of teeth due to caries, unspecified class
## 10362 Partial loss of teeth due to other specified cause, class I
## 10363 Partial loss of teeth due to other specified cause, class II
## 10364 Partial loss of teeth due to other specified cause, class III
## 10365 Partial loss of teeth due to other specified cause, class IV
## 10366 Partial loss of teeth due to other specified cause, unspecified class
## 10367 Unsatisfactory restoration of tooth, unspecified
## 10368 Open restoration margins of tooth
## 10369 Unrepairable overhanging of dental restorative materials
## 10370 Fractured dental restorative material without loss of material
## 10371 Fractured dental restorative material with loss of material
## 10372 Fractured dental restorative material, unspecified
## 10373 Contour of existing restoration of tooth biologically incompatible with oral health
## 10374 Allergy to existing dental restorative material
## 10375 Poor aesthetic of existing restoration of tooth
## 10376 Other unsatisfactory restoration of tooth
## 10377 Primary occlusal trauma
## 10378 Secondary occlusal trauma
## 10379 Other specified disorders of teeth and supporting structures
## 10380 Disorder of teeth and supporting structures, unspecified
## 10381 Developmental odontogenic cysts
## 10382 Developmental (nonodontogenic) cysts of oral region
## 10383 Other cysts of oral region, not elsewhere classified
## 10384 Cyst of oral region, unspecified
## 10385 Atrophy of salivary gland
## 10386 Hypertrophy of salivary gland
## 10387 Sialoadenitis, unspecified
## 10388 Acute sialoadenitis
## 10389 Acute recurrent sialoadenitis
## 10390 Chronic sialoadenitis
## 10391 Abscess of salivary gland
## 10392 Fistula of salivary gland
## 10393 Sialolithiasis
## 10394 Mucocele of salivary gland
## 10395 Disturbances of salivary secretion
## 10396 Other diseases of salivary glands
## 10397 Disease of salivary gland, unspecified
## 10398 Recurrent oral aphthae
## 10399 Other forms of stomatitis
## 10400 Cellulitis and abscess of mouth
## 10401 Oral mucositis (ulcerative), unspecified
## 10402 Oral mucositis (ulcerative) due to antineoplastic therapy
## 10403 Oral mucositis (ulcerative) due to other drugs
## 10404 Oral mucositis (ulcerative) due to radiation
## 10405 Other oral mucositis (ulcerative)
## 10406 Diseases of lips
## 10407 Cheek and lip biting
## 10408 Leukoplakia of oral mucosa, including tongue
## 10409 Minimal keratinized residual ridge mucosa
## 10410 Excessive keratinized residual ridge mucosa
## 10411 Leukokeratosis nicotina palati
## 10412 Other disturbances of oral epithelium, including tongue
## 10413 Hairy leukoplakia
## 10414 Granuloma and granuloma-like lesions of oral mucosa
## 10415 Oral submucous fibrosis
## 10416 Irritative hyperplasia of oral mucosa
## 10417 Unspecified lesions of oral mucosa
## 10418 Other lesions of oral mucosa
## 10419 Glossitis
## 10420 Geographic tongue
## 10421 Median rhomboid glossitis
## 10422 Hypertrophy of tongue papillae
## 10423 Atrophy of tongue papillae
## 10424 Plicated tongue
## 10425 Glossodynia
## 10426 Other diseases of tongue
## 10427 Disease of tongue, unspecified
## 10428 Eosinophilic esophagitis
## 10429 Other esophagitis
## 10430 Esophagitis, unspecified
## 10431 Gastro-esophageal reflux disease with esophagitis
## 10432 Gastro-esophageal reflux disease without esophagitis
## 10433 Achalasia of cardia
## 10434 Ulcer of esophagus without bleeding
## 10435 Ulcer of esophagus with bleeding
## 10436 Esophageal obstruction
## 10437 Perforation of esophagus
## 10438 Dyskinesia of esophagus
## 10439 Diverticulum of esophagus, acquired
## 10440 Gastro-esophageal laceration-hemorrhage syndrome
## 10441 Barrett's esophagus without dysplasia
## 10442 Barrett's esophagus with low grade dysplasia
## 10443 Barrett's esophagus with high grade dysplasia
## 10444 Barrett's esophagus with dysplasia, unspecified
## 10445 Other specified diseases of esophagus
## 10446 Disease of esophagus, unspecified
## 10447 Disorders of esophagus in diseases classified elsewhere
## 10448 Acute gastric ulcer with hemorrhage
## 10449 Acute gastric ulcer with perforation
## 10450 Acute gastric ulcer with both hemorrhage and perforation
## 10451 Acute gastric ulcer without hemorrhage or perforation
## 10452 Chronic or unspecified gastric ulcer with hemorrhage
## 10453 Chronic or unspecified gastric ulcer with perforation
## 10454 Chronic or unspecified gastric ulcer with both hemorrhage and perforation
## 10455 Chronic gastric ulcer without hemorrhage or perforation
## 10456 Gastric ulcer, unspecified as acute or chronic, without hemorrhage or perforation
## 10457 Acute duodenal ulcer with hemorrhage
## 10458 Acute duodenal ulcer with perforation
## 10459 Acute duodenal ulcer with both hemorrhage and perforation
## 10460 Acute duodenal ulcer without hemorrhage or perforation
## 10461 Chronic or unspecified duodenal ulcer with hemorrhage
## 10462 Chronic or unspecified duodenal ulcer with perforation
## 10463 Chronic or unspecified duodenal ulcer with both hemorrhage and perforation
## 10464 Chronic duodenal ulcer without hemorrhage or perforation
## 10465 Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation
## 10466 Acute peptic ulcer, site unspecified, with hemorrhage
## 10467 Acute peptic ulcer, site unspecified, with perforation
## 10468 Acute peptic ulcer, site unspecified, with both hemorrhage and perforation
## 10469 Acute peptic ulcer, site unspecified, without hemorrhage or perforation
## 10470 Chronic or unspecified peptic ulcer, site unspecified, with hemorrhage
## 10471 Chronic or unspecified peptic ulcer, site unspecified, with perforation
## 10472 Chronic or unspecified peptic ulcer, site unspecified, with both hemorrhage and perforation
## 10473 Chronic peptic ulcer, site unspecified, without hemorrhage or perforation
## 10474 Peptic ulcer, site unspecified, unspecified as acute or chronic, without hemorrhage or perforation
## 10475 Acute gastrojejunal ulcer with hemorrhage
## 10476 Acute gastrojejunal ulcer with perforation
## 10477 Acute gastrojejunal ulcer with both hemorrhage and perforation
## 10478 Acute gastrojejunal ulcer without hemorrhage or perforation
## 10479 Chronic or unspecified gastrojejunal ulcer with hemorrhage
## 10480 Chronic or unspecified gastrojejunal ulcer with perforation
## 10481 Chronic or unspecified gastrojejunal ulcer with both hemorrhage and perforation
## 10482 Chronic gastrojejunal ulcer without hemorrhage or perforation
## 10483 Gastrojejunal ulcer, unspecified as acute or chronic, without hemorrhage or perforation
## 10484 Acute gastritis without bleeding
## 10485 Acute gastritis with bleeding
## 10486 Alcoholic gastritis without bleeding
## 10487 Alcoholic gastritis with bleeding
## 10488 Chronic superficial gastritis without bleeding
## 10489 Chronic superficial gastritis with bleeding
## 10490 Chronic atrophic gastritis without bleeding
## 10491 Chronic atrophic gastritis with bleeding
## 10492 Unspecified chronic gastritis without bleeding
## 10493 Unspecified chronic gastritis with bleeding
## 10494 Other gastritis without bleeding
## 10495 Other gastritis with bleeding
## 10496 Gastritis, unspecified, without bleeding
## 10497 Gastritis, unspecified, with bleeding
## 10498 Duodenitis without bleeding
## 10499 Duodenitis with bleeding
## 10500 Gastroduodenitis, unspecified, without bleeding
## 10501 Gastroduodenitis, unspecified, with bleeding
## 10502 Functional dyspepsia
## 10503 Acute dilatation of stomach
## 10504 Adult hypertrophic pyloric stenosis
## 10505 Hourglass stricture and stenosis of stomach
## 10506 Pylorospasm, not elsewhere classified
## 10507 Gastric diverticulum
## 10508 Obstruction of duodenum
## 10509 Fistula of stomach and duodenum
## 10510 Polyp of stomach and duodenum
## 10511 Angiodysplasia of stomach and duodenum with bleeding
## 10512 Angiodysplasia of stomach and duodenum without bleeding
## 10513 Dieulafoy lesion (hemorrhagic) of stomach and duodenum
## 10514 Achlorhydria
## 10515 Gastroparesis
## 10516 Other diseases of stomach and duodenum
## 10517 Disease of stomach and duodenum, unspecified
## 10518 Acute appendicitis with generalized peritonitis, without abscess
## 10519 Acute appendicitis with generalized peritonitis, with abscess
## 10520 Acute appendicitis with localized peritonitis, without perforation or gangrene
## 10521 Acute appendicitis with localized peritonitis and gangrene, without perforation
## 10522 Acute appendicitis with perforation and localized peritonitis, without abscess
## 10523 Acute appendicitis with perforation and localized peritonitis, with abscess
## 10524 Unspecified acute appendicitis
## 10525 Other acute appendicitis without perforation or gangrene
## 10526 Other acute appendicitis without perforation, with gangrene
## 10527 Other appendicitis
## 10528 Unspecified appendicitis
## 10529 Hyperplasia of appendix
## 10530 Appendicular concretions
## 10531 Diverticulum of appendix
## 10532 Fistula of appendix
## 10533 Other specified diseases of appendix
## 10534 Disease of appendix, unspecified
## 10535 Bilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent
## 10536 Bilateral inguinal hernia, with obstruction, without gangrene, recurrent
## 10537 Bilateral inguinal hernia, with gangrene, not specified as recurrent
## 10538 Bilateral inguinal hernia, with gangrene, recurrent
## 10539 Bilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent
## 10540 Bilateral inguinal hernia, without obstruction or gangrene, recurrent
## 10541 Unilateral inguinal hernia, with obstruction, without gangrene, not specified as recurrent
## 10542 Unilateral inguinal hernia, with obstruction, without gangrene, recurrent
## 10543 Unilateral inguinal hernia, with gangrene, not specified as recurrent
## 10544 Unilateral inguinal hernia, with gangrene, recurrent
## 10545 Unilateral inguinal hernia, without obstruction or gangrene, not specified as recurrent
## 10546 Unilateral inguinal hernia, without obstruction or gangrene, recurrent
## 10547 Bilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent
## 10548 Bilateral femoral hernia, with obstruction, without gangrene, recurrent
## 10549 Bilateral femoral hernia, with gangrene, not specified as recurrent
## 10550 Bilateral femoral hernia, with gangrene, recurrent
## 10551 Bilateral femoral hernia, without obstruction or gangrene, not specified as recurrent
## 10552 Bilateral femoral hernia, without obstruction or gangrene, recurrent
## 10553 Unilateral femoral hernia, with obstruction, without gangrene, not specified as recurrent
## 10554 Unilateral femoral hernia, with obstruction, without gangrene, recurrent
## 10555 Unilateral femoral hernia, with gangrene, not specified as recurrent
## 10556 Unilateral femoral hernia, with gangrene, recurrent
## 10557 Unilateral femoral hernia, without obstruction or gangrene, not specified as recurrent
## 10558 Unilateral femoral hernia, without obstruction or gangrene, recurrent
## 10559 Umbilical hernia with obstruction, without gangrene
## 10560 Umbilical hernia with gangrene
## 10561 Umbilical hernia without obstruction or gangrene
## 10562 Incisional hernia with obstruction, without gangrene
## 10563 Incisional hernia with gangrene
## 10564 Incisional hernia without obstruction or gangrene
## 10565 Parastomal hernia with obstruction, without gangrene
## 10566 Parastomal hernia with gangrene
## 10567 Parastomal hernia without obstruction or gangrene
## 10568 Other and unspecified ventral hernia with obstruction, without gangrene
## 10569 Other and unspecified ventral hernia with gangrene
## 10570 Ventral hernia without obstruction or gangrene
## 10571 Diaphragmatic hernia with obstruction, without gangrene
## 10572 Diaphragmatic hernia with gangrene
## 10573 Diaphragmatic hernia without obstruction or gangrene
## 10574 Other specified abdominal hernia with obstruction, without gangrene
## 10575 Other specified abdominal hernia with gangrene
## 10576 Other specified abdominal hernia without obstruction or gangrene
## 10577 Unspecified abdominal hernia with obstruction, without gangrene
## 10578 Unspecified abdominal hernia with gangrene
## 10579 Unspecified abdominal hernia without obstruction or gangrene
## 10580 Crohn's disease of small intestine without complications
## 10581 Crohn's disease of small intestine with rectal bleeding
## 10582 Crohn's disease of small intestine with intestinal obstruction
## 10583 Crohn's disease of small intestine with fistula
## 10584 Crohn's disease of small intestine with abscess
## 10585 Crohn's disease of small intestine with other complication
## 10586 Crohn's disease of small intestine with unspecified complications
## 10587 Crohn's disease of large intestine without complications
## 10588 Crohn's disease of large intestine with rectal bleeding
## 10589 Crohn's disease of large intestine with intestinal obstruction
## 10590 Crohn's disease of large intestine with fistula
## 10591 Crohn's disease of large intestine with abscess
## 10592 Crohn's disease of large intestine with other complication
## 10593 Crohn's disease of large intestine with unspecified complications
## 10594 Crohn's disease of both small and large intestine without complications
## 10595 Crohn's disease of both small and large intestine with rectal bleeding
## 10596 Crohn's disease of both small and large intestine with intestinal obstruction
## 10597 Crohn's disease of both small and large intestine with fistula
## 10598 Crohn's disease of both small and large intestine with abscess
## 10599 Crohn's disease of both small and large intestine with other complication
## 10600 Crohn's disease of both small and large intestine with unspecified complications
## 10601 Crohn's disease, unspecified, without complications
## 10602 Crohn's disease, unspecified, with rectal bleeding
## 10603 Crohn's disease, unspecified, with intestinal obstruction
## 10604 Crohn's disease, unspecified, with fistula
## 10605 Crohn's disease, unspecified, with abscess
## 10606 Crohn's disease, unspecified, with other complication
## 10607 Crohn's disease, unspecified, with unspecified complications
## 10608 Ulcerative (chronic) pancolitis without complications
## 10609 Ulcerative (chronic) pancolitis with rectal bleeding
## 10610 Ulcerative (chronic) pancolitis with intestinal obstruction
## 10611 Ulcerative (chronic) pancolitis with fistula
## 10612 Ulcerative (chronic) pancolitis with abscess
## 10613 Ulcerative (chronic) pancolitis with other complication
## 10614 Ulcerative (chronic) pancolitis with unspecified complications
## 10615 Ulcerative (chronic) proctitis without complications
## 10616 Ulcerative (chronic) proctitis with rectal bleeding
## 10617 Ulcerative (chronic) proctitis with intestinal obstruction
## 10618 Ulcerative (chronic) proctitis with fistula
## 10619 Ulcerative (chronic) proctitis with abscess
## 10620 Ulcerative (chronic) proctitis with other complication
## 10621 Ulcerative (chronic) proctitis with unspecified complications
## 10622 Ulcerative (chronic) rectosigmoiditis without complications
## 10623 Ulcerative (chronic) rectosigmoiditis with rectal bleeding
## 10624 Ulcerative (chronic) rectosigmoiditis with intestinal obstruction
## 10625 Ulcerative (chronic) rectosigmoiditis with fistula
## 10626 Ulcerative (chronic) rectosigmoiditis with abscess
## 10627 Ulcerative (chronic) rectosigmoiditis with other complication
## 10628 Ulcerative (chronic) rectosigmoiditis with unspecified complications
## 10629 Inflammatory polyps of colon without complications
## 10630 Inflammatory polyps of colon with rectal bleeding
## 10631 Inflammatory polyps of colon with intestinal obstruction
## 10632 Inflammatory polyps of colon with fistula
## 10633 Inflammatory polyps of colon with abscess
## 10634 Inflammatory polyps of colon with other complication
## 10635 Inflammatory polyps of colon with unspecified complications
## 10636 Left sided colitis without complications
## 10637 Left sided colitis with rectal bleeding
## 10638 Left sided colitis with intestinal obstruction
## 10639 Left sided colitis with fistula
## 10640 Left sided colitis with abscess
## 10641 Left sided colitis with other complication
## 10642 Left sided colitis with unspecified complications
## 10643 Other ulcerative colitis without complications
## 10644 Other ulcerative colitis with rectal bleeding
## 10645 Other ulcerative colitis with intestinal obstruction
## 10646 Other ulcerative colitis with fistula
## 10647 Other ulcerative colitis with abscess
## 10648 Other ulcerative colitis with other complication
## 10649 Other ulcerative colitis with unspecified complications
## 10650 Ulcerative colitis, unspecified, without complications
## 10651 Ulcerative colitis, unspecified with rectal bleeding
## 10652 Ulcerative colitis, unspecified with intestinal obstruction
## 10653 Ulcerative colitis, unspecified with fistula
## 10654 Ulcerative colitis, unspecified with abscess
## 10655 Ulcerative colitis, unspecified with other complication
## 10656 Ulcerative colitis, unspecified with unspecified complications
## 10657 Gastroenteritis and colitis due to radiation
## 10658 Toxic gastroenteritis and colitis
## 10659 Food protein-induced enterocolitis syndrome
## 10660 Food protein-induced enteropathy
## 10661 Other allergic and dietetic gastroenteritis and colitis
## 10662 Indeterminate colitis
## 10663 Eosinophilic gastritis or gastroenteritis
## 10664 Eosinophilic colitis
## 10665 Collagenous colitis
## 10666 Lymphocytic colitis
## 10667 Other microscopic colitis
## 10668 Microscopic colitis, unspecified
## 10669 Other specified noninfective gastroenteritis and colitis
## 10670 Noninfective gastroenteritis and colitis, unspecified
## 10671 Focal (segmental) acute (reversible) ischemia of small intestine
## 10672 Diffuse acute (reversible) ischemia of small intestine
## 10673 Acute (reversible) ischemia of small intestine, extent unspecified
## 10674 Focal (segmental) acute infarction of small intestine
## 10675 Diffuse acute infarction of small intestine
## 10676 Acute infarction of small intestine, extent unspecified
## 10677 Focal (segmental) acute (reversible) ischemia of large intestine
## 10678 Diffuse acute (reversible) ischemia of large intestine
## 10679 Acute (reversible) ischemia of large intestine, extent unspecified
## 10680 Focal (segmental) acute infarction of large intestine
## 10681 Diffuse acute infarction of large intestine
## 10682 Acute infarction of large intestine, extent unspecified
## 10683 Focal (segmental) acute (reversible) ischemia of intestine, part unspecified
## 10684 Diffuse acute (reversible) ischemia of intestine, part unspecified
## 10685 Acute (reversible) ischemia of intestine, part and extent unspecified
## 10686 Focal (segmental) acute infarction of intestine, part unspecified
## 10687 Diffuse acute infarction of intestine, part unspecified
## 10688 Acute infarction of intestine, part and extent unspecified
## 10689 Chronic vascular disorders of intestine
## 10690 Angiodysplasia of colon without hemorrhage
## 10691 Angiodysplasia of colon with hemorrhage
## 10692 Necrotizing enterocolitis, unspecified
## 10693 Stage 1 necrotizing enterocolitis
## 10694 Stage 2 necrotizing enterocolitis
## 10695 Stage 3 necrotizing enterocolitis
## 10696 Other vascular disorders of intestine
## 10697 Vascular disorder of intestine, unspecified
## 10698 Paralytic ileus
## 10699 Intussusception
## 10700 Volvulus
## 10701 Gallstone ileus
## 10702 Fecal impaction
## 10703 Other impaction of intestine
## 10704 Intestinal adhesions [bands], unspecified as to partial versus complete obstruction
## 10705 Intestinal adhesions [bands], with partial obstruction
## 10706 Intestinal adhesions [bands] with complete obstruction
## 10707 Partial intestinal obstruction, unspecified as to cause
## 10708 Complete intestinal obstruction, unspecified as to cause
## 10709 Unspecified intestinal obstruction, unspecified as to partial versus complete obstruction
## 10710 Other partial intestinal obstruction
## 10711 Other complete intestinal obstruction
## 10712 Other intestinal obstruction unspecified as to partial versus complete obstruction
## 10713 Ileus, unspecified
## 10714 Diverticulitis of small intestine with perforation and abscess without bleeding
## 10715 Diverticulitis of small intestine with perforation and abscess with bleeding
## 10716 Diverticulosis of small intestine without perforation or abscess without bleeding
## 10717 Diverticulosis of small intestine without perforation or abscess with bleeding
## 10718 Diverticulitis of small intestine without perforation or abscess without bleeding
## 10719 Diverticulitis of small intestine without perforation or abscess with bleeding
## 10720 Diverticulitis of large intestine with perforation and abscess without bleeding
## 10721 Diverticulitis of large intestine with perforation and abscess with bleeding
## 10722 Diverticulosis of large intestine without perforation or abscess without bleeding
## 10723 Diverticulosis of large intestine without perforation or abscess with bleeding
## 10724 Diverticulitis of large intestine without perforation or abscess without bleeding
## 10725 Diverticulitis of large intestine without perforation or abscess with bleeding
## 10726 Diverticulitis of both small and large intestine with perforation and abscess without bleeding
## 10727 Diverticulitis of both small and large intestine with perforation and abscess with bleeding
## 10728 Diverticulosis of both small and large intestine without perforation or abscess without bleeding
## 10729 Diverticulosis of both small and large intestine without perforation or abscess with bleeding
## 10730 Diverticulitis of both small and large intestine without perforation or abscess without bleeding
## 10731 Diverticulitis of both small and large intestine without perforation or abscess with bleeding
## 10732 Diverticulitis of intestine, part unspecified, with perforation and abscess without bleeding
## 10733 Diverticulitis of intestine, part unspecified, with perforation and abscess with bleeding
## 10734 Diverticulosis of intestine, part unspecified, without perforation or abscess without bleeding
## 10735 Diverticulosis of intestine, part unspecified, without perforation or abscess with bleeding
## 10736 Diverticulitis of intestine, part unspecified, without perforation or abscess without bleeding
## 10737 Diverticulitis of intestine, part unspecified, without perforation or abscess with bleeding
## 10738 Irritable bowel syndrome with diarrhea
## 10739 Irritable bowel syndrome with constipation
## 10740 Mixed irritable bowel syndrome
## 10741 Other irritable bowel syndrome
## 10742 Irritable bowel syndrome without diarrhea
## 10743 Constipation, unspecified
## 10744 Slow transit constipation
## 10745 Outlet dysfunction constipation
## 10746 Drug induced constipation
## 10747 Chronic idiopathic constipation
## 10748 Other constipation
## 10749 Functional diarrhea
## 10750 Neurogenic bowel, not elsewhere classified
## 10751 Toxic megacolon
## 10752 Other megacolon
## 10753 Anal spasm
## 10754 Other specified functional intestinal disorders
## 10755 Functional intestinal disorder, unspecified
## 10756 Acute anal fissure
## 10757 Chronic anal fissure
## 10758 Anal fissure, unspecified
## 10759 Anal fistula
## 10760 Rectal fistula
## 10761 Anorectal fistula
## 10762 Anal abscess
## 10763 Rectal abscess
## 10764 Anorectal abscess
## 10765 Horseshoe abscess
## 10766 Other ischiorectal abscess
## 10767 Intrasphincteric abscess
## 10768 Supralevator abscess
## 10769 Anal polyp
## 10770 Rectal polyp
## 10771 Anal prolapse
## 10772 Rectal prolapse
## 10773 Stenosis of anus and rectum
## 10774 Hemorrhage of anus and rectum
## 10775 Ulcer of anus and rectum
## 10776 Radiation proctitis
## 10777 Anal sphincter tear (healed) (nontraumatic) (old)
## 10778 Dysplasia of anus
## 10779 Other specified diseases of anus and rectum
## 10780 Disease of anus and rectum, unspecified
## 10781 Abscess of intestine
## 10782 Perforation of intestine (nontraumatic)
## 10783 Fistula of intestine
## 10784 Ulcer of intestine
## 10785 Enteroptosis
## 10786 Polyp of colon
## 10787 Dieulafoy lesion of intestine
## 10788 Other specified diseases of intestine
## 10789 Disease of intestine, unspecified
## 10790 First degree hemorrhoids
## 10791 Second degree hemorrhoids
## 10792 Third degree hemorrhoids
## 10793 Fourth degree hemorrhoids
## 10794 Residual hemorrhoidal skin tags
## 10795 Perianal venous thrombosis
## 10796 Other hemorrhoids
## 10797 Unspecified hemorrhoids
## 10798 Generalized (acute) peritonitis
## 10799 Peritoneal abscess
## 10800 Spontaneous bacterial peritonitis
## 10801 Choleperitonitis
## 10802 Sclerosing mesenteritis
## 10803 Other peritonitis
## 10804 Peritonitis, unspecified
## 10805 Peritoneal adhesions (postprocedural) (postinfection)
## 10806 Hemoperitoneum
## 10807 Other specified disorders of peritoneum
## 10808 Disorder of peritoneum, unspecified
## 10809 Disorders of peritoneum in infectious diseases classified elsewhere
## 10810 Postprocedural retroperitoneal abscess
## 10811 Psoas muscle abscess
## 10812 Other retroperitoneal abscess
## 10813 Other disorders of retroperitoneum
## 10814 Alcoholic fatty liver
## 10815 Alcoholic hepatitis without ascites
## 10816 Alcoholic hepatitis with ascites
## 10817 Alcoholic fibrosis and sclerosis of liver
## 10818 Alcoholic cirrhosis of liver without ascites
## 10819 Alcoholic cirrhosis of liver with ascites
## 10820 Alcoholic hepatic failure without coma
## 10821 Alcoholic hepatic failure with coma
## 10822 Alcoholic liver disease, unspecified
## 10823 Toxic liver disease with cholestasis
## 10824 Toxic liver disease with hepatic necrosis, without coma
## 10825 Toxic liver disease with hepatic necrosis, with coma
## 10826 Toxic liver disease with acute hepatitis
## 10827 Toxic liver disease with chronic persistent hepatitis
## 10828 Toxic liver disease with chronic lobular hepatitis
## 10829 Toxic liver disease with chronic active hepatitis without ascites
## 10830 Toxic liver disease with chronic active hepatitis with ascites
## 10831 Toxic liver disease with hepatitis, not elsewhere classified
## 10832 Toxic liver disease with fibrosis and cirrhosis of liver
## 10833 Toxic liver disease with other disorders of liver
## 10834 Toxic liver disease, unspecified
## 10835 Acute and subacute hepatic failure without coma
## 10836 Acute and subacute hepatic failure with coma
## 10837 Chronic hepatic failure without coma
## 10838 Chronic hepatic failure with coma
## 10839 Hepatic failure, unspecified without coma
## 10840 Hepatic failure, unspecified with coma
## 10841 Chronic persistent hepatitis, not elsewhere classified
## 10842 Chronic lobular hepatitis, not elsewhere classified
## 10843 Chronic active hepatitis, not elsewhere classified
## 10844 Other chronic hepatitis, not elsewhere classified
## 10845 Chronic hepatitis, unspecified
## 10846 Hepatic fibrosis
## 10847 Hepatic sclerosis
## 10848 Hepatic fibrosis with hepatic sclerosis
## 10849 Primary biliary cirrhosis
## 10850 Secondary biliary cirrhosis
## 10851 Biliary cirrhosis, unspecified
## 10852 Unspecified cirrhosis of liver
## 10853 Other cirrhosis of liver
## 10854 Abscess of liver
## 10855 Phlebitis of portal vein
## 10856 Nonspecific reactive hepatitis
## 10857 Granulomatous hepatitis, not elsewhere classified
## 10858 Autoimmune hepatitis
## 10859 Nonalcoholic steatohepatitis (NASH)
## 10860 Other specified inflammatory liver diseases
## 10861 Inflammatory liver disease, unspecified
## 10862 Fatty (change of) liver, not elsewhere classified
## 10863 Chronic passive congestion of liver
## 10864 Central hemorrhagic necrosis of liver
## 10865 Infarction of liver
## 10866 Peliosis hepatis
## 10867 Hepatic veno-occlusive disease
## 10868 Portal hypertension
## 10869 Hepatorenal syndrome
## 10870 Hepatopulmonary syndrome
## 10871 Other specified diseases of liver
## 10872 Liver disease, unspecified
## 10873 Liver disorders in diseases classified elsewhere
## 10874 Calculus of gallbladder with acute cholecystitis without obstruction
## 10875 Calculus of gallbladder with acute cholecystitis with obstruction
## 10876 Calculus of gallbladder with chronic cholecystitis without obstruction
## 10877 Calculus of gallbladder with chronic cholecystitis with obstruction
## 10878 Calculus of gallbladder with acute and chronic cholecystitis without obstruction
## 10879 Calculus of gallbladder with acute and chronic cholecystitis with obstruction
## 10880 Calculus of gallbladder with other cholecystitis without obstruction
## 10881 Calculus of gallbladder with other cholecystitis with obstruction
## 10882 Calculus of gallbladder without cholecystitis without obstruction
## 10883 Calculus of gallbladder without cholecystitis with obstruction
## 10884 Calculus of bile duct with cholangitis, unspecified, without obstruction
## 10885 Calculus of bile duct with cholangitis, unspecified, with obstruction
## 10886 Calculus of bile duct with acute cholangitis without obstruction
## 10887 Calculus of bile duct with acute cholangitis with obstruction
## 10888 Calculus of bile duct with chronic cholangitis without obstruction
## 10889 Calculus of bile duct with chronic cholangitis with obstruction
## 10890 Calculus of bile duct with acute and chronic cholangitis without obstruction
## 10891 Calculus of bile duct with acute and chronic cholangitis with obstruction
## 10892 Calculus of bile duct with cholecystitis, unspecified, without obstruction
## 10893 Calculus of bile duct with cholecystitis, unspecified, with obstruction
## 10894 Calculus of bile duct with acute cholecystitis without obstruction
## 10895 Calculus of bile duct with acute cholecystitis with obstruction
## 10896 Calculus of bile duct with chronic cholecystitis without obstruction
## 10897 Calculus of bile duct with chronic cholecystitis with obstruction
## 10898 Calculus of bile duct with acute and chronic cholecystitis without obstruction
## 10899 Calculus of bile duct with acute and chronic cholecystitis with obstruction
## 10900 Calculus of bile duct without cholangitis or cholecystitis without obstruction
## 10901 Calculus of bile duct without cholangitis or cholecystitis with obstruction
## 10902 Calculus of gallbladder and bile duct with cholecystitis, unspecified, without obstruction
## 10903 Calculus of gallbladder and bile duct with cholecystitis, unspecified, with obstruction
## 10904 Calculus of gallbladder and bile duct with acute cholecystitis without obstruction
## 10905 Calculus of gallbladder and bile duct with acute cholecystitis with obstruction
## 10906 Calculus of gallbladder and bile duct with chronic cholecystitis without obstruction
## 10907 Calculus of gallbladder and bile duct with chronic cholecystitis with obstruction
## 10908 Calculus of gallbladder and bile duct with acute and chronic cholecystitis without obstruction
## 10909 Calculus of gallbladder and bile duct with acute and chronic cholecystitis with obstruction
## 10910 Calculus of gallbladder and bile duct without cholecystitis without obstruction
## 10911 Calculus of gallbladder and bile duct without cholecystitis with obstruction
## 10912 Other cholelithiasis without obstruction
## 10913 Other cholelithiasis with obstruction
## 10914 Acute cholecystitis
## 10915 Chronic cholecystitis
## 10916 Acute cholecystitis with chronic cholecystitis
## 10917 Cholecystitis, unspecified
## 10918 Obstruction of gallbladder
## 10919 Hydrops of gallbladder
## 10920 Perforation of gallbladder
## 10921 Fistula of gallbladder
## 10922 Cholesterolosis of gallbladder
## 10923 Other specified diseases of gallbladder
## 10924 Disease of gallbladder, unspecified
## 10925 Gangrene of gallbladder in cholecystitis
## 10926 Perforation of gallbladder in cholecystitis
## 10927 Primary sclerosing cholangitis
## 10928 Other cholangitis
## 10929 Obstruction of bile duct
## 10930 Perforation of bile duct
## 10931 Fistula of bile duct
## 10932 Spasm of sphincter of Oddi
## 10933 Biliary cyst
## 10934 Other specified diseases of biliary tract
## 10935 Disease of biliary tract, unspecified
## 10936 Idiopathic acute pancreatitis without necrosis or infection
## 10937 Idiopathic acute pancreatitis with uninfected necrosis
## 10938 Idiopathic acute pancreatitis with infected necrosis
## 10939 Biliary acute pancreatitis without necrosis or infection
## 10940 Biliary acute pancreatitis with uninfected necrosis
## 10941 Biliary acute pancreatitis with infected necrosis
## 10942 Alcohol induced acute pancreatitis without necrosis or infection
## 10943 Alcohol induced acute pancreatitis with uninfected necrosis
## 10944 Alcohol induced acute pancreatitis with infected necrosis
## 10945 Drug induced acute pancreatitis without necrosis or infection
## 10946 Drug induced acute pancreatitis with uninfected necrosis
## 10947 Drug induced acute pancreatitis with infected necrosis
## 10948 Other acute pancreatitis without necrosis or infection
## 10949 Other acute pancreatitis with uninfected necrosis
## 10950 Other acute pancreatitis with infected necrosis
## 10951 Acute pancreatitis without necrosis or infection, unspecified
## 10952 Acute pancreatitis with uninfected necrosis, unspecified
## 10953 Acute pancreatitis with infected necrosis, unspecified
## 10954 Alcohol-induced chronic pancreatitis
## 10955 Other chronic pancreatitis
## 10956 Cyst of pancreas
## 10957 Pseudocyst of pancreas
## 10958 Exocrine pancreatic insufficiency
## 10959 Other specified diseases of pancreas
## 10960 Disease of pancreas, unspecified
## 10961 Disorders of gallbladder, biliary tract and pancreas in diseases classified elsewhere
## 10962 Celiac disease
## 10963 Tropical sprue
## 10964 Blind loop syndrome, not elsewhere classified
## 10965 Pancreatic steatorrhea
## 10966 Non-celiac gluten sensitivity
## 10967 Malabsorption due to intolerance, not elsewhere classified
## 10968 Whipple's disease
## 10969 Other intestinal malabsorption
## 10970 Intestinal malabsorption, unspecified
## 10971 Vomiting following gastrointestinal surgery
## 10972 Postgastric surgery syndromes
## 10973 Postsurgical malabsorption, not elsewhere classified
## 10974 Postprocedural intestinal obstruction, unspecified as to partial versus complete
## 10975 Postprocedural partial intestinal obstruction
## 10976 Postprocedural complete intestinal obstruction
## 10977 Postcholecystectomy syndrome
## 10978 Intraoperative hemorrhage and hematoma of a digestive system organ or structure complicating a digestive system procedure
## 10979 Intraoperative hemorrhage and hematoma of a digestive system organ or structure complicating other procedure
## 10980 Accidental puncture and laceration of a digestive system organ or structure during a digestive system procedure
## 10981 Accidental puncture and laceration of a digestive system organ or structure during other procedure
## 10982 Other intraoperative complications of digestive system
## 10983 Postprocedural hepatic failure
## 10984 Postprocedural hepatorenal syndrome
## 10985 Postprocedural hemorrhage of a digestive system organ or structure following a digestive system procedure
## 10986 Postprocedural hemorrhage of a digestive system organ or structure following other procedure
## 10987 Pouchitis
## 10988 Other complications of intestinal pouch
## 10989 Retained cholelithiasis following cholecystectomy
## 10990 Postprocedural hematoma of a digestive system organ or structure following a digestive system procedure
## 10991 Postprocedural hematoma of a digestive system organ or structure following other procedure
## 10992 Postprocedural seroma of a digestive system organ or structure following a digestive system procedure
## 10993 Postprocedural seroma of a digestive system organ or structure following other procedure
## 10994 Other postprocedural complications and disorders of digestive system
## 10995 Hematemesis
## 10996 Melena
## 10997 Gastrointestinal hemorrhage, unspecified
## 10998 Gastrointestinal mucositis (ulcerative)
## 10999 Other specified diseases of the digestive system
## 11000 Disease of digestive system, unspecified
## 11001 Colostomy complication, unspecified
## 11002 Colostomy hemorrhage
## 11003 Colostomy infection
## 11004 Colostomy malfunction
## 11005 Other complications of colostomy
## 11006 Enterostomy complication, unspecified
## 11007 Enterostomy hemorrhage
## 11008 Enterostomy infection
## 11009 Enterostomy malfunction
## 11010 Other complications of enterostomy
## 11011 Gastrostomy complication, unspecified
## 11012 Gastrostomy hemorrhage
## 11013 Gastrostomy infection
## 11014 Gastrostomy malfunction
## 11015 Other complications of gastrostomy
## 11016 Esophagostomy complications, unspecified
## 11017 Esophagostomy hemorrhage
## 11018 Esophagostomy infection
## 11019 Esophagostomy malfunction
## 11020 Other complications of esophagostomy
## 11021 Infection due to gastric band procedure
## 11022 Other complications of gastric band procedure
## 11023 Infection due to other bariatric procedure
## 11024 Other complications of other bariatric procedure
## 11025 Staphylococcal scalded skin syndrome
## 11026 Impetigo, unspecified
## 11027 Non-bullous impetigo
## 11028 Bockhart's impetigo
## 11029 Bullous impetigo
## 11030 Other impetigo
## 11031 Impetiginization of other dermatoses
## 11032 Cutaneous abscess of face
## 11033 Furuncle of face
## 11034 Carbuncle of face
## 11035 Cutaneous abscess of neck
## 11036 Furuncle of neck
## 11037 Carbuncle of neck
## 11038 Cutaneous abscess of abdominal wall
## 11039 Cutaneous abscess of back [any part, except buttock]
## 11040 Cutaneous abscess of chest wall
## 11041 Cutaneous abscess of groin
## 11042 Cutaneous abscess of perineum
## 11043 Cutaneous abscess of umbilicus
## 11044 Cutaneous abscess of trunk, unspecified
## 11045 Furuncle of abdominal wall
## 11046 Furuncle of back [any part, except buttock]
## 11047 Furuncle of chest wall
## 11048 Furuncle of groin
## 11049 Furuncle of perineum
## 11050 Furuncle of umbilicus
## 11051 Furuncle of trunk, unspecified
## 11052 Carbuncle of abdominal wall
## 11053 Carbuncle of back [any part, except buttock]
## 11054 Carbuncle of chest wall
## 11055 Carbuncle of groin
## 11056 Carbuncle of perineum
## 11057 Carbuncle of umbilicus
## 11058 Carbuncle of trunk, unspecified
## 11059 Cutaneous abscess of buttock
## 11060 Furuncle of buttock
## 11061 Carbuncle of buttock
## 11062 Cutaneous abscess of right axilla
## 11063 Cutaneous abscess of left axilla
## 11064 Cutaneous abscess of right upper limb
## 11065 Cutaneous abscess of left upper limb
## 11066 Cutaneous abscess of right lower limb
## 11067 Cutaneous abscess of left lower limb
## 11068 Cutaneous abscess of limb, unspecified
## 11069 Furuncle of right axilla
## 11070 Furuncle of left axilla
## 11071 Furuncle of right upper limb
## 11072 Furuncle of left upper limb
## 11073 Furuncle of right lower limb
## 11074 Furuncle of left lower limb
## 11075 Furuncle of limb, unspecified
## 11076 Carbuncle of right axilla
## 11077 Carbuncle of left axilla
## 11078 Carbuncle of right upper limb
## 11079 Carbuncle of left upper limb
## 11080 Carbuncle of right lower limb
## 11081 Carbuncle of left lower limb
## 11082 Carbuncle of limb, unspecified
## 11083 Cutaneous abscess of right hand
## 11084 Cutaneous abscess of left hand
## 11085 Cutaneous abscess of unspecified hand
## 11086 Furuncle right hand
## 11087 Furuncle left hand
## 11088 Furuncle unspecified hand
## 11089 Carbuncle of right hand
## 11090 Carbuncle of left hand
## 11091 Carbuncle of unspecified hand
## 11092 Cutaneous abscess of right foot
## 11093 Cutaneous abscess of left foot
## 11094 Cutaneous abscess of unspecified foot
## 11095 Furuncle of right foot
## 11096 Furuncle of left foot
## 11097 Furuncle of unspecified foot
## 11098 Carbuncle of right foot
## 11099 Carbuncle of left foot
## 11100 Carbuncle of unspecified foot
## 11101 Cutaneous abscess of head [any part, except face]
## 11102 Cutaneous abscess of other sites
## 11103 Furuncle of head [any part, except face]
## 11104 Furuncle of other sites
## 11105 Carbuncle of head [any part, except face]
## 11106 Carbuncle of other sites
## 11107 Cutaneous abscess, unspecified
## 11108 Furuncle, unspecified
## 11109 Carbuncle, unspecified
## 11110 Cellulitis of right finger
## 11111 Cellulitis of left finger
## 11112 Cellulitis of unspecified finger
## 11113 Acute lymphangitis of right finger
## 11114 Acute lymphangitis of left finger
## 11115 Acute lymphangitis of unspecified finger
## 11116 Cellulitis of right toe
## 11117 Cellulitis of left toe
## 11118 Cellulitis of unspecified toe
## 11119 Acute lymphangitis of right toe
## 11120 Acute lymphangitis of left toe
## 11121 Acute lymphangitis of unspecified toe
## 11122 Cellulitis of right axilla
## 11123 Cellulitis of left axilla
## 11124 Cellulitis of right upper limb
## 11125 Cellulitis of left upper limb
## 11126 Cellulitis of right lower limb
## 11127 Cellulitis of left lower limb
## 11128 Cellulitis of unspecified part of limb
## 11129 Acute lymphangitis of right axilla
## 11130 Acute lymphangitis of left axilla
## 11131 Acute lymphangitis of right upper limb
## 11132 Acute lymphangitis of left upper limb
## 11133 Acute lymphangitis of right lower limb
## 11134 Acute lymphangitis of left lower limb
## 11135 Acute lymphangitis of unspecified part of limb
## 11136 Cellulitis of face
## 11137 Acute lymphangitis of face
## 11138 Periorbital cellulitis
## 11139 Cellulitis of neck
## 11140 Acute lymphangitis of neck
## 11141 Cellulitis of abdominal wall
## 11142 Cellulitis of back [any part except buttock]
## 11143 Cellulitis of chest wall
## 11144 Cellulitis of groin
## 11145 Cellulitis of perineum
## 11146 Cellulitis of umbilicus
## 11147 Cellulitis of buttock
## 11148 Cellulitis of trunk, unspecified
## 11149 Acute lymphangitis of abdominal wall
## 11150 Acute lymphangitis of back [any part except buttock]
## 11151 Acute lymphangitis of chest wall
## 11152 Acute lymphangitis of groin
## 11153 Acute lymphangitis of perineum
## 11154 Acute lymphangitis of umbilicus
## 11155 Acute lymphangitis of buttock
## 11156 Acute lymphangitis of trunk, unspecified
## 11157 Cellulitis of head [any part, except face]
## 11158 Cellulitis of other sites
## 11159 Acute lymphangitis of head [any part, except face]
## 11160 Acute lymphangitis of other sites
## 11161 Cellulitis, unspecified
## 11162 Acute lymphangitis, unspecified
## 11163 Acute lymphadenitis of face, head and neck
## 11164 Acute lymphadenitis of trunk
## 11165 Acute lymphadenitis of upper limb
## 11166 Acute lymphadenitis of lower limb
## 11167 Acute lymphadenitis of other sites
## 11168 Acute lymphadenitis, unspecified
## 11169 Pilonidal cyst with abscess
## 11170 Pilonidal sinus with abscess
## 11171 Pilonidal cyst without abscess
## 11172 Pilonidal sinus without abscess
## 11173 Pyoderma
## 11174 Erythrasma
## 11175 Pyoderma vegetans
## 11176 Omphalitis not of newborn
## 11177 Other specified local infections of the skin and subcutaneous tissue
## 11178 Local infection of the skin and subcutaneous tissue, unspecified
## 11179 Pemphigus vulgaris
## 11180 Pemphigus vegetans
## 11181 Pemphigus foliaceous
## 11182 Brazilian pemphigus [fogo selvagem]
## 11183 Pemphigus erythematosus
## 11184 Drug-induced pemphigus
## 11185 Paraneoplastic pemphigus
## 11186 Other pemphigus
## 11187 Pemphigus, unspecified
## 11188 Acquired keratosis follicularis
## 11189 Transient acantholytic dermatosis [Grover]
## 11190 Other specified acantholytic disorders
## 11191 Acantholytic disorder, unspecified
## 11192 Bullous pemphigoid
## 11193 Cicatricial pemphigoid
## 11194 Chronic bullous disease of childhood
## 11195 Acquired epidermolysis bullosa, unspecified
## 11196 Epidermolysis bullosa due to drug
## 11197 Other acquired epidermolysis bullosa
## 11198 Other pemphigoid
## 11199 Pemphigoid, unspecified
## 11200 Dermatitis herpetiformis
## 11201 Subcorneal pustular dermatitis
## 11202 Other specified bullous disorders
## 11203 Bullous disorder, unspecified
## 11204 Bullous disorders in diseases classified elsewhere
## 11205 Besnier's prurigo
## 11206 Atopic neurodermatitis
## 11207 Flexural eczema
## 11208 Infantile (acute) (chronic) eczema
## 11209 Intrinsic (allergic) eczema
## 11210 Other atopic dermatitis
## 11211 Atopic dermatitis, unspecified
## 11212 Seborrhea capitis
## 11213 Seborrheic infantile dermatitis
## 11214 Other seborrheic dermatitis
## 11215 Seborrheic dermatitis, unspecified
## 11216 Diaper dermatitis
## 11217 Allergic contact dermatitis due to metals
## 11218 Allergic contact dermatitis due to adhesives
## 11219 Allergic contact dermatitis due to cosmetics
## 11220 Allergic contact dermatitis due to drugs in contact with skin
## 11221 Allergic contact dermatitis due to dyes
## 11222 Allergic contact dermatitis due to other chemical products
## 11223 Allergic contact dermatitis due to food in contact with the skin
## 11224 Allergic contact dermatitis due to plants, except food
## 11225 Allergic contact dermatitis due to animal (cat) (dog) dander
## 11226 Allergic contact dermatitis due to other agents
## 11227 Allergic contact dermatitis, unspecified cause
## 11228 Irritant contact dermatitis due to detergents
## 11229 Irritant contact dermatitis due to oils and greases
## 11230 Irritant contact dermatitis due to solvents
## 11231 Irritant contact dermatitis due to cosmetics
## 11232 Irritant contact dermatitis due to drugs in contact with skin
## 11233 Irritant contact dermatitis due to other chemical products
## 11234 Irritant contact dermatitis due to food in contact with skin
## 11235 Irritant contact dermatitis due to plants, except food
## 11236 Irritant contact dermatitis due to metals
## 11237 Irritant contact dermatitis due to other agents
## 11238 Irritant contact dermatitis, unspecified cause
## 11239 Unspecified contact dermatitis due to cosmetics
## 11240 Unspecified contact dermatitis due to drugs in contact with skin
## 11241 Unspecified contact dermatitis due to dyes
## 11242 Unspecified contact dermatitis due to other chemical products
## 11243 Unspecified contact dermatitis due to food in contact with skin
## 11244 Unspecified contact dermatitis due to plants, except food
## 11245 Unspecified contact dermatitis due to other agents
## 11246 Unspecified contact dermatitis, unspecified cause
## 11247 Exfoliative dermatitis
## 11248 Generalized skin eruption due to drugs and medicaments taken internally
## 11249 Localized skin eruption due to drugs and medicaments taken internally
## 11250 Dermatitis due to ingested food
## 11251 Dermatitis due to other substances taken internally
## 11252 Dermatitis due to unspecified substance taken internally
## 11253 Lichen simplex chronicus
## 11254 Prurigo nodularis
## 11255 Other prurigo
## 11256 Pruritus ani
## 11257 Pruritus scroti
## 11258 Pruritus vulvae
## 11259 Anogenital pruritus, unspecified
## 11260 Other pruritus
## 11261 Pruritus, unspecified
## 11262 Nummular dermatitis
## 11263 Dyshidrosis [pompholyx]
## 11264 Cutaneous autosensitization
## 11265 Infective dermatitis
## 11266 Erythema intertrigo
## 11267 Pityriasis alba
## 11268 Other specified dermatitis
## 11269 Dermatitis, unspecified
## 11270 Psoriasis vulgaris
## 11271 Generalized pustular psoriasis
## 11272 Acrodermatitis continua
## 11273 Pustulosis palmaris et plantaris
## 11274 Guttate psoriasis
## 11275 Arthropathic psoriasis, unspecified
## 11276 Distal interphalangeal psoriatic arthropathy
## 11277 Psoriatic arthritis mutilans
## 11278 Psoriatic spondylitis
## 11279 Psoriatic juvenile arthropathy
## 11280 Other psoriatic arthropathy
## 11281 Other psoriasis
## 11282 Psoriasis, unspecified
## 11283 Pityriasis lichenoides et varioliformis acuta
## 11284 Pityriasis lichenoides chronica
## 11285 Small plaque parapsoriasis
## 11286 Large plaque parapsoriasis
## 11287 Retiform parapsoriasis
## 11288 Other parapsoriasis
## 11289 Parapsoriasis, unspecified
## 11290 Pityriasis rosea
## 11291 Hypertrophic lichen planus
## 11292 Bullous lichen planus
## 11293 Lichenoid drug reaction
## 11294 Subacute (active) lichen planus
## 11295 Other lichen planus
## 11296 Lichen planus, unspecified
## 11297 Pityriasis rubra pilaris
## 11298 Lichen nitidus
## 11299 Lichen striatus
## 11300 Lichen ruber moniliformis
## 11301 Infantile papular acrodermatitis [Gianotti-Crosti]
## 11302 Other specified papulosquamous disorders
## 11303 Papulosquamous disorder, unspecified
## 11304 Papulosquamous disorders in diseases classified elsewhere
## 11305 Exfoliation due to erythematous condition involving less than 10 percent of body surface
## 11306 Exfoliation due to erythematous condition involving 10-19 percent of body surface
## 11307 Exfoliation due to erythematous condition involving 20-29 percent of body surface
## 11308 Exfoliation due to erythematous condition involving 30-39 percent of body surface
## 11309 Exfoliation due to erythematous condition involving 40-49 percent of body surface
## 11310 Exfoliation due to erythematous condition involving 50-59 percent of body surface
## 11311 Exfoliation due to erythematous condition involving 60-69 percent of body surface
## 11312 Exfoliation due to erythematous condition involving 70-79 percent of body surface
## 11313 Exfoliation due to erythematous condition involving 80-89 percent of body surface
## 11314 Exfoliation due to erythematous condition involving 90 or more percent of body surface
## 11315 Allergic urticaria
## 11316 Idiopathic urticaria
## 11317 Urticaria due to cold and heat
## 11318 Dermatographic urticaria
## 11319 Vibratory urticaria
## 11320 Cholinergic urticaria
## 11321 Contact urticaria
## 11322 Other urticaria
## 11323 Urticaria, unspecified
## 11324 Nonbullous erythema multiforme
## 11325 Stevens-Johnson syndrome
## 11326 Toxic epidermal necrolysis [Lyell]
## 11327 Stevens-Johnson syndrome-toxic epidermal necrolysis overlap syndrome
## 11328 Other erythema multiforme
## 11329 Erythema multiforme, unspecified
## 11330 Erythema nodosum
## 11331 Toxic erythema
## 11332 Erythema annulare centrifugum
## 11333 Erythema marginatum
## 11334 Other chronic figurate erythema
## 11335 Other specified erythematous conditions
## 11336 Erythematous condition, unspecified
## 11337 Erythema in diseases classified elsewhere
## 11338 Sunburn of first degree
## 11339 Sunburn of second degree
## 11340 Sunburn of third degree
## 11341 Sunburn, unspecified
## 11342 Drug phototoxic response
## 11343 Drug photoallergic response
## 11344 Photocontact dermatitis [berloque dermatitis]
## 11345 Solar urticaria
## 11346 Polymorphous light eruption
## 11347 Disseminated superficial actinic porokeratosis (DSAP)
## 11348 Other specified acute skin changes due to ultraviolet radiation
## 11349 Acute skin change due to ultraviolet radiation, unspecified
## 11350 Actinic keratosis
## 11351 Actinic reticuloid
## 11352 Cutis rhomboidalis nuchae
## 11353 Poikiloderma of Civatte
## 11354 Cutis laxa senilis
## 11355 Actinic granuloma
## 11356 Other skin changes due to chronic exposure to nonionizing radiation
## 11357 Skin changes due to chronic exposure to nonionizing radiation, unspecified
## 11358 Acute radiodermatitis
## 11359 Chronic radiodermatitis
## 11360 Radiodermatitis, unspecified
## 11361 Erythema ab igne [dermatitis ab igne]
## 11362 Other specified disorders of the skin and subcutaneous tissue related to radiation
## 11363 Disorder of the skin and subcutaneous tissue related to radiation, unspecified
## 11364 Ingrowing nail
## 11365 Onycholysis
## 11366 Onychogryphosis
## 11367 Nail dystrophy
## 11368 Beau's lines
## 11369 Yellow nail syndrome
## 11370 Other nail disorders
## 11371 Nail disorder, unspecified
## 11372 Nail disorders in diseases classified elsewhere
## 11373 Alopecia (capitis) totalis
## 11374 Alopecia universalis
## 11375 Ophiasis
## 11376 Other alopecia areata
## 11377 Alopecia areata, unspecified
## 11378 Drug-induced androgenic alopecia
## 11379 Other androgenic alopecia
## 11380 Androgenic alopecia, unspecified
## 11381 Telogen effluvium
## 11382 Anagen effluvium
## 11383 Alopecia mucinosa
## 11384 Other specified nonscarring hair loss
## 11385 Nonscarring hair loss, unspecified
## 11386 Pseudopelade
## 11387 Lichen planopilaris
## 11388 Folliculitis decalvans
## 11389 Perifolliculitis capitis abscedens
## 11390 Folliculitis ulerythematosa reticulata
## 11391 Other cicatricial alopecia
## 11392 Cicatricial alopecia, unspecified
## 11393 Trichorrhexis nodosa
## 11394 Variations in hair color
## 11395 Other hair color and hair shaft abnormalities
## 11396 Hair color and hair shaft abnormality, unspecified
## 11397 Hirsutism
## 11398 Acquired hypertrichosis lanuginosa
## 11399 Localized hypertrichosis
## 11400 Polytrichia
## 11401 Other hypertrichosis
## 11402 Hypertrichosis, unspecified
## 11403 Acne vulgaris
## 11404 Acne conglobata
## 11405 Acne varioliformis
## 11406 Acne tropica
## 11407 Infantile acne
## 11408 Acne excoriee
## 11409 Other acne
## 11410 Acne, unspecified
## 11411 Perioral dermatitis
## 11412 Rhinophyma
## 11413 Other rosacea
## 11414 Rosacea, unspecified
## 11415 Epidermal cyst
## 11416 Pilar cyst
## 11417 Trichodermal cyst
## 11418 Steatocystoma multiplex
## 11419 Sebaceous cyst
## 11420 Other follicular cysts of the skin and subcutaneous tissue
## 11421 Follicular cyst of the skin and subcutaneous tissue, unspecified
## 11422 Acne keloid
## 11423 Pseudofolliculitis barbae
## 11424 Hidradenitis suppurativa
## 11425 Other specified follicular disorders
## 11426 Follicular disorder, unspecified
## 11427 Miliaria rubra
## 11428 Miliaria crystallina
## 11429 Miliaria profunda
## 11430 Miliaria, unspecified
## 11431 Anhidrosis
## 11432 Primary focal hyperhidrosis, axilla
## 11433 Primary focal hyperhidrosis, face
## 11434 Primary focal hyperhidrosis, palms
## 11435 Primary focal hyperhidrosis, soles
## 11436 Primary focal hyperhidrosis, unspecified
## 11437 Secondary focal hyperhidrosis
## 11438 Other eccrine sweat disorders
## 11439 Eccrine sweat disorder, unspecified
## 11440 Bromhidrosis
## 11441 Chromhidrosis
## 11442 Apocrine miliaria
## 11443 Other apocrine sweat disorders
## 11444 Apocrine sweat disorder, unspecified
## 11445 Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating a dermatologic procedure
## 11446 Intraoperative hemorrhage and hematoma of skin and subcutaneous tissue complicating other procedure
## 11447 Accidental puncture and laceration of skin and subcutaneous tissue during a dermatologic procedure
## 11448 Accidental puncture and laceration of skin and subcutaneous tissue during other procedure
## 11449 Postprocedural hemorrhage of skin and subcutaneous tissue following a dermatologic procedure
## 11450 Postprocedural hemorrhage of skin and subcutaneous tissue following other procedure
## 11451 Postprocedural hematoma of skin and subcutaneous tissue following a dermatologic procedure
## 11452 Postprocedural hematoma of skin and subcutaneous tissue following other procedure
## 11453 Postprocedural seroma of skin and subcutaneous tissue following a dermatologic procedure
## 11454 Postprocedural seroma of skin and subcutaneous tissue following other procedure
## 11455 Other intraoperative complications of skin and subcutaneous tissue
## 11456 Other postprocedural complications of skin and subcutaneous tissue
## 11457 Vitiligo
## 11458 Postinflammatory hyperpigmentation
## 11459 Chloasma
## 11460 Freckles
## 11461 Cafe au lait spots
## 11462 Other melanin hyperpigmentation
## 11463 Leukoderma, not elsewhere classified
## 11464 Other disorders of diminished melanin formation
## 11465 Pigmented purpuric dermatosis
## 11466 Other specified disorders of pigmentation
## 11467 Disorder of pigmentation, unspecified
## 11468 Inflamed seborrheic keratosis
## 11469 Other seborrheic keratosis
## 11470 Acanthosis nigricans
## 11471 Corns and callosities
## 11472 Acquired ichthyosis
## 11473 Acquired keratosis [keratoderma] palmaris et plantaris
## 11474 Keratosis punctata (palmaris et plantaris)
## 11475 Xerosis cutis
## 11476 Other specified epidermal thickening
## 11477 Epidermal thickening, unspecified
## 11478 Keratoderma in diseases classified elsewhere
## 11479 Keratosis follicularis et parafollicularis in cutem penetrans
## 11480 Reactive perforating collagenosis
## 11481 Elastosis perforans serpiginosa
## 11482 Other transepidermal elimination disorders
## 11483 Transepidermal elimination disorder, unspecified
## 11484 Pyoderma gangrenosum
## 11485 Pressure ulcer of unspecified elbow, unstageable
## 11486 Pressure ulcer of unspecified elbow, stage 1
## 11487 Pressure ulcer of unspecified elbow, stage 2
## 11488 Pressure ulcer of unspecified elbow, stage 3
## 11489 Pressure ulcer of unspecified elbow, stage 4
## 11490 Pressure-induced deep tissue damage of unspecified elbow
## 11491 Pressure ulcer of unspecified elbow, unspecified stage
## 11492 Pressure ulcer of right elbow, unstageable
## 11493 Pressure ulcer of right elbow, stage 1
## 11494 Pressure ulcer of right elbow, stage 2
## 11495 Pressure ulcer of right elbow, stage 3
## 11496 Pressure ulcer of right elbow, stage 4
## 11497 Pressure-induced deep tissue damage of right elbow
## 11498 Pressure ulcer of right elbow, unspecified stage
## 11499 Pressure ulcer of left elbow, unstageable
## 11500 Pressure ulcer of left elbow, stage 1
## 11501 Pressure ulcer of left elbow, stage 2
## 11502 Pressure ulcer of left elbow, stage 3
## 11503 Pressure ulcer of left elbow, stage 4
## 11504 Pressure-induced deep tissue damage of left elbow
## 11505 Pressure ulcer of left elbow, unspecified stage
## 11506 Pressure ulcer of unspecified part of back, unstageable
## 11507 Pressure ulcer of unspecified part of back, stage 1
## 11508 Pressure ulcer of unspecified part of back, stage 2
## 11509 Pressure ulcer of unspecified part of back, stage 3
## 11510 Pressure ulcer of unspecified part of back, stage 4
## 11511 Pressure-induced deep tissue damage of unspecified part of back
## 11512 Pressure ulcer of unspecified part of back, unspecified stage
## 11513 Pressure ulcer of right upper back, unstageable
## 11514 Pressure ulcer of right upper back, stage 1
## 11515 Pressure ulcer of right upper back, stage 2
## 11516 Pressure ulcer of right upper back, stage 3
## 11517 Pressure ulcer of right upper back, stage 4
## 11518 Pressure-induced deep tissue damage of right upper back
## 11519 Pressure ulcer of right upper back, unspecified stage
## 11520 Pressure ulcer of left upper back, unstageable
## 11521 Pressure ulcer of left upper back, stage 1
## 11522 Pressure ulcer of left upper back, stage 2
## 11523 Pressure ulcer of left upper back, stage 3
## 11524 Pressure ulcer of left upper back, stage 4
## 11525 Pressure-induced deep tissue damage of left upper back
## 11526 Pressure ulcer of left upper back, unspecified stage
## 11527 Pressure ulcer of right lower back, unstageable
## 11528 Pressure ulcer of right lower back, stage 1
## 11529 Pressure ulcer of right lower back, stage 2
## 11530 Pressure ulcer of right lower back, stage 3
## 11531 Pressure ulcer of right lower back, stage 4
## 11532 Pressure-induced deep tissue damage of right lower back
## 11533 Pressure ulcer of right lower back, unspecified stage
## 11534 Pressure ulcer of left lower back, unstageable
## 11535 Pressure ulcer of left lower back, stage 1
## 11536 Pressure ulcer of left lower back, stage 2
## 11537 Pressure ulcer of left lower back, stage 3
## 11538 Pressure ulcer of left lower back, stage 4
## 11539 Pressure-induced deep tissue damage of left lower back
## 11540 Pressure ulcer of left lower back, unspecified stage
## 11541 Pressure ulcer of sacral region, unstageable
## 11542 Pressure ulcer of sacral region, stage 1
## 11543 Pressure ulcer of sacral region, stage 2
## 11544 Pressure ulcer of sacral region, stage 3
## 11545 Pressure ulcer of sacral region, stage 4
## 11546 Pressure-induced deep tissue damage of sacral region
## 11547 Pressure ulcer of sacral region, unspecified stage
## 11548 Pressure ulcer of unspecified hip, unstageable
## 11549 Pressure ulcer of unspecified hip, stage 1
## 11550 Pressure ulcer of unspecified hip, stage 2
## 11551 Pressure ulcer of unspecified hip, stage 3
## 11552 Pressure ulcer of unspecified hip, stage 4
## 11553 Pressure-induced deep tissue damage of unspecified hip
## 11554 Pressure ulcer of unspecified hip, unspecified stage
## 11555 Pressure ulcer of right hip, unstageable
## 11556 Pressure ulcer of right hip, stage 1
## 11557 Pressure ulcer of right hip, stage 2
## 11558 Pressure ulcer of right hip, stage 3
## 11559 Pressure ulcer of right hip, stage 4
## 11560 Pressure-induced deep tissue damage of right hip
## 11561 Pressure ulcer of right hip, unspecified stage
## 11562 Pressure ulcer of left hip, unstageable
## 11563 Pressure ulcer of left hip, stage 1
## 11564 Pressure ulcer of left hip, stage 2
## 11565 Pressure ulcer of left hip, stage 3
## 11566 Pressure ulcer of left hip, stage 4
## 11567 Pressure-induced deep tissue damage of left hip
## 11568 Pressure ulcer of left hip, unspecified stage
## 11569 Pressure ulcer of unspecified buttock, unstageable
## 11570 Pressure ulcer of unspecified buttock, stage 1
## 11571 Pressure ulcer of unspecified buttock, stage 2
## 11572 Pressure ulcer of unspecified buttock, stage 3
## 11573 Pressure ulcer of unspecified buttock, stage 4
## 11574 Pressure-induced deep tissue damage of unspecified buttock
## 11575 Pressure ulcer of unspecified buttock, unspecified stage
## 11576 Pressure ulcer of right buttock, unstageable
## 11577 Pressure ulcer of right buttock, stage 1
## 11578 Pressure ulcer of right buttock, stage 2
## 11579 Pressure ulcer of right buttock, stage 3
## 11580 Pressure ulcer of right buttock, stage 4
## 11581 Pressure-induced deep tissue damage of right buttock
## 11582 Pressure ulcer of right buttock, unspecified stage
## 11583 Pressure ulcer of left buttock, unstageable
## 11584 Pressure ulcer of left buttock, stage 1
## 11585 Pressure ulcer of left buttock, stage 2
## 11586 Pressure ulcer of left buttock, stage 3
## 11587 Pressure ulcer of left buttock, stage 4
## 11588 Pressure-induced deep tissue damage of left buttock
## 11589 Pressure ulcer of left buttock, unspecified stage
## 11590 Pressure ulcer of contiguous site of back, buttock and hip, unspecified stage
## 11591 Pressure ulcer of contiguous site of back, buttock and hip, stage 1
## 11592 Pressure ulcer of contiguous site of back, buttock and hip, stage 2
## 11593 Pressure ulcer of contiguous site of back, buttock and hip, stage 3
## 11594 Pressure ulcer of contiguous site of back, buttock and hip, stage 4
## 11595 Pressure ulcer of contiguous site of back, buttock and hip, unstageable
## 11596 Pressure-induced deep tissue damage of contiguous site of back, buttock and hip
## 11597 Pressure ulcer of unspecified ankle, unstageable
## 11598 Pressure ulcer of unspecified ankle, stage 1
## 11599 Pressure ulcer of unspecified ankle, stage 2
## 11600 Pressure ulcer of unspecified ankle, stage 3
## 11601 Pressure ulcer of unspecified ankle, stage 4
## 11602 Pressure-induced deep tissue damage of unspecified ankle
## 11603 Pressure ulcer of unspecified ankle, unspecified stage
## 11604 Pressure ulcer of right ankle, unstageable
## 11605 Pressure ulcer of right ankle, stage 1
## 11606 Pressure ulcer of right ankle, stage 2
## 11607 Pressure ulcer of right ankle, stage 3
## 11608 Pressure ulcer of right ankle, stage 4
## 11609 Pressure-induced deep tissue damage of right ankle
## 11610 Pressure ulcer of right ankle, unspecified stage
## 11611 Pressure ulcer of left ankle, unstageable
## 11612 Pressure ulcer of left ankle, stage 1
## 11613 Pressure ulcer of left ankle, stage 2
## 11614 Pressure ulcer of left ankle, stage 3
## 11615 Pressure ulcer of left ankle, stage 4
## 11616 Pressure-induced deep tissue damage of left ankle
## 11617 Pressure ulcer of left ankle, unspecified stage
## 11618 Pressure ulcer of unspecified heel, unstageable
## 11619 Pressure ulcer of unspecified heel, stage 1
## 11620 Pressure ulcer of unspecified heel, stage 2
## 11621 Pressure ulcer of unspecified heel, stage 3
## 11622 Pressure ulcer of unspecified heel, stage 4
## 11623 Pressure-induced deep tissue damage of unspecified heel
## 11624 Pressure ulcer of unspecified heel, unspecified stage
## 11625 Pressure ulcer of right heel, unstageable
## 11626 Pressure ulcer of right heel, stage 1
## 11627 Pressure ulcer of right heel, stage 2
## 11628 Pressure ulcer of right heel, stage 3
## 11629 Pressure ulcer of right heel, stage 4
## 11630 Pressure-induced deep tissue damage of right heel
## 11631 Pressure ulcer of right heel, unspecified stage
## 11632 Pressure ulcer of left heel, unstageable
## 11633 Pressure ulcer of left heel, stage 1
## 11634 Pressure ulcer of left heel, stage 2
## 11635 Pressure ulcer of left heel, stage 3
## 11636 Pressure ulcer of left heel, stage 4
## 11637 Pressure-induced deep tissue damage of left heel
## 11638 Pressure ulcer of left heel, unspecified stage
## 11639 Pressure ulcer of head, unstageable
## 11640 Pressure ulcer of head, stage 1
## 11641 Pressure ulcer of head, stage 2
## 11642 Pressure ulcer of head, stage 3
## 11643 Pressure ulcer of head, stage 4
## 11644 Pressure-induced deep tissue damage of head
## 11645 Pressure ulcer of head, unspecified stage
## 11646 Pressure ulcer of other site, unstageable
## 11647 Pressure ulcer of other site, stage 1
## 11648 Pressure ulcer of other site, stage 2
## 11649 Pressure ulcer of other site, stage 3
## 11650 Pressure ulcer of other site, stage 4
## 11651 Pressure-induced deep tissue damage of other site
## 11652 Pressure ulcer of other site, unspecified stage
## 11653 Pressure ulcer of unspecified site, unspecified stage
## 11654 Pressure ulcer of unspecified site, stage 1
## 11655 Pressure ulcer of unspecified site, stage 2
## 11656 Pressure ulcer of unspecified site, stage 3
## 11657 Pressure ulcer of unspecified site, stage 4
## 11658 Pressure ulcer of unspecified site, unstageable
## 11659 Pressure-induced deep tissue damage of unspecified site
## 11660 Lichen sclerosus et atrophicus
## 11661 Anetoderma of Schweninger-Buzzi
## 11662 Anetoderma of Jadassohn-Pellizzari
## 11663 Atrophoderma of Pasini and Pierini
## 11664 Acrodermatitis chronica atrophicans
## 11665 Scar conditions and fibrosis of skin
## 11666 Striae atrophicae
## 11667 Other atrophic disorders of skin
## 11668 Atrophic disorder of skin, unspecified
## 11669 Hypertrophic scar
## 11670 Other hypertrophic disorders of the skin
## 11671 Hypertrophic disorder of the skin, unspecified
## 11672 Granuloma annulare
## 11673 Necrobiosis lipoidica, not elsewhere classified
## 11674 Granuloma faciale [eosinophilic granuloma of skin]
## 11675 Foreign body granuloma of the skin and subcutaneous tissue
## 11676 Other granulomatous disorders of the skin and subcutaneous tissue
## 11677 Granulomatous disorder of the skin and subcutaneous tissue, unspecified
## 11678 Discoid lupus erythematosus
## 11679 Subacute cutaneous lupus erythematosus
## 11680 Other local lupus erythematosus
## 11681 Localized scleroderma [morphea]
## 11682 Linear scleroderma
## 11683 Calcinosis cutis
## 11684 Sclerodactyly
## 11685 Gottron's papules
## 11686 Poikiloderma vasculare atrophicans
## 11687 Ainhum
## 11688 Other specified localized connective tissue disorders
## 11689 Localized connective tissue disorder, unspecified
## 11690 Livedoid vasculitis
## 11691 Erythema elevatum diutinum
## 11692 Other vasculitis limited to the skin
## 11693 Vasculitis limited to the skin, unspecified
## 11694 Non-pressure chronic ulcer of unspecified thigh limited to breakdown of skin
## 11695 Non-pressure chronic ulcer of unspecified thigh with fat layer exposed
## 11696 Non-pressure chronic ulcer of unspecified thigh with necrosis of muscle
## 11697 Non-pressure chronic ulcer of unspecified thigh with necrosis of bone
## 11698 Non-pressure chronic ulcer of unspecified thigh with muscle involvement without evidence of necrosis
## 11699 Non-pressure chronic ulcer of unspecified thigh with bone involvement without evidence of necrosis
## 11700 Non-pressure chronic ulcer of unspecified thigh with other specified severity
## 11701 Non-pressure chronic ulcer of unspecified thigh with unspecified severity
## 11702 Non-pressure chronic ulcer of right thigh limited to breakdown of skin
## 11703 Non-pressure chronic ulcer of right thigh with fat layer exposed
## 11704 Non-pressure chronic ulcer of right thigh with necrosis of muscle
## 11705 Non-pressure chronic ulcer of right thigh with necrosis of bone
## 11706 Non-pressure chronic ulcer of right thigh with muscle involvement without evidence of necrosis
## 11707 Non-pressure chronic ulcer of right thigh with bone involvement without evidence of necrosis
## 11708 Non-pressure chronic ulcer of right thigh with other specified severity
## 11709 Non-pressure chronic ulcer of right thigh with unspecified severity
## 11710 Non-pressure chronic ulcer of left thigh limited to breakdown of skin
## 11711 Non-pressure chronic ulcer of left thigh with fat layer exposed
## 11712 Non-pressure chronic ulcer of left thigh with necrosis of muscle
## 11713 Non-pressure chronic ulcer of left thigh with necrosis of bone
## 11714 Non-pressure chronic ulcer of left thigh with muscle involvement without evidence of necrosis
## 11715 Non-pressure chronic ulcer of left thigh with bone involvement without evidence of necrosis
## 11716 Non-pressure chronic ulcer of left thigh with other specified severity
## 11717 Non-pressure chronic ulcer of left thigh with unspecified severity
## 11718 Non-pressure chronic ulcer of unspecified calf limited to breakdown of skin
## 11719 Non-pressure chronic ulcer of unspecified calf with fat layer exposed
## 11720 Non-pressure chronic ulcer of unspecified calf with necrosis of muscle
## 11721 Non-pressure chronic ulcer of unspecified calf with necrosis of bone
## 11722 Non-pressure chronic ulcer of unspecified calf with muscle involvement without evidence of necrosis
## 11723 Non-pressure chronic ulcer of unspecified calf with bone involvement without evidence of necrosis
## 11724 Non-pressure chronic ulcer of unspecified calf with other specified severity
## 11725 Non-pressure chronic ulcer of unspecified calf with unspecified severity
## 11726 Non-pressure chronic ulcer of right calf limited to breakdown of skin
## 11727 Non-pressure chronic ulcer of right calf with fat layer exposed
## 11728 Non-pressure chronic ulcer of right calf with necrosis of muscle
## 11729 Non-pressure chronic ulcer of right calf with necrosis of bone
## 11730 Non-pressure chronic ulcer of right calf with muscle involvement without evidence of necrosis
## 11731 Non-pressure chronic ulcer of right calf with bone involvement without evidence of necrosis
## 11732 Non-pressure chronic ulcer of right calf with other specified severity
## 11733 Non-pressure chronic ulcer of right calf with unspecified severity
## 11734 Non-pressure chronic ulcer of left calf limited to breakdown of skin
## 11735 Non-pressure chronic ulcer of left calf with fat layer exposed
## 11736 Non-pressure chronic ulcer of left calf with necrosis of muscle
## 11737 Non-pressure chronic ulcer of left calf with necrosis of bone
## 11738 Non-pressure chronic ulcer of left calf with muscle involvement without evidence of necrosis
## 11739 Non-pressure chronic ulcer of left calf with bone involvement without evidence of necrosis
## 11740 Non-pressure chronic ulcer of left calf with other specified severity
## 11741 Non-pressure chronic ulcer of left calf with unspecified severity
## 11742 Non-pressure chronic ulcer of unspecified ankle limited to breakdown of skin
## 11743 Non-pressure chronic ulcer of unspecified ankle with fat layer exposed
## 11744 Non-pressure chronic ulcer of unspecified ankle with necrosis of muscle
## 11745 Non-pressure chronic ulcer of unspecified ankle with necrosis of bone
## 11746 Non-pressure chronic ulcer of unspecified ankle with muscle involvement without evidence of necrosis
## 11747 Non-pressure chronic ulcer of unspecified ankle with bone involvement without evidence of necrosis
## 11748 Non-pressure chronic ulcer of unspecified ankle with other specified severity
## 11749 Non-pressure chronic ulcer of unspecified ankle with unspecified severity
## 11750 Non-pressure chronic ulcer of right ankle limited to breakdown of skin
## 11751 Non-pressure chronic ulcer of right ankle with fat layer exposed
## 11752 Non-pressure chronic ulcer of right ankle with necrosis of muscle
## 11753 Non-pressure chronic ulcer of right ankle with necrosis of bone
## 11754 Non-pressure chronic ulcer of right ankle with muscle involvement without evidence of necrosis
## 11755 Non-pressure chronic ulcer of right ankle with bone involvement without evidence of necrosis
## 11756 Non-pressure chronic ulcer of right ankle with other specified severity
## 11757 Non-pressure chronic ulcer of right ankle with unspecified severity
## 11758 Non-pressure chronic ulcer of left ankle limited to breakdown of skin
## 11759 Non-pressure chronic ulcer of left ankle with fat layer exposed
## 11760 Non-pressure chronic ulcer of left ankle with necrosis of muscle
## 11761 Non-pressure chronic ulcer of left ankle with necrosis of bone
## 11762 Non-pressure chronic ulcer of left ankle with muscle involvement without evidence of necrosis
## 11763 Non-pressure chronic ulcer of left ankle with bone involvement without evidence of necrosis
## 11764 Non-pressure chronic ulcer of left ankle with other specified severity
## 11765 Non-pressure chronic ulcer of left ankle with unspecified severity
## 11766 Non-pressure chronic ulcer of unspecified heel and midfoot limited to breakdown of skin
## 11767 Non-pressure chronic ulcer of unspecified heel and midfoot with fat layer exposed
## 11768 Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of muscle
## 11769 Non-pressure chronic ulcer of unspecified heel and midfoot with necrosis of bone
## 11770 Non-pressure chronic ulcer of unspecified heel and midfoot with muscle involvement without evidence of necrosis
## 11771 Non-pressure chronic ulcer of unspecified heel and midfoot with bone involvement without evidence of necrosis
## 11772 Non-pressure chronic ulcer of unspecified heel and midfoot with other specified severity
## 11773 Non-pressure chronic ulcer of unspecified heel and midfoot with unspecified severity
## 11774 Non-pressure chronic ulcer of right heel and midfoot limited to breakdown of skin
## 11775 Non-pressure chronic ulcer of right heel and midfoot with fat layer exposed
## 11776 Non-pressure chronic ulcer of right heel and midfoot with necrosis of muscle
## 11777 Non-pressure chronic ulcer of right heel and midfoot with necrosis of bone
## 11778 Non-pressure chronic ulcer of right heel and midfoot with muscle involvement without evidence of necrosis
## 11779 Non-pressure chronic ulcer of right heel and midfoot with bone involvement without evidence of necrosis
## 11780 Non-pressure chronic ulcer of right heel and midfoot with other specified severity
## 11781 Non-pressure chronic ulcer of right heel and midfoot with unspecified severity
## 11782 Non-pressure chronic ulcer of left heel and midfoot limited to breakdown of skin
## 11783 Non-pressure chronic ulcer of left heel and midfoot with fat layer exposed
## 11784 Non-pressure chronic ulcer of left heel and midfoot with necrosis of muscle
## 11785 Non-pressure chronic ulcer of left heel and midfoot with necrosis of bone
## 11786 Non-pressure chronic ulcer of left heel and midfoot with muscle involvement without evidence of necrosis
## 11787 Non-pressure chronic ulcer of left heel and midfoot with bone involvement without evidence of necrosis
## 11788 Non-pressure chronic ulcer of left heel and midfoot with other specified severity
## 11789 Non-pressure chronic ulcer of left heel and midfoot with unspecified severity
## 11790 Non-pressure chronic ulcer of other part of unspecified foot limited to breakdown of skin
## 11791 Non-pressure chronic ulcer of other part of unspecified foot with fat layer exposed
## 11792 Non-pressure chronic ulcer of other part of unspecified foot with necrosis of muscle
## 11793 Non-pressure chronic ulcer of other part of unspecified foot with necrosis of bone
## 11794 Non-pressure chronic ulcer of other part of unspecified foot with muscle involvement without evidence of necrosis
## 11795 Non-pressure chronic ulcer of other part of unspecified foot with bone involvement without evidence of necrosis
## 11796 Non-pressure chronic ulcer of other part of unspecified foot with other specified severity
## 11797 Non-pressure chronic ulcer of other part of unspecified foot with unspecified severity
## 11798 Non-pressure chronic ulcer of other part of right foot limited to breakdown of skin
## 11799 Non-pressure chronic ulcer of other part of right foot with fat layer exposed
## 11800 Non-pressure chronic ulcer of other part of right foot with necrosis of muscle
## 11801 Non-pressure chronic ulcer of other part of right foot with necrosis of bone
## 11802 Non-pressure chronic ulcer of other part of right foot with muscle involvement without evidence of necrosis
## 11803 Non-pressure chronic ulcer of other part of right foot with bone involvement without evidence of necrosis
## 11804 Non-pressure chronic ulcer of other part of right foot with other specified severity
## 11805 Non-pressure chronic ulcer of other part of right foot with unspecified severity
## 11806 Non-pressure chronic ulcer of other part of left foot limited to breakdown of skin
## 11807 Non-pressure chronic ulcer of other part of left foot with fat layer exposed
## 11808 Non-pressure chronic ulcer of other part of left foot with necrosis of muscle
## 11809 Non-pressure chronic ulcer of other part of left foot with necrosis of bone
## 11810 Non-pressure chronic ulcer of other part of left foot with muscle involvement without evidence of necrosis
## 11811 Non-pressure chronic ulcer of other part of left foot with bone involvement without evidence of necrosis
## 11812 Non-pressure chronic ulcer of other part of left foot with other specified severity
## 11813 Non-pressure chronic ulcer of other part of left foot with unspecified severity
## 11814 Non-pressure chronic ulcer of other part of unspecified lower leg limited to breakdown of skin
## 11815 Non-pressure chronic ulcer of other part of unspecified lower leg with fat layer exposed
## 11816 Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of muscle
## 11817 Non-pressure chronic ulcer of other part of unspecified lower leg with necrosis of bone
## 11818 Non-pressure chronic ulcer of other part of unspecified lower leg with muscle involvement without evidence of necrosis
## 11819 Non-pressure chronic ulcer of other part of unspecified lower leg with bone involvement without evidence of necrosis
## 11820 Non-pressure chronic ulcer of other part of unspecified lower leg with other specified severity
## 11821 Non-pressure chronic ulcer of other part of unspecified lower leg with unspecified severity
## 11822 Non-pressure chronic ulcer of other part of right lower leg limited to breakdown of skin
## 11823 Non-pressure chronic ulcer of other part of right lower leg with fat layer exposed
## 11824 Non-pressure chronic ulcer of other part of right lower leg with necrosis of muscle
## 11825 Non-pressure chronic ulcer of other part of right lower leg with necrosis of bone
## 11826 Non-pressure chronic ulcer of other part of right lower leg with muscle involvement without evidence of necrosis
## 11827 Non-pressure chronic ulcer of other part of right lower leg with bone involvement without evidence of necrosis
## 11828 Non-pressure chronic ulcer of other part of right lower leg with other specified severity
## 11829 Non-pressure chronic ulcer of other part of right lower leg with unspecified severity
## 11830 Non-pressure chronic ulcer of other part of left lower leg limited to breakdown of skin
## 11831 Non-pressure chronic ulcer of other part of left lower leg with fat layer exposed
## 11832 Non-pressure chronic ulcer of other part of left lower leg with necrosis of muscle
## 11833 Non-pressure chronic ulcer of other part of left lower leg with necrosis of bone
## 11834 Non-pressure chronic ulcer of other part of left lower leg with muscle involvement without evidence of necrosis
## 11835 Non-pressure chronic ulcer of other part of left lower leg with bone involvement without evidence of necrosis
## 11836 Non-pressure chronic ulcer of other part of left lower leg with other specified severity
## 11837 Non-pressure chronic ulcer of other part of left lower leg with unspecified severity
## 11838 Non-pressure chronic ulcer of unspecified part of unspecified lower leg limited to breakdown of skin
## 11839 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with fat layer exposed
## 11840 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of muscle
## 11841 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with necrosis of bone
## 11842 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with muscle involvement without evidence of necrosis
## 11843 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with bone involvement without evidence of necrosis
## 11844 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with other specified severity
## 11845 Non-pressure chronic ulcer of unspecified part of unspecified lower leg with unspecified severity
## 11846 Non-pressure chronic ulcer of unspecified part of right lower leg limited to breakdown of skin
## 11847 Non-pressure chronic ulcer of unspecified part of right lower leg with fat layer exposed
## 11848 Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of muscle
## 11849 Non-pressure chronic ulcer of unspecified part of right lower leg with necrosis of bone
## 11850 Non-pressure chronic ulcer of unspecified part of right lower leg with muscle involvement without evidence of necrosis
## 11851 Non-pressure chronic ulcer of unspecified part of right lower leg with bone involvement without evidence of necrosis
## 11852 Non-pressure chronic ulcer of unspecified part of right lower leg with other specified severity
## 11853 Non-pressure chronic ulcer of unspecified part of right lower leg with unspecified severity
## 11854 Non-pressure chronic ulcer of unspecified part of left lower leg limited to breakdown of skin
## 11855 Non-pressure chronic ulcer of unspecified part of left lower leg with fat layer exposed
## 11856 Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of muscle
## 11857 Non-pressure chronic ulcer of unspecified part of left lower leg with necrosis of bone
## 11858 Non-pressure chronic ulcer of unspecified part of left lower leg with muscle involvement without evidence of necrosis
## 11859 Non-pressure chronic ulcer of unspecified part of left lower leg with bone involvement without evidence of necrosis
## 11860 Non-pressure chronic ulcer of unspecified part of left lower leg with other specified severity
## 11861 Non-pressure chronic ulcer of unspecified part of left lower leg with unspecified severity
## 11862 Pyogenic granuloma
## 11863 Factitial dermatitis
## 11864 Febrile neutrophilic dermatosis [Sweet]
## 11865 Eosinophilic cellulitis [Wells]
## 11866 Non-pressure chronic ulcer of buttock limited to breakdown of skin
## 11867 Non-pressure chronic ulcer of buttock with fat layer exposed
## 11868 Non-pressure chronic ulcer of buttock with necrosis of muscle
## 11869 Non-pressure chronic ulcer of buttock with necrosis of bone
## 11870 Non-pressure chronic ulcer of buttock with muscle involvement without evidence of necrosis
## 11871 Non-pressure chronic ulcer of buttock with bone involvement without evidence of necrosis
## 11872 Non-pressure chronic ulcer of buttock with other specified severity
## 11873 Non-pressure chronic ulcer of buttock with unspecified severity
## 11874 Non-pressure chronic ulcer of back limited to breakdown of skin
## 11875 Non-pressure chronic ulcer of back with fat layer exposed
## 11876 Non-pressure chronic ulcer of back with necrosis of muscle
## 11877 Non-pressure chronic ulcer of back with necrosis of bone
## 11878 Non-pressure chronic ulcer of back with muscle involvement without evidence of necrosis
## 11879 Non-pressure chronic ulcer of back with bone involvement without evidence of necrosis
## 11880 Non-pressure chronic ulcer of back with other specified severity
## 11881 Non-pressure chronic ulcer of back with unspecified severity
## 11882 Non-pressure chronic ulcer of skin of other sites limited to breakdown of skin
## 11883 Non-pressure chronic ulcer of skin of other sites with fat layer exposed
## 11884 Non-pressure chronic ulcer of skin of other sites with necrosis of muscle
## 11885 Non-pressure chronic ulcer of skin of other sites with necrosis of bone
## 11886 Non-pressure chronic ulcer of skin of other sites with muscle involvement without evidence of necrosis
## 11887 Non-pressure chronic ulcer of skin of other sites with bone involvement without evidence of necrosis
## 11888 Non-pressure chronic ulcer of skin of other sites with other specified severity
## 11889 Non-pressure chronic ulcer of skin of other sites with unspecified severity
## 11890 Mucinosis of the skin
## 11891 Other infiltrative disorders of the skin and subcutaneous tissue
## 11892 Excessive and redundant skin and subcutaneous tissue
## 11893 Other specified disorders of the skin and subcutaneous tissue
## 11894 Disorder of the skin and subcutaneous tissue, unspecified
## 11895 Other disorders of skin and subcutaneous tissue in diseases classified elsewhere
## 11896 Staphylococcal arthritis, unspecified joint
## 11897 Staphylococcal arthritis, right shoulder
## 11898 Staphylococcal arthritis, left shoulder
## 11899 Staphylococcal arthritis, unspecified shoulder
## 11900 Staphylococcal arthritis, right elbow
## 11901 Staphylococcal arthritis, left elbow
## 11902 Staphylococcal arthritis, unspecified elbow
## 11903 Staphylococcal arthritis, right wrist
## 11904 Staphylococcal arthritis, left wrist
## 11905 Staphylococcal arthritis, unspecified wrist
## 11906 Staphylococcal arthritis, right hand
## 11907 Staphylococcal arthritis, left hand
## 11908 Staphylococcal arthritis, unspecified hand
## 11909 Staphylococcal arthritis, right hip
## 11910 Staphylococcal arthritis, left hip
## 11911 Staphylococcal arthritis, unspecified hip
## 11912 Staphylococcal arthritis, right knee
## 11913 Staphylococcal arthritis, left knee
## 11914 Staphylococcal arthritis, unspecified knee
## 11915 Staphylococcal arthritis, right ankle and foot
## 11916 Staphylococcal arthritis, left ankle and foot
## 11917 Staphylococcal arthritis, unspecified ankle and foot
## 11918 Staphylococcal arthritis, vertebrae
## 11919 Staphylococcal polyarthritis
## 11920 Pneumococcal arthritis, unspecified joint
## 11921 Pneumococcal arthritis, right shoulder
## 11922 Pneumococcal arthritis, left shoulder
## 11923 Pneumococcal arthritis, unspecified shoulder
## 11924 Pneumococcal arthritis, right elbow
## 11925 Pneumococcal arthritis, left elbow
## 11926 Pneumococcal arthritis, unspecified elbow
## 11927 Pneumococcal arthritis, right wrist
## 11928 Pneumococcal arthritis, left wrist
## 11929 Pneumococcal arthritis, unspecified wrist
## 11930 Pneumococcal arthritis, right hand
## 11931 Pneumococcal arthritis, left hand
## 11932 Pneumococcal arthritis, unspecified hand
## 11933 Pneumococcal arthritis, right hip
## 11934 Pneumococcal arthritis, left hip
## 11935 Pneumococcal arthritis, unspecified hip
## 11936 Pneumococcal arthritis, right knee
## 11937 Pneumococcal arthritis, left knee
## 11938 Pneumococcal arthritis, unspecified knee
## 11939 Pneumococcal arthritis, right ankle and foot
## 11940 Pneumococcal arthritis, left ankle and foot
## 11941 Pneumococcal arthritis, unspecified ankle and foot
## 11942 Pneumococcal arthritis, vertebrae
## 11943 Pneumococcal polyarthritis
## 11944 Other streptococcal arthritis, unspecified joint
## 11945 Other streptococcal arthritis, right shoulder
## 11946 Other streptococcal arthritis, left shoulder
## 11947 Other streptococcal arthritis, unspecified shoulder
## 11948 Other streptococcal arthritis, right elbow
## 11949 Other streptococcal arthritis, left elbow
## 11950 Other streptococcal arthritis, unspecified elbow
## 11951 Other streptococcal arthritis, right wrist
## 11952 Other streptococcal arthritis, left wrist
## 11953 Other streptococcal arthritis, unspecified wrist
## 11954 Other streptococcal arthritis, right hand
## 11955 Other streptococcal arthritis, left hand
## 11956 Other streptococcal arthritis, unspecified hand
## 11957 Other streptococcal arthritis, right hip
## 11958 Other streptococcal arthritis, left hip
## 11959 Other streptococcal arthritis, unspecified hip
## 11960 Other streptococcal arthritis, right knee
## 11961 Other streptococcal arthritis, left knee
## 11962 Other streptococcal arthritis, unspecified knee
## 11963 Other streptococcal arthritis, right ankle and foot
## 11964 Other streptococcal arthritis, left ankle and foot
## 11965 Other streptococcal arthritis, unspecified ankle and foot
## 11966 Other streptococcal arthritis, vertebrae
## 11967 Other streptococcal polyarthritis
## 11968 Arthritis due to other bacteria, unspecified joint
## 11969 Arthritis due to other bacteria, right shoulder
## 11970 Arthritis due to other bacteria, left shoulder
## 11971 Arthritis due to other bacteria, unspecified shoulder
## 11972 Arthritis due to other bacteria, right elbow
## 11973 Arthritis due to other bacteria, left elbow
## 11974 Arthritis due to other bacteria, unspecified elbow
## 11975 Arthritis due to other bacteria, right wrist
## 11976 Arthritis due to other bacteria, left wrist
## 11977 Arthritis due to other bacteria, unspecified wrist
## 11978 Arthritis due to other bacteria, right hand
## 11979 Arthritis due to other bacteria, left hand
## 11980 Arthritis due to other bacteria, unspecified hand
## 11981 Arthritis due to other bacteria, right hip
## 11982 Arthritis due to other bacteria, left hip
## 11983 Arthritis due to other bacteria, unspecified hip
## 11984 Arthritis due to other bacteria, right knee
## 11985 Arthritis due to other bacteria, left knee
## 11986 Arthritis due to other bacteria, unspecified knee
## 11987 Arthritis due to other bacteria, right ankle and foot
## 11988 Arthritis due to other bacteria, left ankle and foot
## 11989 Arthritis due to other bacteria, unspecified ankle and foot
## 11990 Arthritis due to other bacteria, vertebrae
## 11991 Polyarthritis due to other bacteria
## 11992 Pyogenic arthritis, unspecified
## 11993 Direct infection of unspecified joint in infectious and parasitic diseases classified elsewhere
## 11994 Direct infection of right shoulder in infectious and parasitic diseases classified elsewhere
## 11995 Direct infection of left shoulder in infectious and parasitic diseases classified elsewhere
## 11996 Direct infection of unspecified shoulder in infectious and parasitic diseases classified elsewhere
## 11997 Direct infection of right elbow in infectious and parasitic diseases classified elsewhere
## 11998 Direct infection of left elbow in infectious and parasitic diseases classified elsewhere
## 11999 Direct infection of unspecified elbow in infectious and parasitic diseases classified elsewhere
## 12000 Direct infection of right wrist in infectious and parasitic diseases classified elsewhere
## 12001 Direct infection of left wrist in infectious and parasitic diseases classified elsewhere
## 12002 Direct infection of unspecified wrist in infectious and parasitic diseases classified elsewhere
## 12003 Direct infection of right hand in infectious and parasitic diseases classified elsewhere
## 12004 Direct infection of left hand in infectious and parasitic diseases classified elsewhere
## 12005 Direct infection of unspecified hand in infectious and parasitic diseases classified elsewhere
## 12006 Direct infection of right hip in infectious and parasitic diseases classified elsewhere
## 12007 Direct infection of left hip in infectious and parasitic diseases classified elsewhere
## 12008 Direct infection of unspecified hip in infectious and parasitic diseases classified elsewhere
## 12009 Direct infection of right knee in infectious and parasitic diseases classified elsewhere
## 12010 Direct infection of left knee in infectious and parasitic diseases classified elsewhere
## 12011 Direct infection of unspecified knee in infectious and parasitic diseases classified elsewhere
## 12012 Direct infection of right ankle and foot in infectious and parasitic diseases classified elsewhere
## 12013 Direct infection of left ankle and foot in infectious and parasitic diseases classified elsewhere
## 12014 Direct infection of unspecified ankle and foot in infectious and parasitic diseases classified elsewhere
## 12015 Direct infection of vertebrae in infectious and parasitic diseases classified elsewhere
## 12016 Direct infection of multiple joints in infectious and parasitic diseases classified elsewhere
## 12017 Arthropathy following intestinal bypass, unspecified site
## 12018 Arthropathy following intestinal bypass, right shoulder
## 12019 Arthropathy following intestinal bypass, left shoulder
## 12020 Arthropathy following intestinal bypass, unspecified shoulder
## 12021 Arthropathy following intestinal bypass, right elbow
## 12022 Arthropathy following intestinal bypass, left elbow
## 12023 Arthropathy following intestinal bypass, unspecified elbow
## 12024 Arthropathy following intestinal bypass, right wrist
## 12025 Arthropathy following intestinal bypass, left wrist
## 12026 Arthropathy following intestinal bypass, unspecified wrist
## 12027 Arthropathy following intestinal bypass, right hand
## 12028 Arthropathy following intestinal bypass, left hand
## 12029 Arthropathy following intestinal bypass, unspecified hand
## 12030 Arthropathy following intestinal bypass, right hip
## 12031 Arthropathy following intestinal bypass, left hip
## 12032 Arthropathy following intestinal bypass, unspecified hip
## 12033 Arthropathy following intestinal bypass, right knee
## 12034 Arthropathy following intestinal bypass, left knee
## 12035 Arthropathy following intestinal bypass, unspecified knee
## 12036 Arthropathy following intestinal bypass, right ankle and foot
## 12037 Arthropathy following intestinal bypass, left ankle and foot
## 12038 Arthropathy following intestinal bypass, unspecified ankle and foot
## 12039 Arthropathy following intestinal bypass, vertebrae
## 12040 Arthropathy following intestinal bypass, multiple sites
## 12041 Postdysenteric arthropathy, unspecified site
## 12042 Postdysenteric arthropathy, right shoulder
## 12043 Postdysenteric arthropathy, left shoulder
## 12044 Postdysenteric arthropathy, unspecified shoulder
## 12045 Postdysenteric arthropathy, right elbow
## 12046 Postdysenteric arthropathy, left elbow
## 12047 Postdysenteric arthropathy, unspecified elbow
## 12048 Postdysenteric arthropathy, right wrist
## 12049 Postdysenteric arthropathy, left wrist
## 12050 Postdysenteric arthropathy, unspecified wrist
## 12051 Postdysenteric arthropathy, right hand
## 12052 Postdysenteric arthropathy, left hand
## 12053 Postdysenteric arthropathy, unspecified hand
## 12054 Postdysenteric arthropathy, right hip
## 12055 Postdysenteric arthropathy, left hip
## 12056 Postdysenteric arthropathy, unspecified hip
## 12057 Postdysenteric arthropathy, right knee
## 12058 Postdysenteric arthropathy, left knee
## 12059 Postdysenteric arthropathy, unspecified knee
## 12060 Postdysenteric arthropathy, right ankle and foot
## 12061 Postdysenteric arthropathy, left ankle and foot
## 12062 Postdysenteric arthropathy, unspecified ankle and foot
## 12063 Postdysenteric arthropathy, vertebrae
## 12064 Postdysenteric arthropathy, multiple sites
## 12065 Postimmunization arthropathy, unspecified site
## 12066 Postimmunization arthropathy, right shoulder
## 12067 Postimmunization arthropathy, left shoulder
## 12068 Postimmunization arthropathy, unspecified shoulder
## 12069 Postimmunization arthropathy, right elbow
## 12070 Postimmunization arthropathy, left elbow
## 12071 Postimmunization arthropathy, unspecified elbow
## 12072 Postimmunization arthropathy, right wrist
## 12073 Postimmunization arthropathy, left wrist
## 12074 Postimmunization arthropathy, unspecified wrist
## 12075 Postimmunization arthropathy, right hand
## 12076 Postimmunization arthropathy, left hand
## 12077 Postimmunization arthropathy, unspecified hand
## 12078 Postimmunization arthropathy, right hip
## 12079 Postimmunization arthropathy, left hip
## 12080 Postimmunization arthropathy, unspecified hip
## 12081 Postimmunization arthropathy, right knee
## 12082 Postimmunization arthropathy, left knee
## 12083 Postimmunization arthropathy, unspecified knee
## 12084 Postimmunization arthropathy, right ankle and foot
## 12085 Postimmunization arthropathy, left ankle and foot
## 12086 Postimmunization arthropathy, unspecified ankle and foot
## 12087 Postimmunization arthropathy, vertebrae
## 12088 Postimmunization arthropathy, multiple sites
## 12089 Reiter's disease, unspecified site
## 12090 Reiter's disease, right shoulder
## 12091 Reiter's disease, left shoulder
## 12092 Reiter's disease, unspecified shoulder
## 12093 Reiter's disease, right elbow
## 12094 Reiter's disease, left elbow
## 12095 Reiter's disease, unspecified elbow
## 12096 Reiter's disease, right wrist
## 12097 Reiter's disease, left wrist
## 12098 Reiter's disease, unspecified wrist
## 12099 Reiter's disease, right hand
## 12100 Reiter's disease, left hand
## 12101 Reiter's disease, unspecified hand
## 12102 Reiter's disease, right hip
## 12103 Reiter's disease, left hip
## 12104 Reiter's disease, unspecified hip
## 12105 Reiter's disease, right knee
## 12106 Reiter's disease, left knee
## 12107 Reiter's disease, unspecified knee
## 12108 Reiter's disease, right ankle and foot
## 12109 Reiter's disease, left ankle and foot
## 12110 Reiter's disease, unspecified ankle and foot
## 12111 Reiter's disease, vertebrae
## 12112 Reiter's disease, multiple sites
## 12113 Other reactive arthropathies, unspecified site
## 12114 Other reactive arthropathies, right shoulder
## 12115 Other reactive arthropathies, left shoulder
## 12116 Other reactive arthropathies, unspecified shoulder
## 12117 Other reactive arthropathies, right elbow
## 12118 Other reactive arthropathies, left elbow
## 12119 Other reactive arthropathies, unspecified elbow
## 12120 Other reactive arthropathies, right wrist
## 12121 Other reactive arthropathies, left wrist
## 12122 Other reactive arthropathies, unspecified wrist
## 12123 Other reactive arthropathies, right hand
## 12124 Other reactive arthropathies, left hand
## 12125 Other reactive arthropathies, unspecified hand
## 12126 Other reactive arthropathies, right hip
## 12127 Other reactive arthropathies, left hip
## 12128 Other reactive arthropathies, unspecified hip
## 12129 Other reactive arthropathies, right knee
## 12130 Other reactive arthropathies, left knee
## 12131 Other reactive arthropathies, unspecified knee
## 12132 Other reactive arthropathies, right ankle and foot
## 12133 Other reactive arthropathies, left ankle and foot
## 12134 Other reactive arthropathies, unspecified ankle and foot
## 12135 Other reactive arthropathies, vertebrae
## 12136 Other reactive arthropathies, multiple sites
## 12137 Reactive arthropathy, unspecified
## 12138 Periodic fever syndromes
## 12139 Cryopyrin-associated periodic syndromes
## 12140 Other autoinflammatory syndromes
## 12141 Autoinflammatory syndrome, unspecified
## 12142 Felty's syndrome, unspecified site
## 12143 Felty's syndrome, right shoulder
## 12144 Felty's syndrome, left shoulder
## 12145 Felty's syndrome, unspecified shoulder
## 12146 Felty's syndrome, right elbow
## 12147 Felty's syndrome, left elbow
## 12148 Felty's syndrome, unspecified elbow
## 12149 Felty's syndrome, right wrist
## 12150 Felty's syndrome, left wrist
## 12151 Felty's syndrome, unspecified wrist
## 12152 Felty's syndrome, right hand
## 12153 Felty's syndrome, left hand
## 12154 Felty's syndrome, unspecified hand
## 12155 Felty's syndrome, right hip
## 12156 Felty's syndrome, left hip
## 12157 Felty's syndrome, unspecified hip
## 12158 Felty's syndrome, right knee
## 12159 Felty's syndrome, left knee
## 12160 Felty's syndrome, unspecified knee
## 12161 Felty's syndrome, right ankle and foot
## 12162 Felty's syndrome, left ankle and foot
## 12163 Felty's syndrome, unspecified ankle and foot
## 12164 Felty's syndrome, multiple sites
## 12165 Rheumatoid lung disease with rheumatoid arthritis of unspecified site
## 12166 Rheumatoid lung disease with rheumatoid arthritis of right shoulder
## 12167 Rheumatoid lung disease with rheumatoid arthritis of left shoulder
## 12168 Rheumatoid lung disease with rheumatoid arthritis of unspecified shoulder
## 12169 Rheumatoid lung disease with rheumatoid arthritis of right elbow
## 12170 Rheumatoid lung disease with rheumatoid arthritis of left elbow
## 12171 Rheumatoid lung disease with rheumatoid arthritis of unspecified elbow
## 12172 Rheumatoid lung disease with rheumatoid arthritis of right wrist
## 12173 Rheumatoid lung disease with rheumatoid arthritis of left wrist
## 12174 Rheumatoid lung disease with rheumatoid arthritis of unspecified wrist
## 12175 Rheumatoid lung disease with rheumatoid arthritis of right hand
## 12176 Rheumatoid lung disease with rheumatoid arthritis of left hand
## 12177 Rheumatoid lung disease with rheumatoid arthritis of unspecified hand
## 12178 Rheumatoid lung disease with rheumatoid arthritis of right hip
## 12179 Rheumatoid lung disease with rheumatoid arthritis of left hip
## 12180 Rheumatoid lung disease with rheumatoid arthritis of unspecified hip
## 12181 Rheumatoid lung disease with rheumatoid arthritis of right knee
## 12182 Rheumatoid lung disease with rheumatoid arthritis of left knee
## 12183 Rheumatoid lung disease with rheumatoid arthritis of unspecified knee
## 12184 Rheumatoid lung disease with rheumatoid arthritis of right ankle and foot
## 12185 Rheumatoid lung disease with rheumatoid arthritis of left ankle and foot
## 12186 Rheumatoid lung disease with rheumatoid arthritis of unspecified ankle and foot
## 12187 Rheumatoid lung disease with rheumatoid arthritis of multiple sites
## 12188 Rheumatoid vasculitis with rheumatoid arthritis of unspecified site
## 12189 Rheumatoid vasculitis with rheumatoid arthritis of right shoulder
## 12190 Rheumatoid vasculitis with rheumatoid arthritis of left shoulder
## 12191 Rheumatoid vasculitis with rheumatoid arthritis of unspecified shoulder
## 12192 Rheumatoid vasculitis with rheumatoid arthritis of right elbow
## 12193 Rheumatoid vasculitis with rheumatoid arthritis of left elbow
## 12194 Rheumatoid vasculitis with rheumatoid arthritis of unspecified elbow
## 12195 Rheumatoid vasculitis with rheumatoid arthritis of right wrist
## 12196 Rheumatoid vasculitis with rheumatoid arthritis of left wrist
## 12197 Rheumatoid vasculitis with rheumatoid arthritis of unspecified wrist
## 12198 Rheumatoid vasculitis with rheumatoid arthritis of right hand
## 12199 Rheumatoid vasculitis with rheumatoid arthritis of left hand
## 12200 Rheumatoid vasculitis with rheumatoid arthritis of unspecified hand
## 12201 Rheumatoid vasculitis with rheumatoid arthritis of right hip
## 12202 Rheumatoid vasculitis with rheumatoid arthritis of left hip
## 12203 Rheumatoid vasculitis with rheumatoid arthritis of unspecified hip
## 12204 Rheumatoid vasculitis with rheumatoid arthritis of right knee
## 12205 Rheumatoid vasculitis with rheumatoid arthritis of left knee
## 12206 Rheumatoid vasculitis with rheumatoid arthritis of unspecified knee
## 12207 Rheumatoid vasculitis with rheumatoid arthritis of right ankle and foot
## 12208 Rheumatoid vasculitis with rheumatoid arthritis of left ankle and foot
## 12209 Rheumatoid vasculitis with rheumatoid arthritis of unspecified ankle and foot
## 12210 Rheumatoid vasculitis with rheumatoid arthritis of multiple sites
## 12211 Rheumatoid heart disease with rheumatoid arthritis of unspecified site
## 12212 Rheumatoid heart disease with rheumatoid arthritis of right shoulder
## 12213 Rheumatoid heart disease with rheumatoid arthritis of left shoulder
## 12214 Rheumatoid heart disease with rheumatoid arthritis of unspecified shoulder
## 12215 Rheumatoid heart disease with rheumatoid arthritis of right elbow
## 12216 Rheumatoid heart disease with rheumatoid arthritis of left elbow
## 12217 Rheumatoid heart disease with rheumatoid arthritis of unspecified elbow
## 12218 Rheumatoid heart disease with rheumatoid arthritis of right wrist
## 12219 Rheumatoid heart disease with rheumatoid arthritis of left wrist
## 12220 Rheumatoid heart disease with rheumatoid arthritis of unspecified wrist
## 12221 Rheumatoid heart disease with rheumatoid arthritis of right hand
## 12222 Rheumatoid heart disease with rheumatoid arthritis of left hand
## 12223 Rheumatoid heart disease with rheumatoid arthritis of unspecified hand
## 12224 Rheumatoid heart disease with rheumatoid arthritis of right hip
## 12225 Rheumatoid heart disease with rheumatoid arthritis of left hip
## 12226 Rheumatoid heart disease with rheumatoid arthritis of unspecified hip
## 12227 Rheumatoid heart disease with rheumatoid arthritis of right knee
## 12228 Rheumatoid heart disease with rheumatoid arthritis of left knee
## 12229 Rheumatoid heart disease with rheumatoid arthritis of unspecified knee
## 12230 Rheumatoid heart disease with rheumatoid arthritis of right ankle and foot
## 12231 Rheumatoid heart disease with rheumatoid arthritis of left ankle and foot
## 12232 Rheumatoid heart disease with rheumatoid arthritis of unspecified ankle and foot
## 12233 Rheumatoid heart disease with rheumatoid arthritis of multiple sites
## 12234 Rheumatoid myopathy with rheumatoid arthritis of unspecified site
## 12235 Rheumatoid myopathy with rheumatoid arthritis of right shoulder
## 12236 Rheumatoid myopathy with rheumatoid arthritis of left shoulder
## 12237 Rheumatoid myopathy with rheumatoid arthritis of unspecified shoulder
## 12238 Rheumatoid myopathy with rheumatoid arthritis of right elbow
## 12239 Rheumatoid myopathy with rheumatoid arthritis of left elbow
## 12240 Rheumatoid myopathy with rheumatoid arthritis of unspecified elbow
## 12241 Rheumatoid myopathy with rheumatoid arthritis of right wrist
## 12242 Rheumatoid myopathy with rheumatoid arthritis of left wrist
## 12243 Rheumatoid myopathy with rheumatoid arthritis of unspecified wrist
## 12244 Rheumatoid myopathy with rheumatoid arthritis of right hand
## 12245 Rheumatoid myopathy with rheumatoid arthritis of left hand
## 12246 Rheumatoid myopathy with rheumatoid arthritis of unspecified hand
## 12247 Rheumatoid myopathy with rheumatoid arthritis of right hip
## 12248 Rheumatoid myopathy with rheumatoid arthritis of left hip
## 12249 Rheumatoid myopathy with rheumatoid arthritis of unspecified hip
## 12250 Rheumatoid myopathy with rheumatoid arthritis of right knee
## 12251 Rheumatoid myopathy with rheumatoid arthritis of left knee
## 12252 Rheumatoid myopathy with rheumatoid arthritis of unspecified knee
## 12253 Rheumatoid myopathy with rheumatoid arthritis of right ankle and foot
## 12254 Rheumatoid myopathy with rheumatoid arthritis of left ankle and foot
## 12255 Rheumatoid myopathy with rheumatoid arthritis of unspecified ankle and foot
## 12256 Rheumatoid myopathy with rheumatoid arthritis of multiple sites
## 12257 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified site
## 12258 Rheumatoid polyneuropathy with rheumatoid arthritis of right shoulder
## 12259 Rheumatoid polyneuropathy with rheumatoid arthritis of left shoulder
## 12260 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified shoulder
## 12261 Rheumatoid polyneuropathy with rheumatoid arthritis of right elbow
## 12262 Rheumatoid polyneuropathy with rheumatoid arthritis of left elbow
## 12263 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified elbow
## 12264 Rheumatoid polyneuropathy with rheumatoid arthritis of right wrist
## 12265 Rheumatoid polyneuropathy with rheumatoid arthritis of left wrist
## 12266 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified wrist
## 12267 Rheumatoid polyneuropathy with rheumatoid arthritis of right hand
## 12268 Rheumatoid polyneuropathy with rheumatoid arthritis of left hand
## 12269 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hand
## 12270 Rheumatoid polyneuropathy with rheumatoid arthritis of right hip
## 12271 Rheumatoid polyneuropathy with rheumatoid arthritis of left hip
## 12272 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified hip
## 12273 Rheumatoid polyneuropathy with rheumatoid arthritis of right knee
## 12274 Rheumatoid polyneuropathy with rheumatoid arthritis of left knee
## 12275 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified knee
## 12276 Rheumatoid polyneuropathy with rheumatoid arthritis of right ankle and foot
## 12277 Rheumatoid polyneuropathy with rheumatoid arthritis of left ankle and foot
## 12278 Rheumatoid polyneuropathy with rheumatoid arthritis of unspecified ankle and foot
## 12279 Rheumatoid polyneuropathy with rheumatoid arthritis of multiple sites
## 12280 Rheumatoid arthritis of unspecified site with involvement of other organs and systems
## 12281 Rheumatoid arthritis of right shoulder with involvement of other organs and systems
## 12282 Rheumatoid arthritis of left shoulder with involvement of other organs and systems
## 12283 Rheumatoid arthritis of unspecified shoulder with involvement of other organs and systems
## 12284 Rheumatoid arthritis of right elbow with involvement of other organs and systems
## 12285 Rheumatoid arthritis of left elbow with involvement of other organs and systems
## 12286 Rheumatoid arthritis of unspecified elbow with involvement of other organs and systems
## 12287 Rheumatoid arthritis of right wrist with involvement of other organs and systems
## 12288 Rheumatoid arthritis of left wrist with involvement of other organs and systems
## 12289 Rheumatoid arthritis of unspecified wrist with involvement of other organs and systems
## 12290 Rheumatoid arthritis of right hand with involvement of other organs and systems
## 12291 Rheumatoid arthritis of left hand with involvement of other organs and systems
## 12292 Rheumatoid arthritis of unspecified hand with involvement of other organs and systems
## 12293 Rheumatoid arthritis of right hip with involvement of other organs and systems
## 12294 Rheumatoid arthritis of left hip with involvement of other organs and systems
## 12295 Rheumatoid arthritis of unspecified hip with involvement of other organs and systems
## 12296 Rheumatoid arthritis of right knee with involvement of other organs and systems
## 12297 Rheumatoid arthritis of left knee with involvement of other organs and systems
## 12298 Rheumatoid arthritis of unspecified knee with involvement of other organs and systems
## 12299 Rheumatoid arthritis of right ankle and foot with involvement of other organs and systems
## 12300 Rheumatoid arthritis of left ankle and foot with involvement of other organs and systems
## 12301 Rheumatoid arthritis of unspecified ankle and foot with involvement of other organs and systems
## 12302 Rheumatoid arthritis of multiple sites with involvement of other organs and systems
## 12303 Rheumatoid arthritis with rheumatoid factor of unspecified site without organ or systems involvement
## 12304 Rheumatoid arthritis with rheumatoid factor of right shoulder without organ or systems involvement
## 12305 Rheumatoid arthritis with rheumatoid factor of left shoulder without organ or systems involvement
## 12306 Rheumatoid arthritis with rheumatoid factor of unspecified shoulder without organ or systems involvement
## 12307 Rheumatoid arthritis with rheumatoid factor of right elbow without organ or systems involvement
## 12308 Rheumatoid arthritis with rheumatoid factor of left elbow without organ or systems involvement
## 12309 Rheumatoid arthritis with rheumatoid factor of unspecified elbow without organ or systems involvement
## 12310 Rheumatoid arthritis with rheumatoid factor of right wrist without organ or systems involvement
## 12311 Rheumatoid arthritis with rheumatoid factor of left wrist without organ or systems involvement
## 12312 Rheumatoid arthritis with rheumatoid factor of unspecified wrist without organ or systems involvement
## 12313 Rheumatoid arthritis with rheumatoid factor of right hand without organ or systems involvement
## 12314 Rheumatoid arthritis with rheumatoid factor of left hand without organ or systems involvement
## 12315 Rheumatoid arthritis with rheumatoid factor of unspecified hand without organ or systems involvement
## 12316 Rheumatoid arthritis with rheumatoid factor of right hip without organ or systems involvement
## 12317 Rheumatoid arthritis with rheumatoid factor of left hip without organ or systems involvement
## 12318 Rheumatoid arthritis with rheumatoid factor of unspecified hip without organ or systems involvement
## 12319 Rheumatoid arthritis with rheumatoid factor of right knee without organ or systems involvement
## 12320 Rheumatoid arthritis with rheumatoid factor of left knee without organ or systems involvement
## 12321 Rheumatoid arthritis with rheumatoid factor of unspecified knee without organ or systems involvement
## 12322 Rheumatoid arthritis with rheumatoid factor of right ankle and foot without organ or systems involvement
## 12323 Rheumatoid arthritis with rheumatoid factor of left ankle and foot without organ or systems involvement
## 12324 Rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot without organ or systems involvement
## 12325 Rheumatoid arthritis with rheumatoid factor of multiple sites without organ or systems involvement
## 12326 Other rheumatoid arthritis with rheumatoid factor of unspecified site
## 12327 Other rheumatoid arthritis with rheumatoid factor of right shoulder
## 12328 Other rheumatoid arthritis with rheumatoid factor of left shoulder
## 12329 Other rheumatoid arthritis with rheumatoid factor of unspecified shoulder
## 12330 Other rheumatoid arthritis with rheumatoid factor of right elbow
## 12331 Other rheumatoid arthritis with rheumatoid factor of left elbow
## 12332 Other rheumatoid arthritis with rheumatoid factor of unspecified elbow
## 12333 Other rheumatoid arthritis with rheumatoid factor of right wrist
## 12334 Other rheumatoid arthritis with rheumatoid factor of left wrist
## 12335 Other rheumatoid arthritis with rheumatoid factor of unspecified wrist
## 12336 Other rheumatoid arthritis with rheumatoid factor of right hand
## 12337 Other rheumatoid arthritis with rheumatoid factor of left hand
## 12338 Other rheumatoid arthritis with rheumatoid factor of unspecified hand
## 12339 Other rheumatoid arthritis with rheumatoid factor of right hip
## 12340 Other rheumatoid arthritis with rheumatoid factor of left hip
## 12341 Other rheumatoid arthritis with rheumatoid factor of unspecified hip
## 12342 Other rheumatoid arthritis with rheumatoid factor of right knee
## 12343 Other rheumatoid arthritis with rheumatoid factor of left knee
## 12344 Other rheumatoid arthritis with rheumatoid factor of unspecified knee
## 12345 Other rheumatoid arthritis with rheumatoid factor of right ankle and foot
## 12346 Other rheumatoid arthritis with rheumatoid factor of left ankle and foot
## 12347 Other rheumatoid arthritis with rheumatoid factor of unspecified ankle and foot
## 12348 Other rheumatoid arthritis with rheumatoid factor of multiple sites
## 12349 Rheumatoid arthritis with rheumatoid factor, unspecified
## 12350 Rheumatoid arthritis without rheumatoid factor, unspecified site
## 12351 Rheumatoid arthritis without rheumatoid factor, right shoulder
## 12352 Rheumatoid arthritis without rheumatoid factor, left shoulder
## 12353 Rheumatoid arthritis without rheumatoid factor, unspecified shoulder
## 12354 Rheumatoid arthritis without rheumatoid factor, right elbow
## 12355 Rheumatoid arthritis without rheumatoid factor, left elbow
## 12356 Rheumatoid arthritis without rheumatoid factor, unspecified elbow
## 12357 Rheumatoid arthritis without rheumatoid factor, right wrist
## 12358 Rheumatoid arthritis without rheumatoid factor, left wrist
## 12359 Rheumatoid arthritis without rheumatoid factor, unspecified wrist
## 12360 Rheumatoid arthritis without rheumatoid factor, right hand
## 12361 Rheumatoid arthritis without rheumatoid factor, left hand
## 12362 Rheumatoid arthritis without rheumatoid factor, unspecified hand
## 12363 Rheumatoid arthritis without rheumatoid factor, right hip
## 12364 Rheumatoid arthritis without rheumatoid factor, left hip
## 12365 Rheumatoid arthritis without rheumatoid factor, unspecified hip
## 12366 Rheumatoid arthritis without rheumatoid factor, right knee
## 12367 Rheumatoid arthritis without rheumatoid factor, left knee
## 12368 Rheumatoid arthritis without rheumatoid factor, unspecified knee
## 12369 Rheumatoid arthritis without rheumatoid factor, right ankle and foot
## 12370 Rheumatoid arthritis without rheumatoid factor, left ankle and foot
## 12371 Rheumatoid arthritis without rheumatoid factor, unspecified ankle and foot
## 12372 Rheumatoid arthritis without rheumatoid factor, vertebrae
## 12373 Rheumatoid arthritis without rheumatoid factor, multiple sites
## 12374 Adult-onset Still's disease
## 12375 Rheumatoid bursitis, unspecified site
## 12376 Rheumatoid bursitis, right shoulder
## 12377 Rheumatoid bursitis, left shoulder
## 12378 Rheumatoid bursitis, unspecified shoulder
## 12379 Rheumatoid bursitis, right elbow
## 12380 Rheumatoid bursitis, left elbow
## 12381 Rheumatoid bursitis, unspecified elbow
## 12382 Rheumatoid bursitis, right wrist
## 12383 Rheumatoid bursitis, left wrist
## 12384 Rheumatoid bursitis, unspecified wrist
## 12385 Rheumatoid bursitis, right hand
## 12386 Rheumatoid bursitis, left hand
## 12387 Rheumatoid bursitis, unspecified hand
## 12388 Rheumatoid bursitis, right hip
## 12389 Rheumatoid bursitis, left hip
## 12390 Rheumatoid bursitis, unspecified hip
## 12391 Rheumatoid bursitis, right knee
## 12392 Rheumatoid bursitis, left knee
## 12393 Rheumatoid bursitis, unspecified knee
## 12394 Rheumatoid bursitis, right ankle and foot
## 12395 Rheumatoid bursitis, left ankle and foot
## 12396 Rheumatoid bursitis, unspecified ankle and foot
## 12397 Rheumatoid bursitis, vertebrae
## 12398 Rheumatoid bursitis, multiple sites
## 12399 Rheumatoid nodule, unspecified site
## 12400 Rheumatoid nodule, right shoulder
## 12401 Rheumatoid nodule, left shoulder
## 12402 Rheumatoid nodule, unspecified shoulder
## 12403 Rheumatoid nodule, right elbow
## 12404 Rheumatoid nodule, left elbow
## 12405 Rheumatoid nodule, unspecified elbow
## 12406 Rheumatoid nodule, right wrist
## 12407 Rheumatoid nodule, left wrist
## 12408 Rheumatoid nodule, unspecified wrist
## 12409 Rheumatoid nodule, right hand
## 12410 Rheumatoid nodule, left hand
## 12411 Rheumatoid nodule, unspecified hand
## 12412 Rheumatoid nodule, right hip
## 12413 Rheumatoid nodule, left hip
## 12414 Rheumatoid nodule, unspecified hip
## 12415 Rheumatoid nodule, right knee
## 12416 Rheumatoid nodule, left knee
## 12417 Rheumatoid nodule, unspecified knee
## 12418 Rheumatoid nodule, right ankle and foot
## 12419 Rheumatoid nodule, left ankle and foot
## 12420 Rheumatoid nodule, unspecified ankle and foot
## 12421 Rheumatoid nodule, vertebrae
## 12422 Rheumatoid nodule, multiple sites
## 12423 Inflammatory polyarthropathy
## 12424 Other specified rheumatoid arthritis, unspecified site
## 12425 Other specified rheumatoid arthritis, right shoulder
## 12426 Other specified rheumatoid arthritis, left shoulder
## 12427 Other specified rheumatoid arthritis, unspecified shoulder
## 12428 Other specified rheumatoid arthritis, right elbow
## 12429 Other specified rheumatoid arthritis, left elbow
## 12430 Other specified rheumatoid arthritis, unspecified elbow
## 12431 Other specified rheumatoid arthritis, right wrist
## 12432 Other specified rheumatoid arthritis, left wrist
## 12433 Other specified rheumatoid arthritis, unspecified wrist
## 12434 Other specified rheumatoid arthritis, right hand
## 12435 Other specified rheumatoid arthritis, left hand
## 12436 Other specified rheumatoid arthritis, unspecified hand
## 12437 Other specified rheumatoid arthritis, right hip
## 12438 Other specified rheumatoid arthritis, left hip
## 12439 Other specified rheumatoid arthritis, unspecified hip
## 12440 Other specified rheumatoid arthritis, right knee
## 12441 Other specified rheumatoid arthritis, left knee
## 12442 Other specified rheumatoid arthritis, unspecified knee
## 12443 Other specified rheumatoid arthritis, right ankle and foot
## 12444 Other specified rheumatoid arthritis, left ankle and foot
## 12445 Other specified rheumatoid arthritis, unspecified ankle and foot
## 12446 Other specified rheumatoid arthritis, vertebrae
## 12447 Other specified rheumatoid arthritis, multiple sites
## 12448 Rheumatoid arthritis, unspecified
## 12449 Enteropathic arthropathies, unspecified site
## 12450 Enteropathic arthropathies, right shoulder
## 12451 Enteropathic arthropathies, left shoulder
## 12452 Enteropathic arthropathies, unspecified shoulder
## 12453 Enteropathic arthropathies, right elbow
## 12454 Enteropathic arthropathies, left elbow
## 12455 Enteropathic arthropathies, unspecified elbow
## 12456 Enteropathic arthropathies, right wrist
## 12457 Enteropathic arthropathies, left wrist
## 12458 Enteropathic arthropathies, unspecified wrist
## 12459 Enteropathic arthropathies, right hand
## 12460 Enteropathic arthropathies, left hand
## 12461 Enteropathic arthropathies, unspecified hand
## 12462 Enteropathic arthropathies, right hip
## 12463 Enteropathic arthropathies, left hip
## 12464 Enteropathic arthropathies, unspecified hip
## 12465 Enteropathic arthropathies, right knee
## 12466 Enteropathic arthropathies, left knee
## 12467 Enteropathic arthropathies, unspecified knee
## 12468 Enteropathic arthropathies, right ankle and foot
## 12469 Enteropathic arthropathies, left ankle and foot
## 12470 Enteropathic arthropathies, unspecified ankle and foot
## 12471 Enteropathic arthropathies, vertebrae
## 12472 Enteropathic arthropathies, multiple sites
## 12473 Unspecified juvenile rheumatoid arthritis of unspecified site
## 12474 Unspecified juvenile rheumatoid arthritis, right shoulder
## 12475 Unspecified juvenile rheumatoid arthritis, left shoulder
## 12476 Unspecified juvenile rheumatoid arthritis, unspecified shoulder
## 12477 Unspecified juvenile rheumatoid arthritis, right elbow
## 12478 Unspecified juvenile rheumatoid arthritis, left elbow
## 12479 Unspecified juvenile rheumatoid arthritis, unspecified elbow
## 12480 Unspecified juvenile rheumatoid arthritis, right wrist
## 12481 Unspecified juvenile rheumatoid arthritis, left wrist
## 12482 Unspecified juvenile rheumatoid arthritis, unspecified wrist
## 12483 Unspecified juvenile rheumatoid arthritis, right hand
## 12484 Unspecified juvenile rheumatoid arthritis, left hand
## 12485 Unspecified juvenile rheumatoid arthritis, unspecified hand
## 12486 Unspecified juvenile rheumatoid arthritis, right hip
## 12487 Unspecified juvenile rheumatoid arthritis, left hip
## 12488 Unspecified juvenile rheumatoid arthritis, unspecified hip
## 12489 Unspecified juvenile rheumatoid arthritis, right knee
## 12490 Unspecified juvenile rheumatoid arthritis, left knee
## 12491 Unspecified juvenile rheumatoid arthritis, unspecified knee
## 12492 Unspecified juvenile rheumatoid arthritis, right ankle and foot
## 12493 Unspecified juvenile rheumatoid arthritis, left ankle and foot
## 12494 Unspecified juvenile rheumatoid arthritis, unspecified ankle and foot
## 12495 Unspecified juvenile rheumatoid arthritis, vertebrae
## 12496 Unspecified juvenile rheumatoid arthritis, multiple sites
## 12497 Juvenile ankylosing spondylitis
## 12498 Juvenile rheumatoid arthritis with systemic onset, unspecified site
## 12499 Juvenile rheumatoid arthritis with systemic onset, right shoulder
## 12500 Juvenile rheumatoid arthritis with systemic onset, left shoulder
## 12501 Juvenile rheumatoid arthritis with systemic onset, unspecified shoulder
## 12502 Juvenile rheumatoid arthritis with systemic onset, right elbow
## 12503 Juvenile rheumatoid arthritis with systemic onset, left elbow
## 12504 Juvenile rheumatoid arthritis with systemic onset, unspecified elbow
## 12505 Juvenile rheumatoid arthritis with systemic onset, right wrist
## 12506 Juvenile rheumatoid arthritis with systemic onset, left wrist
## 12507 Juvenile rheumatoid arthritis with systemic onset, unspecified wrist
## 12508 Juvenile rheumatoid arthritis with systemic onset, right hand
## 12509 Juvenile rheumatoid arthritis with systemic onset, left hand
## 12510 Juvenile rheumatoid arthritis with systemic onset, unspecified hand
## 12511 Juvenile rheumatoid arthritis with systemic onset, right hip
## 12512 Juvenile rheumatoid arthritis with systemic onset, left hip
## 12513 Juvenile rheumatoid arthritis with systemic onset, unspecified hip
## 12514 Juvenile rheumatoid arthritis with systemic onset, right knee
## 12515 Juvenile rheumatoid arthritis with systemic onset, left knee
## 12516 Juvenile rheumatoid arthritis with systemic onset, unspecified knee
## 12517 Juvenile rheumatoid arthritis with systemic onset, right ankle and foot
## 12518 Juvenile rheumatoid arthritis with systemic onset, left ankle and foot
## 12519 Juvenile rheumatoid arthritis with systemic onset, unspecified ankle and foot
## 12520 Juvenile rheumatoid arthritis with systemic onset, vertebrae
## 12521 Juvenile rheumatoid arthritis with systemic onset, multiple sites
## 12522 Juvenile rheumatoid polyarthritis (seronegative)
## 12523 Pauciarticular juvenile rheumatoid arthritis, unspecified site
## 12524 Pauciarticular juvenile rheumatoid arthritis, right shoulder
## 12525 Pauciarticular juvenile rheumatoid arthritis, left shoulder
## 12526 Pauciarticular juvenile rheumatoid arthritis, unspecified shoulder
## 12527 Pauciarticular juvenile rheumatoid arthritis, right elbow
## 12528 Pauciarticular juvenile rheumatoid arthritis, left elbow
## 12529 Pauciarticular juvenile rheumatoid arthritis, unspecified elbow
## 12530 Pauciarticular juvenile rheumatoid arthritis, right wrist
## 12531 Pauciarticular juvenile rheumatoid arthritis, left wrist
## 12532 Pauciarticular juvenile rheumatoid arthritis, unspecified wrist
## 12533 Pauciarticular juvenile rheumatoid arthritis, right hand
## 12534 Pauciarticular juvenile rheumatoid arthritis, left hand
## 12535 Pauciarticular juvenile rheumatoid arthritis, unspecified hand
## 12536 Pauciarticular juvenile rheumatoid arthritis, right hip
## 12537 Pauciarticular juvenile rheumatoid arthritis, left hip
## 12538 Pauciarticular juvenile rheumatoid arthritis, unspecified hip
## 12539 Pauciarticular juvenile rheumatoid arthritis, right knee
## 12540 Pauciarticular juvenile rheumatoid arthritis, left knee
## 12541 Pauciarticular juvenile rheumatoid arthritis, unspecified knee
## 12542 Pauciarticular juvenile rheumatoid arthritis, right ankle and foot
## 12543 Pauciarticular juvenile rheumatoid arthritis, left ankle and foot
## 12544 Pauciarticular juvenile rheumatoid arthritis, unspecified ankle and foot
## 12545 Pauciarticular juvenile rheumatoid arthritis, vertebrae
## 12546 Other juvenile arthritis, unspecified site
## 12547 Other juvenile arthritis, right shoulder
## 12548 Other juvenile arthritis, left shoulder
## 12549 Other juvenile arthritis, unspecified shoulder
## 12550 Other juvenile arthritis, right elbow
## 12551 Other juvenile arthritis, left elbow
## 12552 Other juvenile arthritis, unspecified elbow
## 12553 Other juvenile arthritis, right wrist
## 12554 Other juvenile arthritis, left wrist
## 12555 Other juvenile arthritis, unspecified wrist
## 12556 Other juvenile arthritis, right hand
## 12557 Other juvenile arthritis, left hand
## 12558 Other juvenile arthritis, unspecified hand
## 12559 Other juvenile arthritis, right hip
## 12560 Other juvenile arthritis, left hip
## 12561 Other juvenile arthritis, unspecified hip
## 12562 Other juvenile arthritis, right knee
## 12563 Other juvenile arthritis, left knee
## 12564 Other juvenile arthritis, unspecified knee
## 12565 Other juvenile arthritis, right ankle and foot
## 12566 Other juvenile arthritis, left ankle and foot
## 12567 Other juvenile arthritis, unspecified ankle and foot
## 12568 Other juvenile arthritis, other specified site
## 12569 Other juvenile arthritis, multiple sites
## 12570 Juvenile arthritis, unspecified, unspecified site
## 12571 Juvenile arthritis, unspecified, right shoulder
## 12572 Juvenile arthritis, unspecified, left shoulder
## 12573 Juvenile arthritis, unspecified, unspecified shoulder
## 12574 Juvenile arthritis, unspecified, right elbow
## 12575 Juvenile arthritis, unspecified, left elbow
## 12576 Juvenile arthritis, unspecified, unspecified elbow
## 12577 Juvenile arthritis, unspecified, right wrist
## 12578 Juvenile arthritis, unspecified, left wrist
## 12579 Juvenile arthritis, unspecified, unspecified wrist
## 12580 Juvenile arthritis, unspecified, right hand
## 12581 Juvenile arthritis, unspecified, left hand
## 12582 Juvenile arthritis, unspecified, unspecified hand
## 12583 Juvenile arthritis, unspecified, right hip
## 12584 Juvenile arthritis, unspecified, left hip
## 12585 Juvenile arthritis, unspecified, unspecified hip
## 12586 Juvenile arthritis, unspecified, right knee
## 12587 Juvenile arthritis, unspecified, left knee
## 12588 Juvenile arthritis, unspecified, unspecified knee
## 12589 Juvenile arthritis, unspecified, right ankle and foot
## 12590 Juvenile arthritis, unspecified, left ankle and foot
## 12591 Juvenile arthritis, unspecified, unspecified ankle and foot
## 12592 Juvenile arthritis, unspecified, vertebrae
## 12593 Juvenile arthritis, unspecified, multiple sites
## 12594 Idiopathic chronic gout, unspecified site, without tophus (tophi)
## 12595 Idiopathic chronic gout, unspecified site, with tophus (tophi)
## 12596 Idiopathic chronic gout, right shoulder, without tophus (tophi)
## 12597 Idiopathic chronic gout, right shoulder, with tophus (tophi)
## 12598 Idiopathic chronic gout, left shoulder, without tophus (tophi)
## 12599 Idiopathic chronic gout, left shoulder, with tophus (tophi)
## 12600 Idiopathic chronic gout, unspecified shoulder, without tophus (tophi)
## 12601 Idiopathic chronic gout, unspecified shoulder, with tophus (tophi)
## 12602 Idiopathic chronic gout, right elbow, without tophus (tophi)
## 12603 Idiopathic chronic gout, right elbow, with tophus (tophi)
## 12604 Idiopathic chronic gout, left elbow, without tophus (tophi)
## 12605 Idiopathic chronic gout, left elbow, with tophus (tophi)
## 12606 Idiopathic chronic gout, unspecified elbow, without tophus (tophi)
## 12607 Idiopathic chronic gout, unspecified elbow, with tophus (tophi)
## 12608 Idiopathic chronic gout, right wrist, without tophus (tophi)
## 12609 Idiopathic chronic gout, right wrist, with tophus (tophi)
## 12610 Idiopathic chronic gout, left wrist, without tophus (tophi)
## 12611 Idiopathic chronic gout, left wrist, with tophus (tophi)
## 12612 Idiopathic chronic gout, unspecified wrist, without tophus (tophi)
## 12613 Idiopathic chronic gout, unspecified wrist, with tophus (tophi)
## 12614 Idiopathic chronic gout, right hand, without tophus (tophi)
## 12615 Idiopathic chronic gout, right hand, with tophus (tophi)
## 12616 Idiopathic chronic gout, left hand, without tophus (tophi)
## 12617 Idiopathic chronic gout, left hand, with tophus (tophi)
## 12618 Idiopathic chronic gout, unspecified hand, without tophus (tophi)
## 12619 Idiopathic chronic gout, unspecified hand, with tophus (tophi)
## 12620 Idiopathic chronic gout, right hip, without tophus (tophi)
## 12621 Idiopathic chronic gout, right hip, with tophus (tophi)
## 12622 Idiopathic chronic gout, left hip, without tophus (tophi)
## 12623 Idiopathic chronic gout, left hip, with tophus (tophi)
## 12624 Idiopathic chronic gout, unspecified hip, without tophus (tophi)
## 12625 Idiopathic chronic gout, unspecified hip, with tophus (tophi)
## 12626 Idiopathic chronic gout, right knee, without tophus (tophi)
## 12627 Idiopathic chronic gout, right knee, with tophus (tophi)
## 12628 Idiopathic chronic gout, left knee, without tophus (tophi)
## 12629 Idiopathic chronic gout, left knee, with tophus (tophi)
## 12630 Idiopathic chronic gout, unspecified knee, without tophus (tophi)
## 12631 Idiopathic chronic gout, unspecified knee, with tophus (tophi)
## 12632 Idiopathic chronic gout, right ankle and foot, without tophus (tophi)
## 12633 Idiopathic chronic gout, right ankle and foot, with tophus (tophi)
## 12634 Idiopathic chronic gout, left ankle and foot, without tophus (tophi)
## 12635 Idiopathic chronic gout, left ankle and foot, with tophus (tophi)
## 12636 Idiopathic chronic gout, unspecified ankle and foot, without tophus (tophi)
## 12637 Idiopathic chronic gout, unspecified ankle and foot, with tophus (tophi)
## 12638 Idiopathic chronic gout, vertebrae, without tophus (tophi)
## 12639 Idiopathic chronic gout, vertebrae, with tophus (tophi)
## 12640 Idiopathic chronic gout, multiple sites, without tophus (tophi)
## 12641 Idiopathic chronic gout, multiple sites, with tophus (tophi)
## 12642 Lead-induced chronic gout, unspecified site, without tophus (tophi)
## 12643 Lead-induced chronic gout, unspecified site, with tophus (tophi)
## 12644 Lead-induced chronic gout, right shoulder, without tophus (tophi)
## 12645 Lead-induced chronic gout, right shoulder, with tophus (tophi)
## 12646 Lead-induced chronic gout, left shoulder, without tophus (tophi)
## 12647 Lead-induced chronic gout, left shoulder, with tophus (tophi)
## 12648 Lead-induced chronic gout, unspecified shoulder, without tophus (tophi)
## 12649 Lead-induced chronic gout, unspecified shoulder, with tophus (tophi)
## 12650 Lead-induced chronic gout, right elbow, without tophus (tophi)
## 12651 Lead-induced chronic gout, right elbow, with tophus (tophi)
## 12652 Lead-induced chronic gout, left elbow, without tophus (tophi)
## 12653 Lead-induced chronic gout, left elbow, with tophus (tophi)
## 12654 Lead-induced chronic gout, unspecified elbow, without tophus (tophi)
## 12655 Lead-induced chronic gout, unspecified elbow, with tophus (tophi)
## 12656 Lead-induced chronic gout, right wrist, without tophus (tophi)
## 12657 Lead-induced chronic gout, right wrist, with tophus (tophi)
## 12658 Lead-induced chronic gout, left wrist, without tophus (tophi)
## 12659 Lead-induced chronic gout, left wrist, with tophus (tophi)
## 12660 Lead-induced chronic gout, unspecified wrist, without tophus (tophi)
## 12661 Lead-induced chronic gout, unspecified wrist, with tophus (tophi)
## 12662 Lead-induced chronic gout, right hand, without tophus (tophi)
## 12663 Lead-induced chronic gout, right hand, with tophus (tophi)
## 12664 Lead-induced chronic gout, left hand, without tophus (tophi)
## 12665 Lead-induced chronic gout, left hand, with tophus (tophi)
## 12666 Lead-induced chronic gout, unspecified hand, without tophus (tophi)
## 12667 Lead-induced chronic gout, unspecified hand, with tophus (tophi)
## 12668 Lead-induced chronic gout, right hip, without tophus (tophi)
## 12669 Lead-induced chronic gout, right hip, with tophus (tophi)
## 12670 Lead-induced chronic gout, left hip, without tophus (tophi)
## 12671 Lead-induced chronic gout, left hip, with tophus (tophi)
## 12672 Lead-induced chronic gout, unspecified hip, without tophus (tophi)
## 12673 Lead-induced chronic gout, unspecified hip, with tophus (tophi)
## 12674 Lead-induced chronic gout, right knee, without tophus (tophi)
## 12675 Lead-induced chronic gout, right knee, with tophus (tophi)
## 12676 Lead-induced chronic gout, left knee, without tophus (tophi)
## 12677 Lead-induced chronic gout, left knee, with tophus (tophi)
## 12678 Lead-induced chronic gout, unspecified knee, without tophus (tophi)
## 12679 Lead-induced chronic gout, unspecified knee, with tophus (tophi)
## 12680 Lead-induced chronic gout, right ankle and foot, without tophus (tophi)
## 12681 Lead-induced chronic gout, right ankle and foot, with tophus (tophi)
## 12682 Lead-induced chronic gout, left ankle and foot, without tophus (tophi)
## 12683 Lead-induced chronic gout, left ankle and foot, with tophus (tophi)
## 12684 Lead-induced chronic gout, unspecified ankle and foot, without tophus (tophi)
## 12685 Lead-induced chronic gout, unspecified ankle and foot, with tophus (tophi)
## 12686 Lead-induced chronic gout, vertebrae, without tophus (tophi)
## 12687 Lead-induced chronic gout, vertebrae, with tophus (tophi)
## 12688 Lead-induced chronic gout, multiple sites, without tophus (tophi)
## 12689 Lead-induced chronic gout, multiple sites, with tophus (tophi)
## 12690 Drug-induced chronic gout, unspecified site, without tophus (tophi)
## 12691 Drug-induced chronic gout, unspecified site, with tophus (tophi)
## 12692 Drug-induced chronic gout, right shoulder, without tophus (tophi)
## 12693 Drug-induced chronic gout, right shoulder, with tophus (tophi)
## 12694 Drug-induced chronic gout, left shoulder, without tophus (tophi)
## 12695 Drug-induced chronic gout, left shoulder, with tophus (tophi)
## 12696 Drug-induced chronic gout, unspecified shoulder, without tophus (tophi)
## 12697 Drug-induced chronic gout, unspecified shoulder, with tophus (tophi)
## 12698 Drug-induced chronic gout, right elbow, without tophus (tophi)
## 12699 Drug-induced chronic gout, right elbow, with tophus (tophi)
## 12700 Drug-induced chronic gout, left elbow, without tophus (tophi)
## 12701 Drug-induced chronic gout, left elbow, with tophus (tophi)
## 12702 Drug-induced chronic gout, unspecified elbow, without tophus (tophi)
## 12703 Drug-induced chronic gout, unspecified elbow, with tophus (tophi)
## 12704 Drug-induced chronic gout, right wrist, without tophus (tophi)
## 12705 Drug-induced chronic gout, right wrist, with tophus (tophi)
## 12706 Drug-induced chronic gout, left wrist, without tophus (tophi)
## 12707 Drug-induced chronic gout, left wrist, with tophus (tophi)
## 12708 Drug-induced chronic gout, unspecified wrist, without tophus (tophi)
## 12709 Drug-induced chronic gout, unspecified wrist, with tophus (tophi)
## 12710 Drug-induced chronic gout, right hand, without tophus (tophi)
## 12711 Drug-induced chronic gout, right hand, with tophus (tophi)
## 12712 Drug-induced chronic gout, left hand, without tophus (tophi)
## 12713 Drug-induced chronic gout, left hand, with tophus (tophi)
## 12714 Drug-induced chronic gout, unspecified hand, without tophus (tophi)
## 12715 Drug-induced chronic gout, unspecified hand, with tophus (tophi)
## 12716 Drug-induced chronic gout, right hip, without tophus (tophi)
## 12717 Drug-induced chronic gout, right hip, with tophus (tophi)
## 12718 Drug-induced chronic gout, left hip, without tophus (tophi)
## 12719 Drug-induced chronic gout, left hip, with tophus (tophi)
## 12720 Drug-induced chronic gout, unspecified hip, without tophus (tophi)
## 12721 Drug-induced chronic gout, unspecified hip, with tophus (tophi)
## 12722 Drug-induced chronic gout, right knee, without tophus (tophi)
## 12723 Drug-induced chronic gout, right knee, with tophus (tophi)
## 12724 Drug-induced chronic gout, left knee, without tophus (tophi)
## 12725 Drug-induced chronic gout, left knee, with tophus (tophi)
## 12726 Drug-induced chronic gout, unspecified knee, without tophus (tophi)
## 12727 Drug-induced chronic gout, unspecified knee, with tophus (tophi)
## 12728 Drug-induced chronic gout, right ankle and foot, without tophus (tophi)
## 12729 Drug-induced chronic gout, right ankle and foot, with tophus (tophi)
## 12730 Drug-induced chronic gout, left ankle and foot, without tophus (tophi)
## 12731 Drug-induced chronic gout, left ankle and foot, with tophus (tophi)
## 12732 Drug-induced chronic gout, unspecified ankle and foot, without tophus (tophi)
## 12733 Drug-induced chronic gout, unspecified ankle and foot, with tophus (tophi)
## 12734 Drug-induced chronic gout, vertebrae, without tophus (tophi)
## 12735 Drug-induced chronic gout, vertebrae, with tophus (tophi)
## 12736 Drug-induced chronic gout, multiple sites, without tophus (tophi)
## 12737 Drug-induced chronic gout, multiple sites, with tophus (tophi)
## 12738 Chronic gout due to renal impairment, unspecified site, without tophus (tophi)
## 12739 Chronic gout due to renal impairment, unspecified site, with tophus (tophi)
## 12740 Chronic gout due to renal impairment, right shoulder, without tophus (tophi)
## 12741 Chronic gout due to renal impairment, right shoulder, with tophus (tophi)
## 12742 Chronic gout due to renal impairment, left shoulder, without tophus (tophi)
## 12743 Chronic gout due to renal impairment, left shoulder, with tophus (tophi)
## 12744 Chronic gout due to renal impairment, unspecified shoulder, without tophus (tophi)
## 12745 Chronic gout due to renal impairment, unspecified shoulder, with tophus (tophi)
## 12746 Chronic gout due to renal impairment, right elbow, without tophus (tophi)
## 12747 Chronic gout due to renal impairment, right elbow, with tophus (tophi)
## 12748 Chronic gout due to renal impairment, left elbow, without tophus (tophi)
## 12749 Chronic gout due to renal impairment, left elbow, with tophus (tophi)
## 12750 Chronic gout due to renal impairment, unspecified elbow, without tophus (tophi)
## 12751 Chronic gout due to renal impairment, unspecified elbow, with tophus (tophi)
## 12752 Chronic gout due to renal impairment, right wrist, without tophus (tophi)
## 12753 Chronic gout due to renal impairment, right wrist, with tophus (tophi)
## 12754 Chronic gout due to renal impairment, left wrist, without tophus (tophi)
## 12755 Chronic gout due to renal impairment, left wrist, with tophus (tophi)
## 12756 Chronic gout due to renal impairment, unspecified wrist, without tophus (tophi)
## 12757 Chronic gout due to renal impairment, unspecified wrist, with tophus (tophi)
## 12758 Chronic gout due to renal impairment, right hand, without tophus (tophi)
## 12759 Chronic gout due to renal impairment, right hand, with tophus (tophi)
## 12760 Chronic gout due to renal impairment, left hand, without tophus (tophi)
## 12761 Chronic gout due to renal impairment, left hand, with tophus (tophi)
## 12762 Chronic gout due to renal impairment, unspecified hand, without tophus (tophi)
## 12763 Chronic gout due to renal impairment, unspecified hand, with tophus (tophi)
## 12764 Chronic gout due to renal impairment, right hip, without tophus (tophi)
## 12765 Chronic gout due to renal impairment, right hip, with tophus (tophi)
## 12766 Chronic gout due to renal impairment, left hip, without tophus (tophi)
## 12767 Chronic gout due to renal impairment, left hip, with tophus (tophi)
## 12768 Chronic gout due to renal impairment, unspecified hip, without tophus (tophi)
## 12769 Chronic gout due to renal impairment, unspecified hip, with tophus (tophi)
## 12770 Chronic gout due to renal impairment, right knee, without tophus (tophi)
## 12771 Chronic gout due to renal impairment, right knee, with tophus (tophi)
## 12772 Chronic gout due to renal impairment, left knee, without tophus (tophi)
## 12773 Chronic gout due to renal impairment, left knee, with tophus (tophi)
## 12774 Chronic gout due to renal impairment, unspecified knee, without tophus (tophi)
## 12775 Chronic gout due to renal impairment, unspecified knee, with tophus (tophi)
## 12776 Chronic gout due to renal impairment, right ankle and foot, without tophus (tophi)
## 12777 Chronic gout due to renal impairment, right ankle and foot, with tophus (tophi)
## 12778 Chronic gout due to renal impairment, left ankle and foot, without tophus (tophi)
## 12779 Chronic gout due to renal impairment, left ankle and foot, with tophus (tophi)
## 12780 Chronic gout due to renal impairment, unspecified ankle and foot, without tophus (tophi)
## 12781 Chronic gout due to renal impairment, unspecified ankle and foot, with tophus (tophi)
## 12782 Chronic gout due to renal impairment, vertebrae, without tophus (tophi)
## 12783 Chronic gout due to renal impairment, vertebrae, with tophus (tophi)
## 12784 Chronic gout due to renal impairment, multiple sites, without tophus (tophi)
## 12785 Chronic gout due to renal impairment, multiple sites, with tophus (tophi)
## 12786 Other secondary chronic gout, unspecified site, without tophus (tophi)
## 12787 Other secondary chronic gout, unspecified site, with tophus (tophi)
## 12788 Other secondary chronic gout, right shoulder, without tophus (tophi)
## 12789 Other secondary chronic gout, right shoulder, with tophus (tophi)
## 12790 Other secondary chronic gout, left shoulder, without tophus (tophi)
## 12791 Other secondary chronic gout, left shoulder, with tophus (tophi)
## 12792 Other secondary chronic gout, unspecified shoulder, without tophus (tophi)
## 12793 Other secondary chronic gout, unspecified shoulder, with tophus (tophi)
## 12794 Other secondary chronic gout, right elbow, without tophus (tophi)
## 12795 Other secondary chronic gout, right elbow, with tophus (tophi)
## 12796 Other secondary chronic gout, left elbow, without tophus (tophi)
## 12797 Other secondary chronic gout, left elbow, with tophus (tophi)
## 12798 Other secondary chronic gout, unspecified elbow, without tophus (tophi)
## 12799 Other secondary chronic gout, unspecified elbow, with tophus (tophi)
## 12800 Other secondary chronic gout, right wrist, without tophus (tophi)
## 12801 Other secondary chronic gout, right wrist, with tophus (tophi)
## 12802 Other secondary chronic gout, left wrist, without tophus (tophi)
## 12803 Other secondary chronic gout, left wrist, with tophus (tophi)
## 12804 Other secondary chronic gout, unspecified wrist, without tophus (tophi)
## 12805 Other secondary chronic gout, unspecified wrist, with tophus (tophi)
## 12806 Other secondary chronic gout, right hand, without tophus (tophi)
## 12807 Other secondary chronic gout, right hand, with tophus (tophi)
## 12808 Other secondary chronic gout, left hand, without tophus (tophi)
## 12809 Other secondary chronic gout, left hand, with tophus (tophi)
## 12810 Other secondary chronic gout, unspecified hand, without tophus (tophi)
## 12811 Other secondary chronic gout, unspecified hand, with tophus (tophi)
## 12812 Other secondary chronic gout, right hip, without tophus (tophi)
## 12813 Other secondary chronic gout, right hip, with tophus (tophi)
## 12814 Other secondary chronic gout, left hip, without tophus (tophi)
## 12815 Other secondary chronic gout, left hip, with tophus (tophi)
## 12816 Other secondary chronic gout, unspecified hip, without tophus (tophi)
## 12817 Other secondary chronic gout, unspecified hip, with tophus (tophi)
## 12818 Other secondary chronic gout, right knee, without tophus (tophi)
## 12819 Other secondary chronic gout, right knee, with tophus (tophi)
## 12820 Other secondary chronic gout, left knee, without tophus (tophi)
## 12821 Other secondary chronic gout, left knee, with tophus (tophi)
## 12822 Other secondary chronic gout, unspecified knee, without tophus (tophi)
## 12823 Other secondary chronic gout, unspecified knee, with tophus (tophi)
## 12824 Other secondary chronic gout, right ankle and foot, without tophus (tophi)
## 12825 Other secondary chronic gout, right ankle and foot, with tophus (tophi)
## 12826 Other secondary chronic gout, left ankle and foot, without tophus (tophi)
## 12827 Other secondary chronic gout, left ankle and foot, with tophus (tophi)
## 12828 Other secondary chronic gout, unspecified ankle and foot, without tophus (tophi)
## 12829 Other secondary chronic gout, unspecified ankle and foot, with tophus (tophi)
## 12830 Other secondary chronic gout, vertebrae, without tophus (tophi)
## 12831 Other secondary chronic gout, vertebrae, with tophus (tophi)
## 12832 Other secondary chronic gout, multiple sites, without tophus (tophi)
## 12833 Other secondary chronic gout, multiple sites, with tophus (tophi)
## 12834 Chronic gout, unspecified, without tophus (tophi)
## 12835 Chronic gout, unspecified, with tophus (tophi)
## 12836 Idiopathic gout, unspecified site
## 12837 Idiopathic gout, right shoulder
## 12838 Idiopathic gout, left shoulder
## 12839 Idiopathic gout, unspecified shoulder
## 12840 Idiopathic gout, right elbow
## 12841 Idiopathic gout, left elbow
## 12842 Idiopathic gout, unspecified elbow
## 12843 Idiopathic gout, right wrist
## 12844 Idiopathic gout, left wrist
## 12845 Idiopathic gout, unspecified wrist
## 12846 Idiopathic gout, right hand
## 12847 Idiopathic gout, left hand
## 12848 Idiopathic gout, unspecified hand
## 12849 Idiopathic gout, right hip
## 12850 Idiopathic gout, left hip
## 12851 Idiopathic gout, unspecified hip
## 12852 Idiopathic gout, right knee
## 12853 Idiopathic gout, left knee
## 12854 Idiopathic gout, unspecified knee
## 12855 Idiopathic gout, right ankle and foot
## 12856 Idiopathic gout, left ankle and foot
## 12857 Idiopathic gout, unspecified ankle and foot
## 12858 Idiopathic gout, vertebrae
## 12859 Idiopathic gout, multiple sites
## 12860 Lead-induced gout, unspecified site
## 12861 Lead-induced gout, right shoulder
## 12862 Lead-induced gout, left shoulder
## 12863 Lead-induced gout, unspecified shoulder
## 12864 Lead-induced gout, right elbow
## 12865 Lead-induced gout, left elbow
## 12866 Lead-induced gout, unspecified elbow
## 12867 Lead-induced gout, right wrist
## 12868 Lead-induced gout, left wrist
## 12869 Lead-induced gout, unspecified wrist
## 12870 Lead-induced gout, right hand
## 12871 Lead-induced gout, left hand
## 12872 Lead-induced gout, unspecified hand
## 12873 Lead-induced gout, right hip
## 12874 Lead-induced gout, left hip
## 12875 Lead-induced gout, unspecified hip
## 12876 Lead-induced gout, right knee
## 12877 Lead-induced gout, left knee
## 12878 Lead-induced gout, unspecified knee
## 12879 Lead-induced gout, right ankle and foot
## 12880 Lead-induced gout, left ankle and foot
## 12881 Lead-induced gout, unspecified ankle and foot
## 12882 Lead-induced gout, vertebrae
## 12883 Lead-induced gout, multiple sites
## 12884 Drug-induced gout, unspecified site
## 12885 Drug-induced gout, right shoulder
## 12886 Drug-induced gout, left shoulder
## 12887 Drug-induced gout, unspecified shoulder
## 12888 Drug-induced gout, right elbow
## 12889 Drug-induced gout, left elbow
## 12890 Drug-induced gout, unspecified elbow
## 12891 Drug-induced gout, right wrist
## 12892 Drug-induced gout, left wrist
## 12893 Drug-induced gout, unspecified wrist
## 12894 Drug-induced gout, right hand
## 12895 Drug-induced gout, left hand
## 12896 Drug-induced gout, unspecified hand
## 12897 Drug-induced gout, right hip
## 12898 Drug-induced gout, left hip
## 12899 Drug-induced gout, unspecified hip
## 12900 Drug-induced gout, right knee
## 12901 Drug-induced gout, left knee
## 12902 Drug-induced gout, unspecified knee
## 12903 Drug-induced gout, right ankle and foot
## 12904 Drug-induced gout, left ankle and foot
## 12905 Drug-induced gout, unspecified ankle and foot
## 12906 Drug-induced gout, vertebrae
## 12907 Drug-induced gout, multiple sites
## 12908 Gout due to renal impairment, unspecified site
## 12909 Gout due to renal impairment, right shoulder
## 12910 Gout due to renal impairment, left shoulder
## 12911 Gout due to renal impairment, unspecified shoulder
## 12912 Gout due to renal impairment, right elbow
## 12913 Gout due to renal impairment, left elbow
## 12914 Gout due to renal impairment, unspecified elbow
## 12915 Gout due to renal impairment, right wrist
## 12916 Gout due to renal impairment, left wrist
## 12917 Gout due to renal impairment, unspecified wrist
## 12918 Gout due to renal impairment, right hand
## 12919 Gout due to renal impairment, left hand
## 12920 Gout due to renal impairment, unspecified hand
## 12921 Gout due to renal impairment, right hip
## 12922 Gout due to renal impairment, left hip
## 12923 Gout due to renal impairment, unspecified hip
## 12924 Gout due to renal impairment, right knee
## 12925 Gout due to renal impairment, left knee
## 12926 Gout due to renal impairment, unspecified knee
## 12927 Gout due to renal impairment, right ankle and foot
## 12928 Gout due to renal impairment, left ankle and foot
## 12929 Gout due to renal impairment, unspecified ankle and foot
## 12930 Gout due to renal impairment, vertebrae
## 12931 Gout due to renal impairment, multiple sites
## 12932 Other secondary gout, unspecified site
## 12933 Other secondary gout, right shoulder
## 12934 Other secondary gout, left shoulder
## 12935 Other secondary gout, unspecified shoulder
## 12936 Other secondary gout, right elbow
## 12937 Other secondary gout, left elbow
## 12938 Other secondary gout, unspecified elbow
## 12939 Other secondary gout, right wrist
## 12940 Other secondary gout, left wrist
## 12941 Other secondary gout, unspecified wrist
## 12942 Other secondary gout, right hand
## 12943 Other secondary gout, left hand
## 12944 Other secondary gout, unspecified hand
## 12945 Other secondary gout, right hip
## 12946 Other secondary gout, left hip
## 12947 Other secondary gout, unspecified hip
## 12948 Other secondary gout, right knee
## 12949 Other secondary gout, left knee
## 12950 Other secondary gout, unspecified knee
## 12951 Other secondary gout, right ankle and foot
## 12952 Other secondary gout, left ankle and foot
## 12953 Other secondary gout, unspecified ankle and foot
## 12954 Other secondary gout, vertebrae
## 12955 Other secondary gout, multiple sites
## 12956 Gout, unspecified
## 12957 Hydroxyapatite deposition disease, unspecified site
## 12958 Hydroxyapatite deposition disease, right shoulder
## 12959 Hydroxyapatite deposition disease, left shoulder
## 12960 Hydroxyapatite deposition disease, unspecified shoulder
## 12961 Hydroxyapatite deposition disease, right elbow
## 12962 Hydroxyapatite deposition disease, left elbow
## 12963 Hydroxyapatite deposition disease, unspecified elbow
## 12964 Hydroxyapatite deposition disease, right wrist
## 12965 Hydroxyapatite deposition disease, left wrist
## 12966 Hydroxyapatite deposition disease, unspecified wrist
## 12967 Hydroxyapatite deposition disease, right hand
## 12968 Hydroxyapatite deposition disease, left hand
## 12969 Hydroxyapatite deposition disease, unspecified hand
## 12970 Hydroxyapatite deposition disease, right hip
## 12971 Hydroxyapatite deposition disease, left hip
## 12972 Hydroxyapatite deposition disease, unspecified hip
## 12973 Hydroxyapatite deposition disease, right knee
## 12974 Hydroxyapatite deposition disease, left knee
## 12975 Hydroxyapatite deposition disease, unspecified knee
## 12976 Hydroxyapatite deposition disease, right ankle and foot
## 12977 Hydroxyapatite deposition disease, left ankle and foot
## 12978 Hydroxyapatite deposition disease, unspecified ankle and foot
## 12979 Hydroxyapatite deposition disease, vertebrae
## 12980 Hydroxyapatite deposition disease, multiple sites
## 12981 Familial chondrocalcinosis, unspecified site
## 12982 Familial chondrocalcinosis, right shoulder
## 12983 Familial chondrocalcinosis, left shoulder
## 12984 Familial chondrocalcinosis, unspecified shoulder
## 12985 Familial chondrocalcinosis, right elbow
## 12986 Familial chondrocalcinosis, left elbow
## 12987 Familial chondrocalcinosis, unspecified elbow
## 12988 Familial chondrocalcinosis, right wrist
## 12989 Familial chondrocalcinosis, left wrist
## 12990 Familial chondrocalcinosis, unspecified wrist
## 12991 Familial chondrocalcinosis, right hand
## 12992 Familial chondrocalcinosis, left hand
## 12993 Familial chondrocalcinosis, unspecified hand
## 12994 Familial chondrocalcinosis, right hip
## 12995 Familial chondrocalcinosis, left hip
## 12996 Familial chondrocalcinosis, unspecified hip
## 12997 Familial chondrocalcinosis, right knee
## 12998 Familial chondrocalcinosis, left knee
## 12999 Familial chondrocalcinosis, unspecified knee
## 13000 Familial chondrocalcinosis, right ankle and foot
## 13001 Familial chondrocalcinosis, left ankle and foot
## 13002 Familial chondrocalcinosis, unspecified ankle and foot
## 13003 Familial chondrocalcinosis, vertebrae
## 13004 Familial chondrocalcinosis, multiple sites
## 13005 Other chondrocalcinosis, unspecified site
## 13006 Other chondrocalcinosis, right shoulder
## 13007 Other chondrocalcinosis, left shoulder
## 13008 Other chondrocalcinosis, unspecified shoulder
## 13009 Other chondrocalcinosis, right elbow
## 13010 Other chondrocalcinosis, left elbow
## 13011 Other chondrocalcinosis, unspecified elbow
## 13012 Other chondrocalcinosis, right wrist
## 13013 Other chondrocalcinosis, left wrist
## 13014 Other chondrocalcinosis, unspecified wrist
## 13015 Other chondrocalcinosis, right hand
## 13016 Other chondrocalcinosis, left hand
## 13017 Other chondrocalcinosis, unspecified hand
## 13018 Other chondrocalcinosis, right hip
## 13019 Other chondrocalcinosis, left hip
## 13020 Other chondrocalcinosis, unspecified hip
## 13021 Other chondrocalcinosis, right knee
## 13022 Other chondrocalcinosis, left knee
## 13023 Other chondrocalcinosis, unspecified knee
## 13024 Other chondrocalcinosis, right ankle and foot
## 13025 Other chondrocalcinosis, left ankle and foot
## 13026 Other chondrocalcinosis, unspecified ankle and foot
## 13027 Other chondrocalcinosis, vertebrae
## 13028 Other chondrocalcinosis, multiple sites
## 13029 Other specified crystal arthropathies, unspecified site
## 13030 Other specified crystal arthropathies, right shoulder
## 13031 Other specified crystal arthropathies, left shoulder
## 13032 Other specified crystal arthropathies, unspecified shoulder
## 13033 Other specified crystal arthropathies, right elbow
## 13034 Other specified crystal arthropathies, left elbow
## 13035 Other specified crystal arthropathies, unspecified elbow
## 13036 Other specified crystal arthropathies, right wrist
## 13037 Other specified crystal arthropathies, left wrist
## 13038 Other specified crystal arthropathies, unspecified wrist
## 13039 Other specified crystal arthropathies, right hand
## 13040 Other specified crystal arthropathies, left hand
## 13041 Other specified crystal arthropathies, unspecified hand
## 13042 Other specified crystal arthropathies, right hip
## 13043 Other specified crystal arthropathies, left hip
## 13044 Other specified crystal arthropathies, unspecified hip
## 13045 Other specified crystal arthropathies, right knee
## 13046 Other specified crystal arthropathies, left knee
## 13047 Other specified crystal arthropathies, unspecified knee
## 13048 Other specified crystal arthropathies, right ankle and foot
## 13049 Other specified crystal arthropathies, left ankle and foot
## 13050 Other specified crystal arthropathies, unspecified ankle and foot
## 13051 Other specified crystal arthropathies, vertebrae
## 13052 Other specified crystal arthropathies, multiple sites
## 13053 Crystal arthropathy, unspecified
## 13054 Chronic postrheumatic arthropathy [Jaccoud], unspecified site
## 13055 Chronic postrheumatic arthropathy [Jaccoud], right shoulder
## 13056 Chronic postrheumatic arthropathy [Jaccoud], left shoulder
## 13057 Chronic postrheumatic arthropathy [Jaccoud], unspecified shoulder
## 13058 Chronic postrheumatic arthropathy [Jaccoud], right elbow
## 13059 Chronic postrheumatic arthropathy [Jaccoud], left elbow
## 13060 Chronic postrheumatic arthropathy [Jaccoud], unspecified elbow
## 13061 Chronic postrheumatic arthropathy [Jaccoud], right wrist
## 13062 Chronic postrheumatic arthropathy [Jaccoud], left wrist
## 13063 Chronic postrheumatic arthropathy [Jaccoud], unspecified wrist
## 13064 Chronic postrheumatic arthropathy [Jaccoud], right hand
## 13065 Chronic postrheumatic arthropathy [Jaccoud], left hand
## 13066 Chronic postrheumatic arthropathy [Jaccoud], unspecified hand
## 13067 Chronic postrheumatic arthropathy [Jaccoud], right hip
## 13068 Chronic postrheumatic arthropathy [Jaccoud], left hip
## 13069 Chronic postrheumatic arthropathy [Jaccoud], unspecified hip
## 13070 Chronic postrheumatic arthropathy [Jaccoud], right knee
## 13071 Chronic postrheumatic arthropathy [Jaccoud], left knee
## 13072 Chronic postrheumatic arthropathy [Jaccoud], unspecified knee
## 13073 Chronic postrheumatic arthropathy [Jaccoud], right ankle and foot
## 13074 Chronic postrheumatic arthropathy [Jaccoud], left ankle and foot
## 13075 Chronic postrheumatic arthropathy [Jaccoud], unspecified ankle and foot
## 13076 Chronic postrheumatic arthropathy [Jaccoud], other specified site
## 13077 Chronic postrheumatic arthropathy [Jaccoud], multiple sites
## 13078 Kaschin-Beck disease, unspecified site
## 13079 Kaschin-Beck disease, right shoulder
## 13080 Kaschin-Beck disease, left shoulder
## 13081 Kaschin-Beck disease, unspecified shoulder
## 13082 Kaschin-Beck disease, right elbow
## 13083 Kaschin-Beck disease, left elbow
## 13084 Kaschin-Beck disease, unspecified elbow
## 13085 Kaschin-Beck disease, right wrist
## 13086 Kaschin-Beck disease, left wrist
## 13087 Kaschin-Beck disease, unspecified wrist
## 13088 Kaschin-Beck disease, right hand
## 13089 Kaschin-Beck disease, left hand
## 13090 Kaschin-Beck disease, unspecified hand
## 13091 Kaschin-Beck disease, right hip
## 13092 Kaschin-Beck disease, left hip
## 13093 Kaschin-Beck disease, unspecified hip
## 13094 Kaschin-Beck disease, right knee
## 13095 Kaschin-Beck disease, left knee
## 13096 Kaschin-Beck disease, unspecified knee
## 13097 Kaschin-Beck disease, right ankle and foot
## 13098 Kaschin-Beck disease, left ankle and foot
## 13099 Kaschin-Beck disease, unspecified ankle and foot
## 13100 Kaschin-Beck disease, vertebrae
## 13101 Kaschin-Beck disease, multiple sites
## 13102 Villonodular synovitis (pigmented), unspecified site
## 13103 Villonodular synovitis (pigmented), right shoulder
## 13104 Villonodular synovitis (pigmented), left shoulder
## 13105 Villonodular synovitis (pigmented), unspecified shoulder
## 13106 Villonodular synovitis (pigmented), right elbow
## 13107 Villonodular synovitis (pigmented), left elbow
## 13108 Villonodular synovitis (pigmented), unspecified elbow
## 13109 Villonodular synovitis (pigmented), right wrist
## 13110 Villonodular synovitis (pigmented), left wrist
## 13111 Villonodular synovitis (pigmented), unspecified wrist
## 13112 Villonodular synovitis (pigmented), right hand
## 13113 Villonodular synovitis (pigmented), left hand
## 13114 Villonodular synovitis (pigmented), unspecified hand
## 13115 Villonodular synovitis (pigmented), right hip
## 13116 Villonodular synovitis (pigmented), left hip
## 13117 Villonodular synovitis (pigmented), unspecified hip
## 13118 Villonodular synovitis (pigmented), right knee
## 13119 Villonodular synovitis (pigmented), left knee
## 13120 Villonodular synovitis (pigmented), unspecified knee
## 13121 Villonodular synovitis (pigmented), right ankle and foot
## 13122 Villonodular synovitis (pigmented), left ankle and foot
## 13123 Villonodular synovitis (pigmented), unspecified ankle and foot
## 13124 Villonodular synovitis (pigmented), other specified site
## 13125 Villonodular synovitis (pigmented), multiple sites
## 13126 Palindromic rheumatism, unspecified site
## 13127 Palindromic rheumatism, right shoulder
## 13128 Palindromic rheumatism, left shoulder
## 13129 Palindromic rheumatism, unspecified shoulder
## 13130 Palindromic rheumatism, right elbow
## 13131 Palindromic rheumatism, left elbow
## 13132 Palindromic rheumatism, unspecified elbow
## 13133 Palindromic rheumatism, right wrist
## 13134 Palindromic rheumatism, left wrist
## 13135 Palindromic rheumatism, unspecified wrist
## 13136 Palindromic rheumatism, right hand
## 13137 Palindromic rheumatism, left hand
## 13138 Palindromic rheumatism, unspecified hand
## 13139 Palindromic rheumatism, right hip
## 13140 Palindromic rheumatism, left hip
## 13141 Palindromic rheumatism, unspecified hip
## 13142 Palindromic rheumatism, right knee
## 13143 Palindromic rheumatism, left knee
## 13144 Palindromic rheumatism, unspecified knee
## 13145 Palindromic rheumatism, right ankle and foot
## 13146 Palindromic rheumatism, left ankle and foot
## 13147 Palindromic rheumatism, unspecified ankle and foot
## 13148 Palindromic rheumatism, other specified site
## 13149 Palindromic rheumatism, multiple sites
## 13150 Intermittent hydrarthrosis, unspecified site
## 13151 Intermittent hydrarthrosis, right shoulder
## 13152 Intermittent hydrarthrosis, left shoulder
## 13153 Intermittent hydrarthrosis, unspecified shoulder
## 13154 Intermittent hydrarthrosis, right elbow
## 13155 Intermittent hydrarthrosis, left elbow
## 13156 Intermittent hydrarthrosis, unspecified elbow
## 13157 Intermittent hydrarthrosis, right wrist
## 13158 Intermittent hydrarthrosis, left wrist
## 13159 Intermittent hydrarthrosis, unspecified wrist
## 13160 Intermittent hydrarthrosis, right hand
## 13161 Intermittent hydrarthrosis, left hand
## 13162 Intermittent hydrarthrosis, unspecified hand
## 13163 Intermittent hydrarthrosis, right hip
## 13164 Intermittent hydrarthrosis, left hip
## 13165 Intermittent hydrarthrosis, unspecified hip
## 13166 Intermittent hydrarthrosis, right knee
## 13167 Intermittent hydrarthrosis, left knee
## 13168 Intermittent hydrarthrosis, unspecified knee
## 13169 Intermittent hydrarthrosis, right ankle and foot
## 13170 Intermittent hydrarthrosis, left ankle and foot
## 13171 Intermittent hydrarthrosis, unspecified ankle and foot
## 13172 Intermittent hydrarthrosis, other site
## 13173 Intermittent hydrarthrosis, multiple sites
## 13174 Traumatic arthropathy, unspecified site
## 13175 Traumatic arthropathy, right shoulder
## 13176 Traumatic arthropathy, left shoulder
## 13177 Traumatic arthropathy, unspecified shoulder
## 13178 Traumatic arthropathy, right elbow
## 13179 Traumatic arthropathy, left elbow
## 13180 Traumatic arthropathy, unspecified elbow
## 13181 Traumatic arthropathy, right wrist
## 13182 Traumatic arthropathy, left wrist
## 13183 Traumatic arthropathy, unspecified wrist
## 13184 Traumatic arthropathy, right hand
## 13185 Traumatic arthropathy, left hand
## 13186 Traumatic arthropathy, unspecified hand
## 13187 Traumatic arthropathy, right hip
## 13188 Traumatic arthropathy, left hip
## 13189 Traumatic arthropathy, unspecified hip
## 13190 Traumatic arthropathy, right knee
## 13191 Traumatic arthropathy, left knee
## 13192 Traumatic arthropathy, unspecified knee
## 13193 Traumatic arthropathy, right ankle and foot
## 13194 Traumatic arthropathy, left ankle and foot
## 13195 Traumatic arthropathy, unspecified ankle and foot
## 13196 Traumatic arthropathy, other specified site
## 13197 Traumatic arthropathy, multiple sites
## 13198 Other specific arthropathies, not elsewhere classified, unspecified site
## 13199 Other specific arthropathies, not elsewhere classified, right shoulder
## 13200 Other specific arthropathies, not elsewhere classified, left shoulder
## 13201 Other specific arthropathies, not elsewhere classified, unspecified shoulder
## 13202 Other specific arthropathies, not elsewhere classified, right elbow
## 13203 Other specific arthropathies, not elsewhere classified, left elbow
## 13204 Other specific arthropathies, not elsewhere classified, unspecified elbow
## 13205 Other specific arthropathies, not elsewhere classified, right wrist
## 13206 Other specific arthropathies, not elsewhere classified, left wrist
## 13207 Other specific arthropathies, not elsewhere classified, unspecified wrist
## 13208 Other specific arthropathies, not elsewhere classified, right hand
## 13209 Other specific arthropathies, not elsewhere classified, left hand
## 13210 Other specific arthropathies, not elsewhere classified, unspecified hand
## 13211 Other specific arthropathies, not elsewhere classified, right hip
## 13212 Other specific arthropathies, not elsewhere classified, left hip
## 13213 Other specific arthropathies, not elsewhere classified, unspecified hip
## 13214 Other specific arthropathies, not elsewhere classified, right knee
## 13215 Other specific arthropathies, not elsewhere classified, left knee
## 13216 Other specific arthropathies, not elsewhere classified, unspecified knee
## 13217 Other specific arthropathies, not elsewhere classified, right ankle and foot
## 13218 Other specific arthropathies, not elsewhere classified, left ankle and foot
## 13219 Other specific arthropathies, not elsewhere classified, unspecified ankle and foot
## 13220 Other specific arthropathies, not elsewhere classified, other specified site
## 13221 Other specific arthropathies, not elsewhere classified, multiple sites
## 13222 Arthropathy, unspecified
## 13223 Polyarthritis, unspecified
## 13224 Monoarthritis, not elsewhere classified, unspecified site
## 13225 Monoarthritis, not elsewhere classified, right shoulder
## 13226 Monoarthritis, not elsewhere classified, left shoulder
## 13227 Monoarthritis, not elsewhere classified, unspecified shoulder
## 13228 Monoarthritis, not elsewhere classified, right elbow
## 13229 Monoarthritis, not elsewhere classified, left elbow
## 13230 Monoarthritis, not elsewhere classified, unspecified elbow
## 13231 Monoarthritis, not elsewhere classified, right wrist
## 13232 Monoarthritis, not elsewhere classified, left wrist
## 13233 Monoarthritis, not elsewhere classified, unspecified wrist
## 13234 Monoarthritis, not elsewhere classified, right hand
## 13235 Monoarthritis, not elsewhere classified, left hand
## 13236 Monoarthritis, not elsewhere classified, unspecified hand
## 13237 Monoarthritis, not elsewhere classified, right hip
## 13238 Monoarthritis, not elsewhere classified, left hip
## 13239 Monoarthritis, not elsewhere classified, unspecified hip
## 13240 Monoarthritis, not elsewhere classified, right knee
## 13241 Monoarthritis, not elsewhere classified, left knee
## 13242 Monoarthritis, not elsewhere classified, unspecified knee
## 13243 Monoarthritis, not elsewhere classified, right ankle and foot
## 13244 Monoarthritis, not elsewhere classified, left ankle and foot
## 13245 Monoarthritis, not elsewhere classified, unspecified ankle and foot
## 13246 Other specified arthritis, unspecified site
## 13247 Other specified arthritis, right shoulder
## 13248 Other specified arthritis, left shoulder
## 13249 Other specified arthritis, unspecified shoulder
## 13250 Other specified arthritis, right elbow
## 13251 Other specified arthritis, left elbow
## 13252 Other specified arthritis, unspecified elbow
## 13253 Other specified arthritis, right wrist
## 13254 Other specified arthritis, left wrist
## 13255 Other specified arthritis, unspecified wrist
## 13256 Other specified arthritis, right hand
## 13257 Other specified arthritis, left hand
## 13258 Other specified arthritis, unspecified hand
## 13259 Other specified arthritis, right hip
## 13260 Other specified arthritis, left hip
## 13261 Other specified arthritis, unspecified hip
## 13262 Other specified arthritis, right knee
## 13263 Other specified arthritis, left knee
## 13264 Other specified arthritis, unspecified knee
## 13265 Other specified arthritis, right ankle and foot
## 13266 Other specified arthritis, left ankle and foot
## 13267 Other specified arthritis, unspecified ankle and foot
## 13268 Other specified arthritis, other site
## 13269 Other specified arthritis, multiple sites
## 13270 Charcot's joint, unspecified site
## 13271 Charcot's joint, right shoulder
## 13272 Charcot's joint, left shoulder
## 13273 Charcot's joint, unspecified shoulder
## 13274 Charcot's joint, right elbow
## 13275 Charcot's joint, left elbow
## 13276 Charcot's joint, unspecified elbow
## 13277 Charcot's joint, right wrist
## 13278 Charcot's joint, left wrist
## 13279 Charcot's joint, unspecified wrist
## 13280 Charcot's joint, right hand
## 13281 Charcot's joint, left hand
## 13282 Charcot's joint, unspecified hand
## 13283 Charcot's joint, right hip
## 13284 Charcot's joint, left hip
## 13285 Charcot's joint, unspecified hip
## 13286 Charcot's joint, right knee
## 13287 Charcot's joint, left knee
## 13288 Charcot's joint, unspecified knee
## 13289 Charcot's joint, right ankle and foot
## 13290 Charcot's joint, left ankle and foot
## 13291 Charcot's joint, unspecified ankle and foot
## 13292 Charcot's joint, vertebrae
## 13293 Charcot's joint, multiple sites
## 13294 Arthropathies in other specified diseases classified elsewhere, unspecified site
## 13295 Arthropathies in other specified diseases classified elsewhere, right shoulder
## 13296 Arthropathies in other specified diseases classified elsewhere, left shoulder
## 13297 Arthropathies in other specified diseases classified elsewhere, unspecified shoulder
## 13298 Arthropathies in other specified diseases classified elsewhere, right elbow
## 13299 Arthropathies in other specified diseases classified elsewhere, left elbow
## 13300 Arthropathies in other specified diseases classified elsewhere, unspecified elbow
## 13301 Arthropathies in other specified diseases classified elsewhere, right wrist
## 13302 Arthropathies in other specified diseases classified elsewhere, left wrist
## 13303 Arthropathies in other specified diseases classified elsewhere, unspecified wrist
## 13304 Arthropathies in other specified diseases classified elsewhere, right hand
## 13305 Arthropathies in other specified diseases classified elsewhere, left hand
## 13306 Arthropathies in other specified diseases classified elsewhere, unspecified hand
## 13307 Arthropathies in other specified diseases classified elsewhere, right hip
## 13308 Arthropathies in other specified diseases classified elsewhere, left hip
## 13309 Arthropathies in other specified diseases classified elsewhere, unspecified hip
## 13310 Arthropathies in other specified diseases classified elsewhere, right knee
## 13311 Arthropathies in other specified diseases classified elsewhere, left knee
## 13312 Arthropathies in other specified diseases classified elsewhere, unspecified knee
## 13313 Arthropathies in other specified diseases classified elsewhere, right ankle and foot
## 13314 Arthropathies in other specified diseases classified elsewhere, left ankle and foot
## 13315 Arthropathies in other specified diseases classified elsewhere, unspecified ankle and foot
## 13316 Arthropathies in other specified diseases classified elsewhere, vertebrae
## 13317 Arthropathies in other specified diseases classified elsewhere, multiple sites
## 13318 Primary generalized (osteo)arthritis
## 13319 Heberden's nodes (with arthropathy)
## 13320 Bouchard's nodes (with arthropathy)
## 13321 Secondary multiple arthritis
## 13322 Erosive (osteo)arthritis
## 13323 Other polyosteoarthritis
## 13324 Polyosteoarthritis, unspecified
## 13325 Bilateral primary osteoarthritis of hip
## 13326 Unilateral primary osteoarthritis, unspecified hip
## 13327 Unilateral primary osteoarthritis, right hip
## 13328 Unilateral primary osteoarthritis, left hip
## 13329 Bilateral osteoarthritis resulting from hip dysplasia
## 13330 Unilateral osteoarthritis resulting from hip dysplasia, unspecified hip
## 13331 Unilateral osteoarthritis resulting from hip dysplasia, right hip
## 13332 Unilateral osteoarthritis resulting from hip dysplasia, left hip
## 13333 Bilateral post-traumatic osteoarthritis of hip
## 13334 Unilateral post-traumatic osteoarthritis, unspecified hip
## 13335 Unilateral post-traumatic osteoarthritis, right hip
## 13336 Unilateral post-traumatic osteoarthritis, left hip
## 13337 Other bilateral secondary osteoarthritis of hip
## 13338 Other unilateral secondary osteoarthritis of hip
## 13339 Osteoarthritis of hip, unspecified
## 13340 Bilateral primary osteoarthritis of knee
## 13341 Unilateral primary osteoarthritis, unspecified knee
## 13342 Unilateral primary osteoarthritis, right knee
## 13343 Unilateral primary osteoarthritis, left knee
## 13344 Bilateral post-traumatic osteoarthritis of knee
## 13345 Unilateral post-traumatic osteoarthritis, unspecified knee
## 13346 Unilateral post-traumatic osteoarthritis, right knee
## 13347 Unilateral post-traumatic osteoarthritis, left knee
## 13348 Other bilateral secondary osteoarthritis of knee
## 13349 Other unilateral secondary osteoarthritis of knee
## 13350 Osteoarthritis of knee, unspecified
## 13351 Bilateral primary osteoarthritis of first carpometacarpal joints
## 13352 Unilateral primary osteoarthritis of first carpometacarpal joint, unspecified hand
## 13353 Unilateral primary osteoarthritis of first carpometacarpal joint, right hand
## 13354 Unilateral primary osteoarthritis of first carpometacarpal joint, left hand
## 13355 Bilateral post-traumatic osteoarthritis of first carpometacarpal joints
## 13356 Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, unspecified hand
## 13357 Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, right hand
## 13358 Unilateral post-traumatic osteoarthritis of first carpometacarpal joint, left hand
## 13359 Other bilateral secondary osteoarthritis of first carpometacarpal joints
## 13360 Other unilateral secondary osteoarthritis of first carpometacarpal joint, unspecified hand
## 13361 Other unilateral secondary osteoarthritis of first carpometacarpal joint, right hand
## 13362 Other unilateral secondary osteoarthritis of first carpometacarpal joint, left hand
## 13363 Osteoarthritis of first carpometacarpal joint, unspecified
## 13364 Primary osteoarthritis, right shoulder
## 13365 Primary osteoarthritis, left shoulder
## 13366 Primary osteoarthritis, unspecified shoulder
## 13367 Primary osteoarthritis, right elbow
## 13368 Primary osteoarthritis, left elbow
## 13369 Primary osteoarthritis, unspecified elbow
## 13370 Primary osteoarthritis, right wrist
## 13371 Primary osteoarthritis, left wrist
## 13372 Primary osteoarthritis, unspecified wrist
## 13373 Primary osteoarthritis, right hand
## 13374 Primary osteoarthritis, left hand
## 13375 Primary osteoarthritis, unspecified hand
## 13376 Primary osteoarthritis, right ankle and foot
## 13377 Primary osteoarthritis, left ankle and foot
## 13378 Primary osteoarthritis, unspecified ankle and foot
## 13379 Post-traumatic osteoarthritis, right shoulder
## 13380 Post-traumatic osteoarthritis, left shoulder
## 13381 Post-traumatic osteoarthritis, unspecified shoulder
## 13382 Post-traumatic osteoarthritis, right elbow
## 13383 Post-traumatic osteoarthritis, left elbow
## 13384 Post-traumatic osteoarthritis, unspecified elbow
## 13385 Post-traumatic osteoarthritis, right wrist
## 13386 Post-traumatic osteoarthritis, left wrist
## 13387 Post-traumatic osteoarthritis, unspecified wrist
## 13388 Post-traumatic osteoarthritis, right hand
## 13389 Post-traumatic osteoarthritis, left hand
## 13390 Post-traumatic osteoarthritis, unspecified hand
## 13391 Post-traumatic osteoarthritis, right ankle and foot
## 13392 Post-traumatic osteoarthritis, left ankle and foot
## 13393 Post-traumatic osteoarthritis, unspecified ankle and foot
## 13394 Secondary osteoarthritis, right shoulder
## 13395 Secondary osteoarthritis, left shoulder
## 13396 Secondary osteoarthritis, unspecified shoulder
## 13397 Secondary osteoarthritis, right elbow
## 13398 Secondary osteoarthritis, left elbow
## 13399 Secondary osteoarthritis, unspecified elbow
## 13400 Secondary osteoarthritis, right wrist
## 13401 Secondary osteoarthritis, left wrist
## 13402 Secondary osteoarthritis, unspecified wrist
## 13403 Secondary osteoarthritis, right hand
## 13404 Secondary osteoarthritis, left hand
## 13405 Secondary osteoarthritis, unspecified hand
## 13406 Secondary osteoarthritis, right ankle and foot
## 13407 Secondary osteoarthritis, left ankle and foot
## 13408 Secondary osteoarthritis, unspecified ankle and foot
## 13409 Unspecified osteoarthritis, unspecified site
## 13410 Primary osteoarthritis, unspecified site
## 13411 Post-traumatic osteoarthritis, unspecified site
## 13412 Secondary osteoarthritis, unspecified site
## 13413 Unspecified deformity of right finger(s)
## 13414 Unspecified deformity of left finger(s)
## 13415 Unspecified deformity of unspecified finger(s)
## 13416 Mallet finger of right finger(s)
## 13417 Mallet finger of left finger(s)
## 13418 Mallet finger of unspecified finger(s)
## 13419 Boutonniere deformity of right finger(s)
## 13420 Boutonniere deformity of left finger(s)
## 13421 Boutonniere deformity of unspecified finger(s)
## 13422 Swan-neck deformity of right finger(s)
## 13423 Swan-neck deformity of left finger(s)
## 13424 Swan-neck deformity of unspecified finger(s)
## 13425 Other deformity of right finger(s)
## 13426 Other deformity of left finger(s)
## 13427 Other deformity of finger(s), unspecified finger(s)
## 13428 Hallux valgus (acquired), unspecified foot
## 13429 Hallux valgus (acquired), right foot
## 13430 Hallux valgus (acquired), left foot
## 13431 Hallux rigidus, unspecified foot
## 13432 Hallux rigidus, right foot
## 13433 Hallux rigidus, left foot
## 13434 Hallux varus (acquired), unspecified foot
## 13435 Hallux varus (acquired), right foot
## 13436 Hallux varus (acquired), left foot
## 13437 Other hammer toe(s) (acquired), unspecified foot
## 13438 Other hammer toe(s) (acquired), right foot
## 13439 Other hammer toe(s) (acquired), left foot
## 13440 Other deformities of toe(s) (acquired), right foot
## 13441 Other deformities of toe(s) (acquired), left foot
## 13442 Other deformities of toe(s) (acquired), unspecified foot
## 13443 Acquired deformities of toe(s), unspecified, unspecified foot
## 13444 Acquired deformities of toe(s), unspecified, right foot
## 13445 Acquired deformities of toe(s), unspecified, left foot
## 13446 Valgus deformity, not elsewhere classified, unspecified site
## 13447 Valgus deformity, not elsewhere classified, right elbow
## 13448 Valgus deformity, not elsewhere classified, left elbow
## 13449 Valgus deformity, not elsewhere classified, unspecified elbow
## 13450 Valgus deformity, not elsewhere classified, right hip
## 13451 Valgus deformity, not elsewhere classified, left hip
## 13452 Valgus deformity, not elsewhere classified, unspecified hip
## 13453 Valgus deformity, not elsewhere classified, right knee
## 13454 Valgus deformity, not elsewhere classified, left knee
## 13455 Valgus deformity, not elsewhere classified, unspecified knee
## 13456 Valgus deformity, not elsewhere classified, right ankle
## 13457 Valgus deformity, not elsewhere classified, left ankle
## 13458 Valgus deformity, not elsewhere classified, unspecified ankle
## 13459 Varus deformity, not elsewhere classified, unspecified site
## 13460 Varus deformity, not elsewhere classified, right elbow
## 13461 Varus deformity, not elsewhere classified, left elbow
## 13462 Varus deformity, not elsewhere classified, unspecified elbow
## 13463 Varus deformity, not elsewhere classified, right hip
## 13464 Varus deformity, not elsewhere classified, left hip
## 13465 Varus deformity, not elsewhere classified, unspecified
## 13466 Varus deformity, not elsewhere classified, right knee
## 13467 Varus deformity, not elsewhere classified, left knee
## 13468 Varus deformity, not elsewhere classified, unspecified knee
## 13469 Varus deformity, not elsewhere classified, right ankle
## 13470 Varus deformity, not elsewhere classified, left ankle
## 13471 Varus deformity, not elsewhere classified, unspecified ankle
## 13472 Flexion deformity, unspecified site
## 13473 Flexion deformity, right shoulder
## 13474 Flexion deformity, left shoulder
## 13475 Flexion deformity, unspecified shoulder
## 13476 Flexion deformity, right elbow
## 13477 Flexion deformity, left elbow
## 13478 Flexion deformity, unspecified elbow
## 13479 Flexion deformity, right wrist
## 13480 Flexion deformity, left wrist
## 13481 Flexion deformity, unspecified wrist
## 13482 Flexion deformity, right finger joints
## 13483 Flexion deformity, left finger joints
## 13484 Flexion deformity, unspecified finger joints
## 13485 Flexion deformity, right hip
## 13486 Flexion deformity, left hip
## 13487 Flexion deformity, unspecified hip
## 13488 Flexion deformity, right knee
## 13489 Flexion deformity, left knee
## 13490 Flexion deformity, unspecified knee
## 13491 Flexion deformity, right ankle and toes
## 13492 Flexion deformity, left ankle and toes
## 13493 Flexion deformity, unspecified ankle and toes
## 13494 Wrist drop, right wrist
## 13495 Wrist drop, left wrist
## 13496 Wrist drop, unspecified wrist
## 13497 Foot drop, right foot
## 13498 Foot drop, left foot
## 13499 Foot drop, unspecified foot
## 13500 Flat foot [pes planus] (acquired), unspecified foot
## 13501 Flat foot [pes planus] (acquired), right foot
## 13502 Flat foot [pes planus] (acquired), left foot
## 13503 Acquired clawhand, right hand
## 13504 Acquired clawhand, left hand
## 13505 Acquired clawhand, unspecified hand
## 13506 Acquired clubhand, right hand
## 13507 Acquired clubhand, left hand
## 13508 Acquired clubhand, unspecified hand
## 13509 Acquired clawfoot, right foot
## 13510 Acquired clawfoot, left foot
## 13511 Acquired clawfoot, unspecified foot
## 13512 Acquired clubfoot, right foot
## 13513 Acquired clubfoot, left foot
## 13514 Acquired clubfoot, unspecified foot
## 13515 Bunion of right foot
## 13516 Bunion of left foot
## 13517 Bunion of unspecified foot
## 13518 Bunionette of right foot
## 13519 Bunionette of left foot
## 13520 Bunionette of unspecified foot
## 13521 Other acquired deformities of right foot
## 13522 Other acquired deformities of left foot
## 13523 Other acquired deformities of unspecified foot
## 13524 Unequal limb length (acquired), unspecified site
## 13525 Unequal limb length (acquired), right humerus
## 13526 Unequal limb length (acquired), left humerus
## 13527 Unequal limb length (acquired), unspecified humerus
## 13528 Unequal limb length (acquired), right ulna
## 13529 Unequal limb length (acquired), left ulna
## 13530 Unequal limb length (acquired), right radius
## 13531 Unequal limb length (acquired), left radius
## 13532 Unequal limb length (acquired), unspecified ulna and radius
## 13533 Unequal limb length (acquired), right femur
## 13534 Unequal limb length (acquired), left femur
## 13535 Unequal limb length (acquired), unspecified femur
## 13536 Unequal limb length (acquired), right tibia
## 13537 Unequal limb length (acquired), left tibia
## 13538 Unequal limb length (acquired), right fibula
## 13539 Unequal limb length (acquired), left fibula
## 13540 Unequal limb length (acquired), unspecified tibia and fibula
## 13541 Other specified acquired deformities of unspecified limb
## 13542 Other specified acquired deformities of right upper arm
## 13543 Other specified acquired deformities of left upper arm
## 13544 Other specified acquired deformities of unspecified upper arm
## 13545 Other specified acquired deformities of right forearm
## 13546 Other specified acquired deformities of left forearm
## 13547 Other specified acquired deformities of unspecified forearm
## 13548 Other specified acquired deformities of right thigh
## 13549 Other specified acquired deformities of left thigh
## 13550 Other specified acquired deformities of unspecified thigh
## 13551 Other specified acquired deformities of right lower leg
## 13552 Other specified acquired deformities of left lower leg
## 13553 Other specified acquired deformities of unspecified lower leg
## 13554 Unspecified acquired deformity of unspecified limb
## 13555 Unspecified acquired deformity of right upper arm
## 13556 Unspecified acquired deformity of left upper arm
## 13557 Unspecified acquired deformity of unspecified upper arm
## 13558 Unspecified acquired deformity of right forearm
## 13559 Unspecified acquired deformity of left forearm
## 13560 Unspecified acquired deformity of unspecified forearm
## 13561 Unspecified acquired deformity of hand, right hand
## 13562 Unspecified acquired deformity of hand, left hand
## 13563 Unspecified acquired deformity of hand, unspecified hand
## 13564 Unspecified acquired deformity of right thigh
## 13565 Unspecified acquired deformity of left thigh
## 13566 Unspecified acquired deformity of unspecified thigh
## 13567 Unspecified acquired deformity of right lower leg
## 13568 Unspecified acquired deformity of left lower leg
## 13569 Unspecified acquired deformity of unspecified lower leg
## 13570 Recurrent dislocation of patella, unspecified knee
## 13571 Recurrent dislocation of patella, right knee
## 13572 Recurrent dislocation of patella, left knee
## 13573 Recurrent subluxation of patella, unspecified knee
## 13574 Recurrent subluxation of patella, right knee
## 13575 Recurrent subluxation of patella, left knee
## 13576 Patellofemoral disorders, right knee
## 13577 Patellofemoral disorders, left knee
## 13578 Patellofemoral disorders, unspecified knee
## 13579 Other derangements of patella, right knee
## 13580 Other derangements of patella, left knee
## 13581 Other derangements of patella, unspecified knee
## 13582 Chondromalacia patellae, unspecified knee
## 13583 Chondromalacia patellae, right knee
## 13584 Chondromalacia patellae, left knee
## 13585 Other disorders of patella, right knee
## 13586 Other disorders of patella, left knee
## 13587 Other disorders of patella, unspecified knee
## 13588 Unspecified disorder of patella, unspecified knee
## 13589 Unspecified disorder of patella, right knee
## 13590 Unspecified disorder of patella, left knee
## 13591 Cystic meniscus, unspecified lateral meniscus, right knee
## 13592 Cystic meniscus, unspecified lateral meniscus, left knee
## 13593 Cystic meniscus, unspecified lateral meniscus, unspecified knee
## 13594 Cystic meniscus, unspecified medial meniscus, right knee
## 13595 Cystic meniscus, unspecified medial meniscus, left knee
## 13596 Cystic meniscus, unspecified medial meniscus, unspecified knee
## 13597 Cystic meniscus, unspecified meniscus, right knee
## 13598 Cystic meniscus, unspecified meniscus, left knee
## 13599 Cystic meniscus, unspecified meniscus, unspecified knee
## 13600 Cystic meniscus, anterior horn of medial meniscus, right knee
## 13601 Cystic meniscus, anterior horn of medial meniscus, left knee
## 13602 Cystic meniscus, anterior horn of medial meniscus, unspecified knee
## 13603 Cystic meniscus, posterior horn of medial meniscus, right knee
## 13604 Cystic meniscus, posterior horn of medial meniscus, left knee
## 13605 Cystic meniscus, posterior horn of medial meniscus, unspecified knee
## 13606 Cystic meniscus, other medial meniscus, right knee
## 13607 Cystic meniscus, other medial meniscus, left knee
## 13608 Cystic meniscus, other medial meniscus, unspecified knee
## 13609 Cystic meniscus, anterior horn of lateral meniscus, right knee
## 13610 Cystic meniscus, anterior horn of lateral meniscus, left knee
## 13611 Cystic meniscus, anterior horn of lateral meniscus, unspecified knee
## 13612 Cystic meniscus, posterior horn of lateral meniscus, right knee
## 13613 Cystic meniscus, posterior horn of lateral meniscus, left knee
## 13614 Cystic meniscus, posterior horn of lateral meniscus, unspecified knee
## 13615 Cystic meniscus, other lateral meniscus, right knee
## 13616 Cystic meniscus, other lateral meniscus, left knee
## 13617 Cystic meniscus, other lateral meniscus, unspecified knee
## 13618 Derangement of unspecified lateral meniscus due to old tear or injury, right knee
## 13619 Derangement of unspecified lateral meniscus due to old tear or injury, left knee
## 13620 Derangement of unspecified lateral meniscus due to old tear or injury, unspecified knee
## 13621 Derangement of unspecified medial meniscus due to old tear or injury, right knee
## 13622 Derangement of unspecified medial meniscus due to old tear or injury, left knee
## 13623 Derangement of unspecified medial meniscus due to old tear or injury, unspecified knee
## 13624 Derangement of unspecified meniscus due to old tear or injury, right knee
## 13625 Derangement of unspecified meniscus due to old tear or injury, left knee
## 13626 Derangement of unspecified meniscus due to old tear or injury, unspecified knee
## 13627 Derangement of anterior horn of medial meniscus due to old tear or injury, right knee
## 13628 Derangement of anterior horn of medial meniscus due to old tear or injury, left knee
## 13629 Derangement of anterior horn of medial meniscus due to old tear or injury, unspecified knee
## 13630 Derangement of posterior horn of medial meniscus due to old tear or injury, right knee
## 13631 Derangement of posterior horn of medial meniscus due to old tear or injury, left knee
## 13632 Derangement of posterior horn of medial meniscus due to old tear or injury, unspecified knee
## 13633 Derangement of other medial meniscus due to old tear or injury, right knee
## 13634 Derangement of other medial meniscus due to old tear or injury, left knee
## 13635 Derangement of other medial meniscus due to old tear or injury, unspecified knee
## 13636 Derangement of anterior horn of lateral meniscus due to old tear or injury, right knee
## 13637 Derangement of anterior horn of lateral meniscus due to old tear or injury, left knee
## 13638 Derangement of anterior horn of lateral meniscus due to old tear or injury, unspecified knee
## 13639 Derangement of posterior horn of lateral meniscus due to old tear or injury, right knee
## 13640 Derangement of posterior horn of lateral meniscus due to old tear or injury, left knee
## 13641 Derangement of posterior horn of lateral meniscus due to old tear or injury, unspecified knee
## 13642 Derangement of other lateral meniscus due to old tear or injury, right knee
## 13643 Derangement of other lateral meniscus due to old tear or injury, left knee
## 13644 Derangement of other lateral meniscus due to old tear or injury, unspecified knee
## 13645 Other meniscus derangements, unspecified lateral meniscus, right knee
## 13646 Other meniscus derangements, unspecified lateral meniscus, left knee
## 13647 Other meniscus derangements, unspecified lateral meniscus, unspecified knee
## 13648 Other meniscus derangements, unspecified medial meniscus, right knee
## 13649 Other meniscus derangements, unspecified medial meniscus, left knee
## 13650 Other meniscus derangements, unspecified medial meniscus, unspecified knee
## 13651 Other meniscus derangements, unspecified meniscus, right knee
## 13652 Other meniscus derangements, unspecified meniscus, left knee
## 13653 Other meniscus derangements, unspecified meniscus, unspecified knee
## 13654 Other meniscus derangements, anterior horn of medial meniscus, right knee
## 13655 Other meniscus derangements, anterior horn of medial meniscus, left knee
## 13656 Other meniscus derangements, anterior horn of medial meniscus, unspecified knee
## 13657 Other meniscus derangements, posterior horn of medial meniscus, right knee
## 13658 Other meniscus derangements, posterior horn of medial meniscus, left knee
## 13659 Other meniscus derangements, posterior horn of medial meniscus, unspecified knee
## 13660 Other meniscus derangements, other medial meniscus, right knee
## 13661 Other meniscus derangements, other medial meniscus, left knee
## 13662 Other meniscus derangements, other medial meniscus, unspecified knee
## 13663 Other meniscus derangements, anterior horn of lateral meniscus, right knee
## 13664 Other meniscus derangements, anterior horn of lateral meniscus, left knee
## 13665 Other meniscus derangements, anterior horn of lateral meniscus, unspecified knee
## 13666 Other meniscus derangements, posterior horn of lateral meniscus, right knee
## 13667 Other meniscus derangements, posterior horn of lateral meniscus, left knee
## 13668 Other meniscus derangements, posterior horn of lateral meniscus, unspecified knee
## 13669 Other meniscus derangements, other lateral meniscus, right knee
## 13670 Other meniscus derangements, other lateral meniscus, left knee
## 13671 Other meniscus derangements, other lateral meniscus, unspecified knee
## 13672 Loose body in knee, unspecified knee
## 13673 Loose body in knee, right knee
## 13674 Loose body in knee, left knee
## 13675 Chronic instability of knee, unspecified knee
## 13676 Chronic instability of knee, right knee
## 13677 Chronic instability of knee, left knee
## 13678 Other spontaneous disruption of unspecified ligament of right knee
## 13679 Other spontaneous disruption of unspecified ligament of left knee
## 13680 Other spontaneous disruption of unspecified ligament of unspecified knee
## 13681 Other spontaneous disruption of anterior cruciate ligament of right knee
## 13682 Other spontaneous disruption of anterior cruciate ligament of left knee
## 13683 Other spontaneous disruption of anterior cruciate ligament of unspecified knee
## 13684 Other spontaneous disruption of posterior cruciate ligament of right knee
## 13685 Other spontaneous disruption of posterior cruciate ligament of left knee
## 13686 Other spontaneous disruption of posterior cruciate ligament of unspecified knee
## 13687 Other spontaneous disruption of medial collateral ligament of right knee
## 13688 Other spontaneous disruption of medial collateral ligament of left knee
## 13689 Other spontaneous disruption of medial collateral ligament of unspecified knee
## 13690 Other spontaneous disruption of lateral collateral ligament of right knee
## 13691 Other spontaneous disruption of lateral collateral ligament of left knee
## 13692 Other spontaneous disruption of lateral collateral ligament of unspecified knee
## 13693 Other spontaneous disruption of capsular ligament of right knee
## 13694 Other spontaneous disruption of capsular ligament of left knee
## 13695 Other spontaneous disruption of capsular ligament of unspecified knee
## 13696 Other internal derangements of right knee
## 13697 Other internal derangements of left knee
## 13698 Other internal derangements of unspecified knee
## 13699 Unspecified internal derangement of unspecified knee
## 13700 Unspecified internal derangement of right knee
## 13701 Unspecified internal derangement of left knee
## 13702 Loose body in unspecified joint
## 13703 Loose body in right shoulder
## 13704 Loose body in left shoulder
## 13705 Loose body in unspecified shoulder
## 13706 Loose body in right elbow
## 13707 Loose body in left elbow
## 13708 Loose body in unspecified elbow
## 13709 Loose body in right wrist
## 13710 Loose body in left wrist
## 13711 Loose body in unspecified wrist
## 13712 Loose body in right finger joint(s)
## 13713 Loose body in left finger joint(s)
## 13714 Loose body in unspecified finger joint(s)
## 13715 Loose body in right hip
## 13716 Loose body in left hip
## 13717 Loose body in unspecified hip
## 13718 Loose body in right ankle
## 13719 Loose body in left ankle
## 13720 Loose body in unspecified ankle
## 13721 Loose body in right toe joint(s)
## 13722 Loose body in left toe joint(s)
## 13723 Loose body in unspecified toe joints
## 13724 Loose body, other site
## 13725 Other articular cartilage disorders, unspecified site
## 13726 Other articular cartilage disorders, right shoulder
## 13727 Other articular cartilage disorders, left shoulder
## 13728 Other articular cartilage disorders, unspecified shoulder
## 13729 Other articular cartilage disorders, right elbow
## 13730 Other articular cartilage disorders, left elbow
## 13731 Other articular cartilage disorders, unspecified elbow
## 13732 Other articular cartilage disorders, right wrist
## 13733 Other articular cartilage disorders, left wrist
## 13734 Other articular cartilage disorders, unspecified wrist
## 13735 Other articular cartilage disorders, right hand
## 13736 Other articular cartilage disorders, left hand
## 13737 Other articular cartilage disorders, unspecified hand
## 13738 Other articular cartilage disorders, right hip
## 13739 Other articular cartilage disorders, left hip
## 13740 Other articular cartilage disorders, unspecified hip
## 13741 Other articular cartilage disorders, right ankle
## 13742 Other articular cartilage disorders, left ankle
## 13743 Other articular cartilage disorders, unspecified ankle
## 13744 Other articular cartilage disorders, right foot
## 13745 Other articular cartilage disorders, left foot
## 13746 Other articular cartilage disorders, unspecified foot
## 13747 Disorder of ligament, unspecified site
## 13748 Disorder of ligament, right shoulder
## 13749 Disorder of ligament, left shoulder
## 13750 Disorder of ligament, unspecified shoulder
## 13751 Disorder of ligament, right elbow
## 13752 Disorder of ligament, left elbow
## 13753 Disorder of ligament, unspecified elbow
## 13754 Disorder of ligament, right wrist
## 13755 Disorder of ligament, left wrist
## 13756 Disorder of ligament, unspecified wrist
## 13757 Disorder of ligament, right hand
## 13758 Disorder of ligament, left hand
## 13759 Disorder of ligament, unspecified hand
## 13760 Disorder of ligament, right hip
## 13761 Disorder of ligament, left hip
## 13762 Disorder of ligament, unspecified hip
## 13763 Disorder of ligament, right ankle
## 13764 Disorder of ligament, left ankle
## 13765 Disorder of ligament, unspecified ankle
## 13766 Disorder of ligament, right foot
## 13767 Disorder of ligament, left foot
## 13768 Disorder of ligament, unspecified foot
## 13769 Disorder of ligament, vertebrae
## 13770 Pathological dislocation of unspecified joint, not elsewhere classified
## 13771 Pathological dislocation of right shoulder, not elsewhere classified
## 13772 Pathological dislocation of left shoulder, not elsewhere classified
## 13773 Pathological dislocation of unspecified shoulder, not elsewhere classified
## 13774 Pathological dislocation of right elbow, not elsewhere classified
## 13775 Pathological dislocation of left elbow, not elsewhere classified
## 13776 Pathological dislocation of unspecified elbow, not elsewhere classified
## 13777 Pathological dislocation of right wrist, not elsewhere classified
## 13778 Pathological dislocation of left wrist, not elsewhere classified
## 13779 Pathological dislocation of unspecified wrist, not elsewhere classified
## 13780 Pathological dislocation of right hand, not elsewhere classified
## 13781 Pathological dislocation of left hand, not elsewhere classified
## 13782 Pathological dislocation of unspecified hand, not elsewhere classified
## 13783 Pathological dislocation of right hip, not elsewhere classified
## 13784 Pathological dislocation of left hip, not elsewhere classified
## 13785 Pathological dislocation of unspecified hip, not elsewhere classified
## 13786 Pathological dislocation of right knee, not elsewhere classified
## 13787 Pathological dislocation of left knee, not elsewhere classified
## 13788 Pathological dislocation of unspecified knee, not elsewhere classified
## 13789 Pathological dislocation of right ankle, not elsewhere classified
## 13790 Pathological dislocation of left ankle, not elsewhere classified
## 13791 Pathological dislocation of unspecified ankle, not elsewhere classified
## 13792 Pathological dislocation of right foot, not elsewhere classified
## 13793 Pathological dislocation of left foot, not elsewhere classified
## 13794 Pathological dislocation of unspecified foot, not elsewhere classified
## 13795 Recurrent dislocation, unspecified joint
## 13796 Recurrent dislocation, right shoulder
## 13797 Recurrent dislocation, left shoulder
## 13798 Recurrent dislocation, unspecified shoulder
## 13799 Recurrent dislocation, right elbow
## 13800 Recurrent dislocation, left elbow
## 13801 Recurrent dislocation, unspecified elbow
## 13802 Recurrent dislocation, right wrist
## 13803 Recurrent dislocation, left wrist
## 13804 Recurrent dislocation, unspecified wrist
## 13805 Recurrent dislocation, right hand
## 13806 Recurrent dislocation, left hand
## 13807 Recurrent dislocation, unspecified hand
## 13808 Recurrent dislocation, right finger
## 13809 Recurrent dislocation, left finger
## 13810 Recurrent dislocation, unspecified finger
## 13811 Recurrent dislocation, right hip
## 13812 Recurrent dislocation, left hip
## 13813 Recurrent dislocation, unspecified hip
## 13814 Recurrent dislocation, right knee
## 13815 Recurrent dislocation, left knee
## 13816 Recurrent dislocation, unspecified knee
## 13817 Recurrent dislocation, right ankle
## 13818 Recurrent dislocation, left ankle
## 13819 Recurrent dislocation, unspecified ankle
## 13820 Recurrent dislocation, right foot
## 13821 Recurrent dislocation, left foot
## 13822 Recurrent dislocation, unspecified foot
## 13823 Recurrent dislocation, right toe(s)
## 13824 Recurrent dislocation, left toe(s)
## 13825 Recurrent dislocation, unspecified toe(s)
## 13826 Contracture, unspecified joint
## 13827 Contracture, right shoulder
## 13828 Contracture, left shoulder
## 13829 Contracture, unspecified shoulder
## 13830 Contracture, right elbow
## 13831 Contracture, left elbow
## 13832 Contracture, unspecified elbow
## 13833 Contracture, right wrist
## 13834 Contracture, left wrist
## 13835 Contracture, unspecified wrist
## 13836 Contracture, right hand
## 13837 Contracture, left hand
## 13838 Contracture, unspecified hand
## 13839 Contracture, right hip
## 13840 Contracture, left hip
## 13841 Contracture, unspecified hip
## 13842 Contracture, right knee
## 13843 Contracture, left knee
## 13844 Contracture, unspecified knee
## 13845 Contracture, right ankle
## 13846 Contracture, left ankle
## 13847 Contracture, unspecified ankle
## 13848 Contracture, right foot
## 13849 Contracture, left foot
## 13850 Contracture, unspecified foot
## 13851 Ankylosis, unspecified joint
## 13852 Ankylosis, right shoulder
## 13853 Ankylosis, left shoulder
## 13854 Ankylosis, unspecified shoulder
## 13855 Ankylosis, right elbow
## 13856 Ankylosis, left elbow
## 13857 Ankylosis, unspecified elbow
## 13858 Ankylosis, right wrist
## 13859 Ankylosis, left wrist
## 13860 Ankylosis, unspecified wrist
## 13861 Ankylosis, right hand
## 13862 Ankylosis, left hand
## 13863 Ankylosis, unspecified hand
## 13864 Ankylosis, right hip
## 13865 Ankylosis, left hip
## 13866 Ankylosis, unspecified hip
## 13867 Ankylosis, right knee
## 13868 Ankylosis, left knee
## 13869 Ankylosis, unspecified knee
## 13870 Ankylosis, right ankle
## 13871 Ankylosis, left ankle
## 13872 Ankylosis, unspecified ankle
## 13873 Ankylosis, right foot
## 13874 Ankylosis, left foot
## 13875 Ankylosis, unspecified foot
## 13876 Protrusio acetabuli
## 13877 Other specific joint derangements of unspecified joint, not elsewhere classified
## 13878 Other specific joint derangements of right shoulder, not elsewhere classified
## 13879 Other specific joint derangements of left shoulder, not elsewhere classified
## 13880 Other specific joint derangements of unspecified shoulder, not elsewhere classified
## 13881 Other specific joint derangements of right elbow, not elsewhere classified
## 13882 Other specific joint derangements of left elbow, not elsewhere classified
## 13883 Other specific joint derangements of unspecified elbow, not elsewhere classified
## 13884 Other specific joint derangements of right wrist, not elsewhere classified
## 13885 Other specific joint derangements of left wrist, not elsewhere classified
## 13886 Other specific joint derangements of unspecified wrist, not elsewhere classified
## 13887 Other specific joint derangements of right hand, not elsewhere classified
## 13888 Other specific joint derangements of left hand, not elsewhere classified
## 13889 Other specific joint derangements of unspecified hand, not elsewhere classified
## 13890 Other specific joint derangements of right hip, not elsewhere classified
## 13891 Other specific joint derangements of left hip, not elsewhere classified
## 13892 Other specific joint derangements of unspecified hip, not elsewhere classified
## 13893 Other specific joint derangements of right ankle, not elsewhere classified
## 13894 Other specific joint derangements of left ankle, not elsewhere classified
## 13895 Other specific joint derangements of unspecified ankle, not elsewhere classified
## 13896 Other specific joint derangements of right foot, not elsewhere classified
## 13897 Other specific joint derangements left foot, not elsewhere classified
## 13898 Other specific joint derangements of unspecified foot, not elsewhere classified
## 13899 Joint derangement, unspecified
## 13900 Hemarthrosis, unspecified joint
## 13901 Hemarthrosis, right shoulder
## 13902 Hemarthrosis, left shoulder
## 13903 Hemarthrosis, unspecified shoulder
## 13904 Hemarthrosis, right elbow
## 13905 Hemarthrosis, left elbow
## 13906 Hemarthrosis, unspecified elbow
## 13907 Hemarthrosis, right wrist
## 13908 Hemarthrosis, left wrist
## 13909 Hemarthrosis, unspecified wrist
## 13910 Hemarthrosis, right hand
## 13911 Hemarthrosis, left hand
## 13912 Hemarthrosis, unspecified hand
## 13913 Hemarthrosis, right hip
## 13914 Hemarthrosis, left hip
## 13915 Hemarthrosis, unspecified hip
## 13916 Hemarthrosis, right knee
## 13917 Hemarthrosis, left knee
## 13918 Hemarthrosis, unspecified knee
## 13919 Hemarthrosis, right ankle
## 13920 Hemarthrosis, left ankle
## 13921 Hemarthrosis, unspecified ankle
## 13922 Hemarthrosis, right foot
## 13923 Hemarthrosis, left foot
## 13924 Hemarthrosis, unspecified foot
## 13925 Hemarthrosis, other specified site
## 13926 Fistula, unspecified joint
## 13927 Fistula, right shoulder
## 13928 Fistula, left shoulder
## 13929 Fistula, unspecified shoulder
## 13930 Fistula, right elbow
## 13931 Fistula, left elbow
## 13932 Fistula, unspecified elbow
## 13933 Fistula, right wrist
## 13934 Fistula, left wrist
## 13935 Fistula, unspecified wrist
## 13936 Fistula, right hand
## 13937 Fistula, left hand
## 13938 Fistula, unspecified hand
## 13939 Fistula, right hip
## 13940 Fistula, left hip
## 13941 Fistula, unspecified hip
## 13942 Fistula, right knee
## 13943 Fistula, left knee
## 13944 Fistula, unspecified knee
## 13945 Fistula, right ankle
## 13946 Fistula, left ankle
## 13947 Fistula, unspecified ankle
## 13948 Fistula, right foot
## 13949 Fistula, left foot
## 13950 Fistula, unspecified foot
## 13951 Fistula, other specified site
## 13952 Flail joint, unspecified joint
## 13953 Flail joint, right shoulder
## 13954 Flail joint, left shoulder
## 13955 Flail joint, unspecified shoulder
## 13956 Flail joint, right elbow
## 13957 Flail joint, left elbow
## 13958 Flail joint, unspecified elbow
## 13959 Flail joint, right wrist
## 13960 Flail joint, left wrist
## 13961 Flail joint, unspecified wrist
## 13962 Flail joint, right hand
## 13963 Flail joint, left hand
## 13964 Flail joint, unspecified hand
## 13965 Flail joint, right hip
## 13966 Flail joint, left hip
## 13967 Flail joint, unspecified hip
## 13968 Flail joint, right knee
## 13969 Flail joint, left knee
## 13970 Flail joint, unspecified knee
## 13971 Flail joint, right ankle and foot
## 13972 Flail joint, left ankle and foot
## 13973 Flail joint, unspecified ankle and foot
## 13974 Flail joint, other site
## 13975 Other instability, unspecified joint
## 13976 Other instability, right shoulder
## 13977 Other instability, left shoulder
## 13978 Other instability, unspecified shoulder
## 13979 Other instability, right elbow
## 13980 Other instability, left elbow
## 13981 Other instability, unspecified elbow
## 13982 Other instability, right wrist
## 13983 Other instability, left wrist
## 13984 Other instability, unspecified wrist
## 13985 Other instability, right hand
## 13986 Other instability, left hand
## 13987 Other instability, unspecified hand
## 13988 Other instability, right hip
## 13989 Other instability, left hip
## 13990 Other instability, unspecified hip
## 13991 Other instability, right knee
## 13992 Other instability, left knee
## 13993 Other instability, unspecified knee
## 13994 Other instability, right ankle
## 13995 Other instability, left ankle
## 13996 Other instability, unspecified ankle
## 13997 Other instability, right foot
## 13998 Other instability, left foot
## 13999 Other instability, unspecified foot
## 14000 Effusion, unspecified joint
## 14001 Effusion, right shoulder
## 14002 Effusion, left shoulder
## 14003 Effusion, unspecified shoulder
## 14004 Effusion, right elbow
## 14005 Effusion, left elbow
## 14006 Effusion, unspecified elbow
## 14007 Effusion, right wrist
## 14008 Effusion, left wrist
## 14009 Effusion, unspecified wrist
## 14010 Effusion, right hand
## 14011 Effusion, left hand
## 14012 Effusion, unspecified hand
## 14013 Effusion, right hip
## 14014 Effusion, left hip
## 14015 Effusion, unspecified hip
## 14016 Effusion, right knee
## 14017 Effusion, left knee
## 14018 Effusion, unspecified knee
## 14019 Effusion, right ankle
## 14020 Effusion, left ankle
## 14021 Effusion, unspecified ankle
## 14022 Effusion, right foot
## 14023 Effusion, left foot
## 14024 Effusion, unspecified foot
## 14025 Effusion, other site
## 14026 Pain in unspecified joint
## 14027 Pain in right shoulder
## 14028 Pain in left shoulder
## 14029 Pain in unspecified shoulder
## 14030 Pain in right elbow
## 14031 Pain in left elbow
## 14032 Pain in unspecified elbow
## 14033 Pain in right wrist
## 14034 Pain in left wrist
## 14035 Pain in unspecified wrist
## 14036 Pain in joints of right hand
## 14037 Pain in joints of left hand
## 14038 Pain in joints of unspecified hand
## 14039 Pain in right hip
## 14040 Pain in left hip
## 14041 Pain in unspecified hip
## 14042 Pain in right knee
## 14043 Pain in left knee
## 14044 Pain in unspecified knee
## 14045 Pain in right ankle and joints of right foot
## 14046 Pain in left ankle and joints of left foot
## 14047 Pain in unspecified ankle and joints of unspecified foot
## 14048 Stiffness of unspecified joint, not elsewhere classified
## 14049 Stiffness of right shoulder, not elsewhere classified
## 14050 Stiffness of left shoulder, not elsewhere classified
## 14051 Stiffness of unspecified shoulder, not elsewhere classified
## 14052 Stiffness of right elbow, not elsewhere classified
## 14053 Stiffness of left elbow, not elsewhere classified
## 14054 Stiffness of unspecified elbow, not elsewhere classified
## 14055 Stiffness of right wrist, not elsewhere classified
## 14056 Stiffness of left wrist, not elsewhere classified
## 14057 Stiffness of unspecified wrist, not elsewhere classified
## 14058 Stiffness of right hand, not elsewhere classified
## 14059 Stiffness of left hand, not elsewhere classified
## 14060 Stiffness of unspecified hand, not elsewhere classified
## 14061 Stiffness of right hip, not elsewhere classified
## 14062 Stiffness of left hip, not elsewhere classified
## 14063 Stiffness of unspecified hip, not elsewhere classified
## 14064 Stiffness of right knee, not elsewhere classified
## 14065 Stiffness of left knee, not elsewhere classified
## 14066 Stiffness of unspecified knee, not elsewhere classified
## 14067 Stiffness of right ankle, not elsewhere classified
## 14068 Stiffness of left ankle, not elsewhere classified
## 14069 Stiffness of unspecified ankle, not elsewhere classified
## 14070 Stiffness of right foot, not elsewhere classified
## 14071 Stiffness of left foot, not elsewhere classified
## 14072 Stiffness of unspecified foot, not elsewhere classified
## 14073 Osteophyte, unspecified joint
## 14074 Osteophyte, right shoulder
## 14075 Osteophyte, left shoulder
## 14076 Osteophyte, unspecified shoulder
## 14077 Osteophyte, right elbow
## 14078 Osteophyte, left elbow
## 14079 Osteophyte, unspecified elbow
## 14080 Osteophyte, right wrist
## 14081 Osteophyte, left wrist
## 14082 Osteophyte, unspecified wrist
## 14083 Osteophyte, right hand
## 14084 Osteophyte, left hand
## 14085 Osteophyte, unspecified hand
## 14086 Osteophyte, right hip
## 14087 Osteophyte, left hip
## 14088 Osteophyte, unspecified hip
## 14089 Osteophyte, right knee
## 14090 Osteophyte, left knee
## 14091 Osteophyte, unspecified knee
## 14092 Osteophyte, right ankle
## 14093 Osteophyte, left ankle
## 14094 Osteophyte, unspecified ankle
## 14095 Osteophyte, right foot
## 14096 Osteophyte, left foot
## 14097 Osteophyte, unspecified foot
## 14098 Osteophyte, vertebrae
## 14099 Other specified joint disorders, unspecified joint
## 14100 Other specified joint disorders, right shoulder
## 14101 Other specified joint disorders, left shoulder
## 14102 Other specified joint disorders, unspecified shoulder
## 14103 Other specified joint disorders, right elbow
## 14104 Other specified joint disorders, left elbow
## 14105 Other specified joint disorders, unspecified elbow
## 14106 Other specified joint disorders, right wrist
## 14107 Other specified joint disorders, left wrist
## 14108 Other specified joint disorders, unspecified wrist
## 14109 Other specified joint disorders, right hand
## 14110 Other specified joint disorders, left hand
## 14111 Other specified joint disorders, unspecified hand
## 14112 Other specified joint disorders, right hip
## 14113 Other specified joint disorders, left hip
## 14114 Other specified joint disorders, unspecified hip
## 14115 Other specified joint disorders, right knee
## 14116 Other specified joint disorders, left knee
## 14117 Other specified joint disorders, unspecified knee
## 14118 Other specified joint disorders, right ankle and foot
## 14119 Other specified joint disorders, left ankle and foot
## 14120 Other specified joint disorders, unspecified ankle and foot
## 14121 Joint disorder, unspecified
## 14122 Unspecified anomaly of jaw size
## 14123 Maxillary hyperplasia
## 14124 Maxillary hypoplasia
## 14125 Mandibular hyperplasia
## 14126 Mandibular hypoplasia
## 14127 Macrogenia
## 14128 Microgenia
## 14129 Excessive tuberosity of jaw
## 14130 Other specified anomalies of jaw size
## 14131 Unspecified anomaly of jaw-cranial base relationship
## 14132 Maxillary asymmetry
## 14133 Other jaw asymmetry
## 14134 Other specified anomalies of jaw-cranial base relationship
## 14135 Unspecified anomaly of dental arch relationship
## 14136 Malocclusion, Angle's class I
## 14137 Malocclusion, Angle's class II
## 14138 Malocclusion, Angle's class III
## 14139 Malocclusion, Angle's class, unspecified
## 14140 Open anterior occlusal relationship
## 14141 Open posterior occlusal relationship
## 14142 Excessive horizontal overlap
## 14143 Reverse articulation
## 14144 Anomalies of interarch distance
## 14145 Other anomalies of dental arch relationship
## 14146 Unspecified anomaly of tooth position of fully erupted tooth or teeth
## 14147 Crowding of fully erupted teeth
## 14148 Excessive spacing of fully erupted teeth
## 14149 Horizontal displacement of fully erupted tooth or teeth
## 14150 Vertical displacement of fully erupted tooth or teeth
## 14151 Rotation of fully erupted tooth or teeth
## 14152 Insufficient interocclusal distance of fully erupted teeth (ridge)
## 14153 Excessive interocclusal distance of fully erupted teeth
## 14154 Other anomalies of tooth position of fully erupted tooth or teeth
## 14155 Malocclusion, unspecified
## 14156 Dentofacial functional abnormalities, unspecified
## 14157 Abnormal jaw closure
## 14158 Limited mandibular range of motion
## 14159 Deviation in opening and closing of the mandible
## 14160 Insufficient anterior guidance
## 14161 Centric occlusion maximum intercuspation discrepancy
## 14162 Non-working side interference
## 14163 Lack of posterior occlusal support
## 14164 Other dentofacial functional abnormalities
## 14165 Right temporomandibular joint disorder, unspecified
## 14166 Left temporomandibular joint disorder, unspecified
## 14167 Bilateral temporomandibular joint disorder, unspecified
## 14168 Unspecified temporomandibular joint disorder, unspecified side
## 14169 Adhesions and ankylosis of right temporomandibular joint
## 14170 Adhesions and ankylosis of left temporomandibular joint
## 14171 Adhesions and ankylosis of bilateral temporomandibular joint
## 14172 Adhesions and ankylosis of temporomandibular joint, unspecified side
## 14173 Arthralgia of right temporomandibular joint
## 14174 Arthralgia of left temporomandibular joint
## 14175 Arthralgia of bilateral temporomandibular joint
## 14176 Arthralgia of temporomandibular joint, unspecified side
## 14177 Articular disc disorder of right temporomandibular joint
## 14178 Articular disc disorder of left temporomandibular joint
## 14179 Articular disc disorder of bilateral temporomandibular joint
## 14180 Articular disc disorder of temporomandibular joint, unspecified side
## 14181 Other specified disorders of temporomandibular joint
## 14182 Unspecified alveolar anomaly
## 14183 Alveolar maxillary hyperplasia
## 14184 Alveolar mandibular hyperplasia
## 14185 Alveolar maxillary hypoplasia
## 14186 Alveolar mandibular hypoplasia
## 14187 Other specified alveolar anomalies
## 14188 Anterior soft tissue impingement
## 14189 Posterior soft tissue impingement
## 14190 Other dentofacial anomalies
## 14191 Dentofacial anomaly, unspecified
## 14192 Developmental disorders of jaws
## 14193 Giant cell granuloma, central
## 14194 Inflammatory conditions of jaws
## 14195 Alveolitis of jaws
## 14196 Unspecified cyst of jaw
## 14197 Other cysts of jaw
## 14198 Perforation of root canal space due to endodontic treatment
## 14199 Endodontic overfill
## 14200 Endodontic underfill
## 14201 Other periradicular pathology associated with previous endodontic treatment
## 14202 Osseointegration failure of dental implant
## 14203 Post-osseointegration biological failure of dental implant
## 14204 Post-osseointegration mechanical failure of dental implant
## 14205 Other endosseous dental implant failure
## 14206 Other specified diseases of jaws
## 14207 Disease of jaws, unspecified
## 14208 Polyarteritis nodosa
## 14209 Polyarteritis with lung involvement [Churg-Strauss]
## 14210 Juvenile polyarteritis
## 14211 Mucocutaneous lymph node syndrome [Kawasaki]
## 14212 Other conditions related to polyarteritis nodosa
## 14213 Hypersensitivity angiitis
## 14214 Thrombotic microangiopathy
## 14215 Lethal midline granuloma
## 14216 Wegener's granulomatosis without renal involvement
## 14217 Wegener's granulomatosis with renal involvement
## 14218 Aortic arch syndrome [Takayasu]
## 14219 Giant cell arteritis with polymyalgia rheumatica
## 14220 Other giant cell arteritis
## 14221 Microscopic polyangiitis
## 14222 Other specified necrotizing vasculopathies
## 14223 Necrotizing vasculopathy, unspecified
## 14224 Drug-induced systemic lupus erythematosus
## 14225 Systemic lupus erythematosus, organ or system involvement unspecified
## 14226 Endocarditis in systemic lupus erythematosus
## 14227 Pericarditis in systemic lupus erythematosus
## 14228 Lung involvement in systemic lupus erythematosus
## 14229 Glomerular disease in systemic lupus erythematosus
## 14230 Tubulo-interstitial nephropathy in systemic lupus erythematosus
## 14231 Other organ or system involvement in systemic lupus erythematosus
## 14232 Other forms of systemic lupus erythematosus
## 14233 Systemic lupus erythematosus, unspecified
## 14234 Juvenile dermatomyositis, organ involvement unspecified
## 14235 Juvenile dermatomyositis with respiratory involvement
## 14236 Juvenile dermatomyositis with myopathy
## 14237 Juvenile dermatomyositis without myopathy
## 14238 Juvenile dermatomyositis with other organ involvement
## 14239 Other dermatomyositis, organ involvement unspecified
## 14240 Other dermatomyositis with respiratory involvement
## 14241 Other dermatomyositis with myopathy
## 14242 Other dermatomyositis without myopathy
## 14243 Other dermatomyositis with other organ involvement
## 14244 Polymyositis, organ involvement unspecified
## 14245 Polymyositis with respiratory involvement
## 14246 Polymyositis with myopathy
## 14247 Polymyositis with other organ involvement
## 14248 Dermatopolymyositis, unspecified, organ involvement unspecified
## 14249 Dermatopolymyositis, unspecified with respiratory involvement
## 14250 Dermatopolymyositis, unspecified with myopathy
## 14251 Dermatopolymyositis, unspecified without myopathy
## 14252 Dermatopolymyositis, unspecified with other organ involvement
## 14253 Progressive systemic sclerosis
## 14254 CR(E)ST syndrome
## 14255 Systemic sclerosis induced by drug and chemical
## 14256 Systemic sclerosis with lung involvement
## 14257 Systemic sclerosis with myopathy
## 14258 Systemic sclerosis with polyneuropathy
## 14259 Other systemic sclerosis
## 14260 Systemic sclerosis, unspecified
## 14261 Sicca syndrome, unspecified
## 14262 Sicca syndrome with keratoconjunctivitis
## 14263 Sicca syndrome with lung involvement
## 14264 Sicca syndrome with myopathy
## 14265 Sicca syndrome with tubulo-interstitial nephropathy
## 14266 Sicca syndrome with other organ involvement
## 14267 Other overlap syndromes
## 14268 Behcet's disease
## 14269 Polymyalgia rheumatica
## 14270 Diffuse (eosinophilic) fasciitis
## 14271 Multifocal fibrosclerosis
## 14272 Relapsing panniculitis [Weber-Christian]
## 14273 Hypermobility syndrome
## 14274 Other specified systemic involvement of connective tissue
## 14275 Systemic involvement of connective tissue, unspecified
## 14276 Dermato(poly)myositis in neoplastic disease
## 14277 Arthropathy in neoplastic disease
## 14278 Hemophilic arthropathy
## 14279 Arthropathy in other blood disorders
## 14280 Arthropathy in hypersensitivity reactions classified elsewhere
## 14281 Systemic disorders of connective tissue in other diseases classified elsewhere
## 14282 Postural kyphosis, site unspecified
## 14283 Postural kyphosis, cervicothoracic region
## 14284 Postural kyphosis, thoracic region
## 14285 Postural kyphosis, thoracolumbar region
## 14286 Other secondary kyphosis, site unspecified
## 14287 Other secondary kyphosis, cervical region
## 14288 Other secondary kyphosis, cervicothoracic region
## 14289 Other secondary kyphosis, thoracic region
## 14290 Other secondary kyphosis, thoracolumbar region
## 14291 Unspecified kyphosis, cervical region
## 14292 Unspecified kyphosis, cervicothoracic region
## 14293 Unspecified kyphosis, thoracic region
## 14294 Unspecified kyphosis, thoracolumbar region
## 14295 Unspecified kyphosis, site unspecified
## 14296 Other kyphosis, cervical region
## 14297 Other kyphosis, cervicothoracic region
## 14298 Other kyphosis, thoracic region
## 14299 Other kyphosis, thoracolumbar region
## 14300 Other kyphosis, site unspecified
## 14301 Flatback syndrome, site unspecified
## 14302 Flatback syndrome, thoracolumbar region
## 14303 Flatback syndrome, lumbar region
## 14304 Flatback syndrome, lumbosacral region
## 14305 Postural lordosis, site unspecified
## 14306 Postural lordosis, thoracolumbar region
## 14307 Postural lordosis, lumbar region
## 14308 Postural lordosis, lumbosacral region
## 14309 Lordosis, unspecified, site unspecified
## 14310 Lordosis, unspecified, thoracolumbar region
## 14311 Lordosis, unspecified, lumbar region
## 14312 Lordosis, unspecified, lumbosacral region
## 14313 Infantile idiopathic scoliosis, site unspecified
## 14314 Infantile idiopathic scoliosis, cervical region
## 14315 Infantile idiopathic scoliosis, cervicothoracic region
## 14316 Infantile idiopathic scoliosis, thoracic region
## 14317 Infantile idiopathic scoliosis, thoracolumbar region
## 14318 Infantile idiopathic scoliosis, lumbar region
## 14319 Infantile idiopathic scoliosis, lumbosacral region
## 14320 Infantile idiopathic scoliosis, sacral and sacrococcygeal region
## 14321 Juvenile idiopathic scoliosis, cervical region
## 14322 Juvenile idiopathic scoliosis, cervicothoracic region
## 14323 Juvenile idiopathic scoliosis, thoracic region
## 14324 Juvenile idiopathic scoliosis, thoracolumbar region
## 14325 Juvenile idiopathic scoliosis, lumbar region
## 14326 Juvenile idiopathic scoliosis, lumbosacral region
## 14327 Juvenile idiopathic scoliosis, site unspecified
## 14328 Adolescent idiopathic scoliosis, cervical region
## 14329 Adolescent idiopathic scoliosis, cervicothoracic region
## 14330 Adolescent idiopathic scoliosis, thoracic region
## 14331 Adolescent idiopathic scoliosis, thoracolumbar region
## 14332 Adolescent idiopathic scoliosis, lumbar region
## 14333 Adolescent idiopathic scoliosis, lumbosacral region
## 14334 Adolescent idiopathic scoliosis, site unspecified
## 14335 Other idiopathic scoliosis, site unspecified
## 14336 Other idiopathic scoliosis, cervical region
## 14337 Other idiopathic scoliosis, cervicothoracic region
## 14338 Other idiopathic scoliosis, thoracic region
## 14339 Other idiopathic scoliosis, thoracolumbar region
## 14340 Other idiopathic scoliosis, lumbar region
## 14341 Other idiopathic scoliosis, lumbosacral region
## 14342 Thoracogenic scoliosis, site unspecified
## 14343 Thoracogenic scoliosis, thoracic region
## 14344 Thoracogenic scoliosis, thoracolumbar region
## 14345 Neuromuscular scoliosis, site unspecified
## 14346 Neuromuscular scoliosis, occipito-atlanto-axial region
## 14347 Neuromuscular scoliosis, cervical region
## 14348 Neuromuscular scoliosis, cervicothoracic region
## 14349 Neuromuscular scoliosis, thoracic region
## 14350 Neuromuscular scoliosis, thoracolumbar region
## 14351 Neuromuscular scoliosis, lumbar region
## 14352 Neuromuscular scoliosis, lumbosacral region
## 14353 Other secondary scoliosis, site unspecified
## 14354 Other secondary scoliosis, cervical region
## 14355 Other secondary scoliosis, cervicothoracic region
## 14356 Other secondary scoliosis, thoracic region
## 14357 Other secondary scoliosis, thoracolumbar region
## 14358 Other secondary scoliosis, lumbar region
## 14359 Other secondary scoliosis, lumbosacral region
## 14360 Other forms of scoliosis, site unspecified
## 14361 Other forms of scoliosis, cervical region
## 14362 Other forms of scoliosis, cervicothoracic region
## 14363 Other forms of scoliosis, thoracic region
## 14364 Other forms of scoliosis, thoracolumbar region
## 14365 Other forms of scoliosis, lumbar region
## 14366 Other forms of scoliosis, lumbosacral region
## 14367 Scoliosis, unspecified
## 14368 Juvenile osteochondrosis of spine, site unspecified
## 14369 Juvenile osteochondrosis of spine, occipito-atlanto-axial region
## 14370 Juvenile osteochondrosis of spine, cervical region
## 14371 Juvenile osteochondrosis of spine, cervicothoracic region
## 14372 Juvenile osteochondrosis of spine, thoracic region
## 14373 Juvenile osteochondrosis of spine, thoracolumbar region
## 14374 Juvenile osteochondrosis of spine, lumbar region
## 14375 Juvenile osteochondrosis of spine, lumbosacral region
## 14376 Juvenile osteochondrosis of spine, sacral and sacrococcygeal region
## 14377 Juvenile osteochondrosis of spine, multiple sites in spine
## 14378 Adult osteochondrosis of spine, site unspecified
## 14379 Adult osteochondrosis of spine, occipito-atlanto-axial region
## 14380 Adult osteochondrosis of spine, cervical region
## 14381 Adult osteochondrosis of spine, cervicothoracic region
## 14382 Adult osteochondrosis of spine, thoracic region
## 14383 Adult osteochondrosis of spine, thoracolumbar region
## 14384 Adult osteochondrosis of spine, lumbar region
## 14385 Adult osteochondrosis of spine, lumbosacral region
## 14386 Adult osteochondrosis of spine, sacral and sacrococcygeal region
## 14387 Adult osteochondrosis of spine, multiple sites in spine
## 14388 Spinal osteochondrosis, unspecified
## 14389 Spondylolysis, site unspecified
## 14390 Spondylolysis, occipito-atlanto-axial region
## 14391 Spondylolysis, cervical region
## 14392 Spondylolysis, cervicothoracic region
## 14393 Spondylolysis, thoracic region
## 14394 Spondylolysis, thoracolumbar region
## 14395 Spondylolysis, lumbar region
## 14396 Spondylolysis, lumbosacral region
## 14397 Spondylolysis, sacral and sacrococcygeal region
## 14398 Spondylolysis, multiple sites in spine
## 14399 Spondylolisthesis, site unspecified
## 14400 Spondylolisthesis, occipito-atlanto-axial region
## 14401 Spondylolisthesis, cervical region
## 14402 Spondylolisthesis, cervicothoracic region
## 14403 Spondylolisthesis, thoracic region
## 14404 Spondylolisthesis, thoracolumbar region
## 14405 Spondylolisthesis, lumbar region
## 14406 Spondylolisthesis, lumbosacral region
## 14407 Spondylolisthesis, sacral and sacrococcygeal region
## 14408 Spondylolisthesis, multiple sites in spine
## 14409 Fusion of spine, site unspecified
## 14410 Fusion of spine, occipito-atlanto-axial region
## 14411 Fusion of spine, cervical region
## 14412 Fusion of spine, cervicothoracic region
## 14413 Fusion of spine, thoracic region
## 14414 Fusion of spine, thoracolumbar region
## 14415 Fusion of spine, lumbar region
## 14416 Fusion of spine, lumbosacral region
## 14417 Fusion of spine, sacral and sacrococcygeal region
## 14418 Recurrent atlantoaxial dislocation with myelopathy
## 14419 Other recurrent atlantoaxial dislocation
## 14420 Other recurrent vertebral dislocation, cervical region
## 14421 Other recurrent vertebral dislocation, cervicothoracic region
## 14422 Other recurrent vertebral dislocation, thoracic region
## 14423 Other recurrent vertebral dislocation, thoracolumbar region
## 14424 Other recurrent vertebral dislocation, lumbar region
## 14425 Other recurrent vertebral dislocation, lumbosacral region
## 14426 Other recurrent vertebral dislocation, sacral and sacrococcygeal region
## 14427 Other recurrent vertebral dislocation, site unspecified
## 14428 Torticollis
## 14429 Other specified deforming dorsopathies, occipito-atlanto-axial region
## 14430 Other specified deforming dorsopathies, cervical region
## 14431 Other specified deforming dorsopathies, cervicothoracic region
## 14432 Other specified deforming dorsopathies, thoracic region
## 14433 Other specified deforming dorsopathies, thoracolumbar region
## 14434 Other specified deforming dorsopathies, lumbar region
## 14435 Other specified deforming dorsopathies, lumbosacral region
## 14436 Other specified deforming dorsopathies, sacral and sacrococcygeal region
## 14437 Other specified deforming dorsopathies, site unspecified
## 14438 Deforming dorsopathy, unspecified
## 14439 Ankylosing spondylitis of multiple sites in spine
## 14440 Ankylosing spondylitis of occipito-atlanto-axial region
## 14441 Ankylosing spondylitis of cervical region
## 14442 Ankylosing spondylitis of cervicothoracic region
## 14443 Ankylosing spondylitis of thoracic region
## 14444 Ankylosing spondylitis of thoracolumbar region
## 14445 Ankylosing spondylitis lumbar region
## 14446 Ankylosing spondylitis of lumbosacral region
## 14447 Ankylosing spondylitis sacral and sacrococcygeal region
## 14448 Ankylosing spondylitis of unspecified sites in spine
## 14449 Spinal enthesopathy, site unspecified
## 14450 Spinal enthesopathy, occipito-atlanto-axial region
## 14451 Spinal enthesopathy, cervical region
## 14452 Spinal enthesopathy, cervicothoracic region
## 14453 Spinal enthesopathy, thoracic region
## 14454 Spinal enthesopathy, thoracolumbar region
## 14455 Spinal enthesopathy, lumbar region
## 14456 Spinal enthesopathy, lumbosacral region
## 14457 Spinal enthesopathy, sacral and sacrococcygeal region
## 14458 Spinal enthesopathy, multiple sites in spine
## 14459 Sacroiliitis, not elsewhere classified
## 14460 Osteomyelitis of vertebra, site unspecified
## 14461 Osteomyelitis of vertebra, occipito-atlanto-axial region
## 14462 Osteomyelitis of vertebra, cervical region
## 14463 Osteomyelitis of vertebra, cervicothoracic region
## 14464 Osteomyelitis of vertebra, thoracic region
## 14465 Osteomyelitis of vertebra, thoracolumbar region
## 14466 Osteomyelitis of vertebra, lumbar region
## 14467 Osteomyelitis of vertebra, lumbosacral region
## 14468 Osteomyelitis of vertebra, sacral and sacrococcygeal region
## 14469 Infection of intervertebral disc (pyogenic), site unspecified
## 14470 Infection of intervertebral disc (pyogenic), occipito-atlanto-axial region
## 14471 Infection of intervertebral disc (pyogenic), cervical region
## 14472 Infection of intervertebral disc (pyogenic), cervicothoracic region
## 14473 Infection of intervertebral disc (pyogenic), thoracic region
## 14474 Infection of intervertebral disc (pyogenic), thoracolumbar region
## 14475 Infection of intervertebral disc (pyogenic), lumbar region
## 14476 Infection of intervertebral disc (pyogenic), lumbosacral region
## 14477 Infection of intervertebral disc (pyogenic), sacral and sacrococcygeal region
## 14478 Infection of intervertebral disc (pyogenic), multiple sites in spine
## 14479 Discitis, unspecified, site unspecified
## 14480 Discitis, unspecified, occipito-atlanto-axial region
## 14481 Discitis, unspecified, cervical region
## 14482 Discitis, unspecified, cervicothoracic region
## 14483 Discitis, unspecified, thoracic region
## 14484 Discitis, unspecified, thoracolumbar region
## 14485 Discitis, unspecified, lumbar region
## 14486 Discitis, unspecified, lumbosacral region
## 14487 Discitis, unspecified, sacral and sacrococcygeal region
## 14488 Discitis, unspecified, multiple sites in spine
## 14489 Other infective spondylopathies, site unspecified
## 14490 Other infective spondylopathies, occipito-atlanto-axial region
## 14491 Other infective spondylopathies, cervical region
## 14492 Other infective spondylopathies, cervicothoracic region
## 14493 Other infective spondylopathies, thoracic region
## 14494 Other infective spondylopathies, thoracolumbar region
## 14495 Other infective spondylopathies, lumbar region
## 14496 Other infective spondylopathies, lumbosacral region
## 14497 Other infective spondylopathies, sacral and sacrococcygeal region
## 14498 Other infective spondylopathies, multiple sites in spine
## 14499 Other specified inflammatory spondylopathies, site unspecified
## 14500 Other specified inflammatory spondylopathies, occipito-atlanto-axial region
## 14501 Other specified inflammatory spondylopathies, cervical region
## 14502 Other specified inflammatory spondylopathies, cervicothoracic region
## 14503 Other specified inflammatory spondylopathies, thoracic region
## 14504 Other specified inflammatory spondylopathies, thoracolumbar region
## 14505 Other specified inflammatory spondylopathies, lumbar region
## 14506 Other specified inflammatory spondylopathies, lumbosacral region
## 14507 Other specified inflammatory spondylopathies, sacral and sacrococcygeal region
## 14508 Other specified inflammatory spondylopathies, multiple sites in spine
## 14509 Unspecified inflammatory spondylopathy, site unspecified
## 14510 Unspecified inflammatory spondylopathy, occipito-atlanto-axial region
## 14511 Unspecified inflammatory spondylopathy, cervical region
## 14512 Unspecified inflammatory spondylopathy, cervicothoracic region
## 14513 Unspecified inflammatory spondylopathy, thoracic region
## 14514 Unspecified inflammatory spondylopathy, thoracolumbar region
## 14515 Unspecified inflammatory spondylopathy, lumbar region
## 14516 Unspecified inflammatory spondylopathy, lumbosacral region
## 14517 Unspecified inflammatory spondylopathy, sacral and sacrococcygeal region
## 14518 Unspecified inflammatory spondylopathy, multiple sites in spine
## 14519 Anterior spinal artery compression syndromes, occipito-atlanto-axial region
## 14520 Anterior spinal artery compression syndromes, cervical region
## 14521 Anterior spinal artery compression syndromes, cervicothoracic region
## 14522 Anterior spinal artery compression syndromes, thoracic region
## 14523 Anterior spinal artery compression syndromes, thoracolumbar region
## 14524 Anterior spinal artery compression syndromes, lumbar region
## 14525 Anterior spinal artery compression syndromes, site unspecified
## 14526 Vertebral artery compression syndromes, occipito-atlanto-axial region
## 14527 Vertebral artery compression syndromes, cervical region
## 14528 Vertebral artery compression syndromes, site unspecified
## 14529 Other spondylosis with myelopathy, site unspecified
## 14530 Other spondylosis with myelopathy, occipito-atlanto-axial region
## 14531 Other spondylosis with myelopathy, cervical region
## 14532 Other spondylosis with myelopathy, cervicothoracic region
## 14533 Other spondylosis with myelopathy, thoracic region
## 14534 Other spondylosis with myelopathy, thoracolumbar region
## 14535 Other spondylosis with myelopathy, lumbar region
## 14536 Other spondylosis with radiculopathy, site unspecified
## 14537 Other spondylosis with radiculopathy, occipito-atlanto-axial region
## 14538 Other spondylosis with radiculopathy, cervical region
## 14539 Other spondylosis with radiculopathy, cervicothoracic region
## 14540 Other spondylosis with radiculopathy, thoracic region
## 14541 Other spondylosis with radiculopathy, thoracolumbar region
## 14542 Other spondylosis with radiculopathy, lumbar region
## 14543 Other spondylosis with radiculopathy, lumbosacral region
## 14544 Other spondylosis with radiculopathy, sacral and sacrococcygeal region
## 14545 Spondylosis without myelopathy or radiculopathy, occipito-atlanto-axial region
## 14546 Spondylosis without myelopathy or radiculopathy, cervical region
## 14547 Spondylosis without myelopathy or radiculopathy, cervicothoracic region
## 14548 Spondylosis without myelopathy or radiculopathy, thoracic region
## 14549 Spondylosis without myelopathy or radiculopathy, thoracolumbar region
## 14550 Spondylosis without myelopathy or radiculopathy, lumbar region
## 14551 Spondylosis without myelopathy or radiculopathy, lumbosacral region
## 14552 Spondylosis without myelopathy or radiculopathy, sacral and sacrococcygeal region
## 14553 Spondylosis without myelopathy or radiculopathy, site unspecified
## 14554 Other spondylosis, occipito-atlanto-axial region
## 14555 Other spondylosis, cervical region
## 14556 Other spondylosis, cervicothoracic region
## 14557 Other spondylosis, thoracic region
## 14558 Other spondylosis, thoracolumbar region
## 14559 Other spondylosis, lumbar region
## 14560 Other spondylosis, lumbosacral region
## 14561 Other spondylosis, sacral and sacrococcygeal region
## 14562 Other spondylosis, site unspecified
## 14563 Spondylosis, unspecified
## 14564 Spinal stenosis, site unspecified
## 14565 Spinal stenosis, occipito-atlanto-axial region
## 14566 Spinal stenosis, cervical region
## 14567 Spinal stenosis, cervicothoracic region
## 14568 Spinal stenosis, thoracic region
## 14569 Spinal stenosis, thoracolumbar region
## 14570 Spinal stenosis, lumbar region without neurogenic claudication
## 14571 Spinal stenosis, lumbar region with neurogenic claudication
## 14572 Spinal stenosis, lumbosacral region
## 14573 Spinal stenosis, sacral and sacrococcygeal region
## 14574 Ankylosing hyperostosis [Forestier], site unspecified
## 14575 Ankylosing hyperostosis [Forestier], occipito-atlanto-axial region
## 14576 Ankylosing hyperostosis [Forestier], cervical region
## 14577 Ankylosing hyperostosis [Forestier], cervicothoracic region
## 14578 Ankylosing hyperostosis [Forestier], thoracic region
## 14579 Ankylosing hyperostosis [Forestier], thoracolumbar region
## 14580 Ankylosing hyperostosis [Forestier], lumbar region
## 14581 Ankylosing hyperostosis [Forestier], lumbosacral region
## 14582 Ankylosing hyperostosis [Forestier], sacral and sacrococcygeal region
## 14583 Ankylosing hyperostosis [Forestier], multiple sites in spine
## 14584 Kissing spine, site unspecified
## 14585 Kissing spine, occipito-atlanto-axial region
## 14586 Kissing spine, cervical region
## 14587 Kissing spine, cervicothoracic region
## 14588 Kissing spine, thoracic region
## 14589 Kissing spine, thoracolumbar region
## 14590 Kissing spine, lumbar region
## 14591 Kissing spine, lumbosacral region
## 14592 Traumatic spondylopathy, site unspecified
## 14593 Traumatic spondylopathy, occipito-atlanto-axial region
## 14594 Traumatic spondylopathy, cervical region
## 14595 Traumatic spondylopathy, cervicothoracic region
## 14596 Traumatic spondylopathy, thoracic region
## 14597 Traumatic spondylopathy, thoracolumbar region
## 14598 Traumatic spondylopathy, lumbar region
## 14599 Traumatic spondylopathy, lumbosacral region
## 14600 Traumatic spondylopathy, sacral and sacrococcygeal region
## 14601 Fatigue fracture of vertebra, site unspecified, initial encounter for fracture
## 14602 Fatigue fracture of vertebra, site unspecified, subsequent encounter for fracture with routine healing
## 14603 Fatigue fracture of vertebra, site unspecified, subsequent encounter for fracture with delayed healing
## 14604 Fatigue fracture of vertebra, site unspecified, sequela of fracture
## 14605 Fatigue fracture of vertebra, occipito-atlanto-axial region, initial encounter for fracture
## 14606 Fatigue fracture of vertebra, occipito-atlanto-axial region, subsequent encounter for fracture with routine healing
## 14607 Fatigue fracture of vertebra, occipito-atlanto-axial region, subsequent encounter for fracture with delayed healing
## 14608 Fatigue fracture of vertebra, occipito-atlanto-axial region, sequela of fracture
## 14609 Fatigue fracture of vertebra, cervical region, initial encounter for fracture
## 14610 Fatigue fracture of vertebra, cervical region, subsequent encounter for fracture with routine healing
## 14611 Fatigue fracture of vertebra, cervical region, subsequent encounter for fracture with delayed healing
## 14612 Fatigue fracture of vertebra, cervical region, sequela of fracture
## 14613 Fatigue fracture of vertebra, cervicothoracic region, initial encounter for fracture
## 14614 Fatigue fracture of vertebra, cervicothoracic region, subsequent encounter for fracture with routine healing
## 14615 Fatigue fracture of vertebra, cervicothoracic region, subsequent encounter for fracture with delayed healing
## 14616 Fatigue fracture of vertebra, cervicothoracic region, sequela of fracture
## 14617 Fatigue fracture of vertebra, thoracic region, initial encounter for fracture
## 14618 Fatigue fracture of vertebra, thoracic region, subsequent encounter for fracture with routine healing
## 14619 Fatigue fracture of vertebra, thoracic region, subsequent encounter for fracture with delayed healing
## 14620 Fatigue fracture of vertebra, thoracic region, sequela of fracture
## 14621 Fatigue fracture of vertebra, thoracolumbar region, initial encounter for fracture
## 14622 Fatigue fracture of vertebra, thoracolumbar region, subsequent encounter for fracture with routine healing
## 14623 Fatigue fracture of vertebra, thoracolumbar region, subsequent encounter for fracture with delayed healing
## 14624 Fatigue fracture of vertebra, thoracolumbar region, sequela of fracture
## 14625 Fatigue fracture of vertebra, lumbar region, initial encounter for fracture
## 14626 Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with routine healing
## 14627 Fatigue fracture of vertebra, lumbar region, subsequent encounter for fracture with delayed healing
## 14628 Fatigue fracture of vertebra, lumbar region, sequela of fracture
## 14629 Fatigue fracture of vertebra, lumbosacral region, initial encounter for fracture
## 14630 Fatigue fracture of vertebra, lumbosacral region, subsequent encounter for fracture with routine healing
## 14631 Fatigue fracture of vertebra, lumbosacral region, subsequent encounter for fracture with delayed healing
## 14632 Fatigue fracture of vertebra, lumbosacral region, sequela of fracture
## 14633 Fatigue fracture of vertebra, sacral and sacrococcygeal region, initial encounter for fracture
## 14634 Fatigue fracture of vertebra, sacral and sacrococcygeal region, subsequent encounter for fracture with routine healing
## 14635 Fatigue fracture of vertebra, sacral and sacrococcygeal region, subsequent encounter for fracture with delayed healing
## 14636 Fatigue fracture of vertebra, sacral and sacrococcygeal region, sequela of fracture
## 14637 Collapsed vertebra, not elsewhere classified, site unspecified, initial encounter for fracture
## 14638 Collapsed vertebra, not elsewhere classified, site unspecified, subsequent encounter for fracture with routine healing
## 14639 Collapsed vertebra, not elsewhere classified, site unspecified, subsequent encounter for fracture with delayed healing
## 14640 Collapsed vertebra, not elsewhere classified, site unspecified, sequela of fracture
## 14641 Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, initial encounter for fracture
## 14642 Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, subsequent encounter for fracture with routine healing
## 14643 Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, subsequent encounter for fracture with delayed healing
## 14644 Collapsed vertebra, not elsewhere classified, occipito-atlanto-axial region, sequela of fracture
## 14645 Collapsed vertebra, not elsewhere classified, cervical region, initial encounter for fracture
## 14646 Collapsed vertebra, not elsewhere classified, cervical region, subsequent encounter for fracture with routine healing
## 14647 Collapsed vertebra, not elsewhere classified, cervical region, subsequent encounter for fracture with delayed healing
## 14648 Collapsed vertebra, not elsewhere classified, cervical region, sequela of fracture
## 14649 Collapsed vertebra, not elsewhere classified, cervicothoracic region, initial encounter for fracture
## 14650 Collapsed vertebra, not elsewhere classified, cervicothoracic region, subsequent encounter for fracture with routine healing
## 14651 Collapsed vertebra, not elsewhere classified, cervicothoracic region, subsequent encounter for fracture with delayed healing
## 14652 Collapsed vertebra, not elsewhere classified, cervicothoracic region, sequela of fracture
## 14653 Collapsed vertebra, not elsewhere classified, thoracic region, initial encounter for fracture
## 14654 Collapsed vertebra, not elsewhere classified, thoracic region, subsequent encounter for fracture with routine healing
## 14655 Collapsed vertebra, not elsewhere classified, thoracic region, subsequent encounter for fracture with delayed healing
## 14656 Collapsed vertebra, not elsewhere classified, thoracic region, sequela of fracture
## 14657 Collapsed vertebra, not elsewhere classified, thoracolumbar region, initial encounter for fracture
## 14658 Collapsed vertebra, not elsewhere classified, thoracolumbar region, subsequent encounter for fracture with routine healing
## 14659 Collapsed vertebra, not elsewhere classified, thoracolumbar region, subsequent encounter for fracture with delayed healing
## 14660 Collapsed vertebra, not elsewhere classified, thoracolumbar region, sequela of fracture
## 14661 Collapsed vertebra, not elsewhere classified, lumbar region, initial encounter for fracture
## 14662 Collapsed vertebra, not elsewhere classified, lumbar region, subsequent encounter for fracture with routine healing
## 14663 Collapsed vertebra, not elsewhere classified, lumbar region, subsequent encounter for fracture with delayed healing
## 14664 Collapsed vertebra, not elsewhere classified, lumbar region, sequela of fracture
## 14665 Collapsed vertebra, not elsewhere classified, lumbosacral region, initial encounter for fracture
## 14666 Collapsed vertebra, not elsewhere classified, lumbosacral region, subsequent encounter for fracture with routine healing
## 14667 Collapsed vertebra, not elsewhere classified, lumbosacral region, subsequent encounter for fracture with delayed healing
## 14668 Collapsed vertebra, not elsewhere classified, lumbosacral region, sequela of fracture
## 14669 Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, initial encounter for fracture
## 14670 Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, subsequent encounter for fracture with routine healing
## 14671 Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, subsequent encounter for fracture with delayed healing
## 14672 Collapsed vertebra, not elsewhere classified, sacral and sacrococcygeal region, sequela of fracture
## 14673 Other specified spondylopathies, occipito-atlanto-axial region
## 14674 Other specified spondylopathies, cervical region
## 14675 Other specified spondylopathies, cervicothoracic region
## 14676 Other specified spondylopathies, thoracic region
## 14677 Other specified spondylopathies, thoracolumbar region
## 14678 Other specified spondylopathies, lumbar region
## 14679 Other specified spondylopathies, lumbosacral region
## 14680 Other specified spondylopathies, sacral and sacrococcygeal region
## 14681 Other specified spondylopathies, site unspecified
## 14682 Spondylopathy, unspecified
## 14683 Spondylopathy in diseases classified elsewhere, site unspecified
## 14684 Spondylopathy in diseases classified elsewhere, occipito-atlanto-axial region
## 14685 Spondylopathy in diseases classified elsewhere, cervical region
## 14686 Spondylopathy in diseases classified elsewhere, cervicothoracic region
## 14687 Spondylopathy in diseases classified elsewhere, thoracic region
## 14688 Spondylopathy in diseases classified elsewhere, thoracolumbar region
## 14689 Spondylopathy in diseases classified elsewhere, lumbar region
## 14690 Spondylopathy in diseases classified elsewhere, lumbosacral region
## 14691 Spondylopathy in diseases classified elsewhere, sacral and sacrococcygeal region
## 14692 Spondylopathy in diseases classified elsewhere, multiple sites in spine
## 14693 Cervical disc disorder with myelopathy, unspecified cervical region
## 14694 Cervical disc disorder with myelopathy, high cervical region
## 14695 Cervical disc disorder with myelopathy, mid-cervical region, unspecified level
## 14696 Cervical disc disorder at C4-C5 level with myelopathy
## 14697 Cervical disc disorder at C5-C6 level with myelopathy
## 14698 Cervical disc disorder at C6-C7 level with myelopathy
## 14699 Cervical disc disorder with myelopathy, cervicothoracic region
## 14700 Cervical disc disorder with radiculopathy, unspecified cervical region
## 14701 Cervical disc disorder with radiculopathy, high cervical region
## 14702 Mid-cervical disc disorder, unspecified level
## 14703 Cervical disc disorder at C4-C5 level with radiculopathy
## 14704 Cervical disc disorder at C5-C6 level with radiculopathy
## 14705 Cervical disc disorder at C6-C7 level with radiculopathy
## 14706 Cervical disc disorder with radiculopathy, cervicothoracic region
## 14707 Other cervical disc displacement, unspecified cervical region
## 14708 Other cervical disc displacement, high cervical region
## 14709 Other cervical disc displacement, mid-cervical region, unspecified level
## 14710 Other cervical disc displacement at C4-C5 level
## 14711 Other cervical disc displacement at C5-C6 level
## 14712 Other cervical disc displacement at C6-C7 level
## 14713 Other cervical disc displacement, cervicothoracic region
## 14714 Other cervical disc degeneration, unspecified cervical region
## 14715 Other cervical disc degeneration, high cervical region
## 14716 Other cervical disc degeneration, mid-cervical region, unspecified level
## 14717 Other cervical disc degeneration at C4-C5 level
## 14718 Other cervical disc degeneration at C5-C6 level
## 14719 Other cervical disc degeneration at C6-C7 level
## 14720 Other cervical disc degeneration, cervicothoracic region
## 14721 Other cervical disc disorders, unspecified cervical region
## 14722 Other cervical disc disorders, high cervical region
## 14723 Other cervical disc disorders, mid-cervical region, unspecified level
## 14724 Other cervical disc disorders at C4-C5 level
## 14725 Other cervical disc disorders at C5-C6 level
## 14726 Other cervical disc disorders at C6-C7 level
## 14727 Other cervical disc disorders, cervicothoracic region
## 14728 Cervical disc disorder, unspecified, unspecified cervical region
## 14729 Cervical disc disorder, unspecified, high cervical region
## 14730 Unspecified cervical disc disorder, mid-cervical region, unspecified level
## 14731 Unspecified cervical disc disorder at C4-C5 level
## 14732 Unspecified cervical disc disorder at C5-C6 level
## 14733 Unspecified cervical disc disorder at C6-C7 level
## 14734 Cervical disc disorder, unspecified, cervicothoracic region
## 14735 Intervertebral disc disorders with myelopathy, thoracic region
## 14736 Intervertebral disc disorders with myelopathy, thoracolumbar region
## 14737 Intervertebral disc disorders with myelopathy, lumbar region
## 14738 Intervertebral disc disorders with radiculopathy, thoracic region
## 14739 Intervertebral disc disorders with radiculopathy, thoracolumbar region
## 14740 Intervertebral disc disorders with radiculopathy, lumbar region
## 14741 Intervertebral disc disorders with radiculopathy, lumbosacral region
## 14742 Other intervertebral disc displacement, thoracic region
## 14743 Other intervertebral disc displacement, thoracolumbar region
## 14744 Other intervertebral disc displacement, lumbar region
## 14745 Other intervertebral disc displacement, lumbosacral region
## 14746 Other intervertebral disc degeneration, thoracic region
## 14747 Other intervertebral disc degeneration, thoracolumbar region
## 14748 Other intervertebral disc degeneration, lumbar region
## 14749 Other intervertebral disc degeneration, lumbosacral region
## 14750 Schmorl's nodes, thoracic region
## 14751 Schmorl's nodes, thoracolumbar region
## 14752 Schmorl's nodes, lumbar region
## 14753 Schmorl's nodes, lumbosacral region
## 14754 Other intervertebral disc disorders, thoracic region
## 14755 Other intervertebral disc disorders, thoracolumbar region
## 14756 Other intervertebral disc disorders, lumbar region
## 14757 Other intervertebral disc disorders, lumbosacral region
## 14758 Unspecified thoracic, thoracolumbar and lumbosacral intervertebral disc disorder
## 14759 Cervicocranial syndrome
## 14760 Cervicobrachial syndrome
## 14761 Spinal instabilities, occipito-atlanto-axial region
## 14762 Spinal instabilities, cervical region
## 14763 Spinal instabilities, cervicothoracic region
## 14764 Spinal instabilities, thoracic region
## 14765 Spinal instabilities, thoracolumbar region
## 14766 Spinal instabilities, lumbar region
## 14767 Spinal instabilities, lumbosacral region
## 14768 Spinal instabilities, sacral and sacrococcygeal region
## 14769 Spinal instabilities, site unspecified
## 14770 Sacrococcygeal disorders, not elsewhere classified
## 14771 Other specified dorsopathies, site unspecified
## 14772 Other specified dorsopathies, occipito-atlanto-axial region
## 14773 Other specified dorsopathies, cervical region
## 14774 Other specified dorsopathies, cervicothoracic region
## 14775 Other specified dorsopathies, thoracic region
## 14776 Other specified dorsopathies, thoracolumbar region
## 14777 Other specified dorsopathies, lumbar region
## 14778 Other specified dorsopathies, lumbosacral region
## 14779 Other specified dorsopathies, sacral and sacrococcygeal region
## 14780 Dorsopathy, unspecified
## 14781 Panniculitis affecting regions of neck and back, site unspecified
## 14782 Panniculitis affecting regions of neck and back, occipito-atlanto-axial region
## 14783 Panniculitis affecting regions of neck and back, cervical region
## 14784 Panniculitis affecting regions of neck and back, cervicothoracic region
## 14785 Panniculitis affecting regions of neck and back, thoracic region
## 14786 Panniculitis affecting regions of neck and back, thoracolumbar region
## 14787 Panniculitis affecting regions of neck and back, lumbar region
## 14788 Panniculitis affecting regions of neck and back, lumbosacral region
## 14789 Panniculitis affecting regions of neck and back, sacral and sacrococcygeal region
## 14790 Panniculitis affecting regions, neck and back, multiple sites in spine
## 14791 Radiculopathy, site unspecified
## 14792 Radiculopathy, occipito-atlanto-axial region
## 14793 Radiculopathy, cervical region
## 14794 Radiculopathy, cervicothoracic region
## 14795 Radiculopathy, thoracic region
## 14796 Radiculopathy, thoracolumbar region
## 14797 Radiculopathy, lumbar region
## 14798 Radiculopathy, lumbosacral region
## 14799 Radiculopathy, sacral and sacrococcygeal region
## 14800 Cervicalgia
## 14801 Sciatica, unspecified side
## 14802 Sciatica, right side
## 14803 Sciatica, left side
## 14804 Lumbago with sciatica, unspecified side
## 14805 Lumbago with sciatica, right side
## 14806 Lumbago with sciatica, left side
## 14807 Low back pain
## 14808 Pain in thoracic spine
## 14809 Occipital neuralgia
## 14810 Other dorsalgia
## 14811 Dorsalgia, unspecified
## 14812 Infective myositis, unspecified right arm
## 14813 Infective myositis, unspecified left arm
## 14814 Infective myositis, unspecified arm
## 14815 Infective myositis, unspecified right leg
## 14816 Infective myositis, unspecified left leg
## 14817 Infective myositis, unspecified leg
## 14818 Infective myositis, unspecified site
## 14819 Infective myositis, right shoulder
## 14820 Infective myositis, left shoulder
## 14821 Infective myositis, unspecified shoulder
## 14822 Infective myositis, right upper arm
## 14823 Infective myositis, left upper arm
## 14824 Infective myositis, unspecified upper arm
## 14825 Infective myositis, right forearm
## 14826 Infective myositis, left forearm
## 14827 Infective myositis, unspecified forearm
## 14828 Infective myositis, right hand
## 14829 Infective myositis, left hand
## 14830 Infective myositis, unspecified hand
## 14831 Infective myositis, right finger(s)
## 14832 Infective myositis, left finger(s)
## 14833 Infective myositis, unspecified finger(s)
## 14834 Infective myositis, right thigh
## 14835 Infective myositis, left thigh
## 14836 Infective myositis, unspecified thigh
## 14837 Infective myositis, right lower leg
## 14838 Infective myositis, left lower leg
## 14839 Infective myositis, unspecified lower leg
## 14840 Infective myositis, right ankle
## 14841 Infective myositis, left ankle
## 14842 Infective myositis, unspecified ankle
## 14843 Infective myositis, right foot
## 14844 Infective myositis, left foot
## 14845 Infective myositis, unspecified foot
## 14846 Infective myositis, right toe(s)
## 14847 Infective myositis, left toe(s)
## 14848 Infective myositis, unspecified toe(s)
## 14849 Infective myositis, other site
## 14850 Infective myositis, multiple sites
## 14851 Interstitial myositis of unspecified site
## 14852 Interstitial myositis, right shoulder
## 14853 Interstitial myositis, left shoulder
## 14854 Interstitial myositis, unspecified shoulder
## 14855 Interstitial myositis, right upper arm
## 14856 Interstitial myositis, left upper arm
## 14857 Interstitial myositis, unspecified upper arm
## 14858 Interstitial myositis, right forearm
## 14859 Interstitial myositis, left forearm
## 14860 Interstitial myositis, unspecified forearm
## 14861 Interstitial myositis, right hand
## 14862 Interstitial myositis, left hand
## 14863 Interstitial myositis, unspecified hand
## 14864 Interstitial myositis, right thigh
## 14865 Interstitial myositis, left thigh
## 14866 Interstitial myositis, unspecified thigh
## 14867 Interstitial myositis, right lower leg
## 14868 Interstitial myositis, left lower leg
## 14869 Interstitial myositis, unspecified lower leg
## 14870 Interstitial myositis, right ankle and foot
## 14871 Interstitial myositis, left ankle and foot
## 14872 Interstitial myositis, unspecified ankle and foot
## 14873 Interstitial myositis, other site
## 14874 Interstitial myositis, multiple sites
## 14875 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified site
## 14876 Foreign body granuloma of soft tissue, not elsewhere classified, right shoulder
## 14877 Foreign body granuloma of soft tissue, not elsewhere classified, left shoulder
## 14878 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified shoulder
## 14879 Foreign body granuloma of soft tissue, not elsewhere classified, right upper arm
## 14880 Foreign body granuloma of soft tissue, not elsewhere classified, left upper arm
## 14881 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified upper arm
## 14882 Foreign body granuloma of soft tissue, not elsewhere classified, right forearm
## 14883 Foreign body granuloma of soft tissue, not elsewhere classified, left forearm
## 14884 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified forearm
## 14885 Foreign body granuloma of soft tissue, not elsewhere classified, right hand
## 14886 Foreign body granuloma of soft tissue, not elsewhere classified, left hand
## 14887 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified hand
## 14888 Foreign body granuloma of soft tissue, not elsewhere classified, right thigh
## 14889 Foreign body granuloma of soft tissue, not elsewhere classified, left thigh
## 14890 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified thigh
## 14891 Foreign body granuloma of soft tissue, not elsewhere classified, right lower leg
## 14892 Foreign body granuloma of soft tissue, not elsewhere classified, left lower leg
## 14893 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified lower leg
## 14894 Foreign body granuloma of soft tissue, not elsewhere classified, right ankle and foot
## 14895 Foreign body granuloma of soft tissue, not elsewhere classified, left ankle and foot
## 14896 Foreign body granuloma of soft tissue, not elsewhere classified, unspecified ankle and foot
## 14897 Foreign body granuloma of soft tissue, not elsewhere classified, other site
## 14898 Other myositis, unspecified site
## 14899 Other myositis, right shoulder
## 14900 Other myositis, left shoulder
## 14901 Other myositis, unspecified shoulder
## 14902 Other myositis, right upper arm
## 14903 Other myositis, left upper arm
## 14904 Other myositis, unspecified upper arm
## 14905 Other myositis, right forearm
## 14906 Other myositis, left forearm
## 14907 Other myositis, unspecified forearm
## 14908 Other myositis, right hand
## 14909 Other myositis, left hand
## 14910 Other myositis, unspecified hand
## 14911 Other myositis, right thigh
## 14912 Other myositis, left thigh
## 14913 Other myositis, unspecified thigh
## 14914 Other myositis, right lower leg
## 14915 Other myositis, left lower leg
## 14916 Other myositis, unspecified lower leg
## 14917 Other myositis, right ankle and foot
## 14918 Other myositis, left ankle and foot
## 14919 Other myositis, unspecified ankle and foot
## 14920 Other myositis, other site
## 14921 Other myositis, multiple sites
## 14922 Myositis, unspecified
## 14923 Myositis ossificans traumatica, unspecified site
## 14924 Myositis ossificans traumatica, right shoulder
## 14925 Myositis ossificans traumatica, left shoulder
## 14926 Myositis ossificans traumatica, unspecified shoulder
## 14927 Myositis ossificans traumatica, right upper arm
## 14928 Myositis ossificans traumatica, left upper arm
## 14929 Myositis ossificans traumatica, unspecified upper arm
## 14930 Myositis ossificans traumatica, right forearm
## 14931 Myositis ossificans traumatica, left forearm
## 14932 Myositis ossificans traumatica, unspecified forearm
## 14933 Myositis ossificans traumatica, right hand
## 14934 Myositis ossificans traumatica, left hand
## 14935 Myositis ossificans traumatica, unspecified hand
## 14936 Myositis ossificans traumatica, right thigh
## 14937 Myositis ossificans traumatica, left thigh
## 14938 Myositis ossificans traumatica, unspecified thigh
## 14939 Myositis ossificans traumatica, right lower leg
## 14940 Myositis ossificans traumatica, left lower leg
## 14941 Myositis ossificans traumatica, unspecified lower leg
## 14942 Myositis ossificans traumatica, right ankle and foot
## 14943 Myositis ossificans traumatica, left ankle and foot
## 14944 Myositis ossificans traumatica, unspecified ankle and foot
## 14945 Myositis ossificans traumatica, other site
## 14946 Myositis ossificans traumatica, multiple sites
## 14947 Myositis ossificans progressiva, unspecified site
## 14948 Myositis ossificans progressiva, right shoulder
## 14949 Myositis ossificans progressiva, left shoulder
## 14950 Myositis ossificans progressiva, unspecified shoulder
## 14951 Myositis ossificans progressiva, right upper arm
## 14952 Myositis ossificans progressiva, left upper arm
## 14953 Myositis ossificans progressiva, unspecified arm
## 14954 Myositis ossificans progressiva, right forearm
## 14955 Myositis ossificans progressiva, left forearm
## 14956 Myositis ossificans progressiva, unspecified forearm
## 14957 Myositis ossificans progressiva, right hand
## 14958 Myositis ossificans progressiva, left hand
## 14959 Myositis ossificans progressiva, unspecified hand
## 14960 Myositis ossificans progressiva, right finger(s)
## 14961 Myositis ossificans progressiva, left finger(s)
## 14962 Myositis ossificans progressiva, unspecified finger(s)
## 14963 Myositis ossificans progressiva, right thigh
## 14964 Myositis ossificans progressiva, left thigh
## 14965 Myositis ossificans progressiva, unspecified thigh
## 14966 Myositis ossificans progressiva, right lower leg
## 14967 Myositis ossificans progressiva, left lower leg
## 14968 Myositis ossificans progressiva, unspecified lower leg
## 14969 Myositis ossificans progressiva, right ankle
## 14970 Myositis ossificans progressiva, left ankle
## 14971 Myositis ossificans progressiva, unspecified ankle
## 14972 Myositis ossificans progressiva, right foot
## 14973 Myositis ossificans progressiva, left foot
## 14974 Myositis ossificans progressiva, unspecified foot
## 14975 Myositis ossificans progressiva, right toe(s)
## 14976 Myositis ossificans progressiva, left toe(s)
## 14977 Myositis ossificans progressiva, unspecified toe(s)
## 14978 Myositis ossificans progressiva, other site
## 14979 Myositis ossificans progressiva, multiple sites
## 14980 Paralytic calcification and ossification of muscle, unspecified site
## 14981 Paralytic calcification and ossification of muscle, right shoulder
## 14982 Paralytic calcification and ossification of muscle, left shoulder
## 14983 Paralytic calcification and ossification of muscle, unspecified shoulder
## 14984 Paralytic calcification and ossification of muscle, right upper arm
## 14985 Paralytic calcification and ossification of muscle, left upper arm
## 14986 Paralytic calcification and ossification of muscle, unspecified upper arm
## 14987 Paralytic calcification and ossification of muscle, right forearm
## 14988 Paralytic calcification and ossification of muscle, left forearm
## 14989 Paralytic calcification and ossification of muscle, unspecified forearm
## 14990 Paralytic calcification and ossification of muscle, right hand
## 14991 Paralytic calcification and ossification of muscle, left hand
## 14992 Paralytic calcification and ossification of muscle, unspecified hand
## 14993 Paralytic calcification and ossification of muscle, right thigh
## 14994 Paralytic calcification and ossification of muscle, left thigh
## 14995 Paralytic calcification and ossification of muscle, unspecified thigh
## 14996 Paralytic calcification and ossification of muscle, right lower leg
## 14997 Paralytic calcification and ossification of muscle, left lower leg
## 14998 Paralytic calcification and ossification of muscle, unspecified lower leg
## 14999 Paralytic calcification and ossification of muscle, right ankle and foot
## 15000 Paralytic calcification and ossification of muscle, left ankle and foot
## 15001 Paralytic calcification and ossification of muscle, unspecified ankle and foot
## 15002 Paralytic calcification and ossification of muscle, other site
## 15003 Paralytic calcification and ossification of muscle, multiple sites
## 15004 Calcification and ossification of muscles associated with burns, unspecified site
## 15005 Calcification and ossification of muscles associated with burns, right shoulder
## 15006 Calcification and ossification of muscles associated with burns, left shoulder
## 15007 Calcification and ossification of muscles associated with burns, unspecified shoulder
## 15008 Calcification and ossification of muscles associated with burns, right upper arm
## 15009 Calcification and ossification of muscles associated with burns, left upper arm
## 15010 Calcification and ossification of muscles associated with burns, unspecified upper arm
## 15011 Calcification and ossification of muscles associated with burns, right forearm
## 15012 Calcification and ossification of muscles associated with burns, left forearm
## 15013 Calcification and ossification of muscles associated with burns, unspecified forearm
## 15014 Calcification and ossification of muscles associated with burns, right hand
## 15015 Calcification and ossification of muscles associated with burns, left hand
## 15016 Calcification and ossification of muscles associated with burns, unspecified hand
## 15017 Calcification and ossification of muscles associated with burns, right thigh
## 15018 Calcification and ossification of muscles associated with burns, left thigh
## 15019 Calcification and ossification of muscles associated with burns, unspecified thigh
## 15020 Calcification and ossification of muscles associated with burns, right lower leg
## 15021 Calcification and ossification of muscles associated with burns, left lower leg
## 15022 Calcification and ossification of muscles associated with burns, unspecified lower leg
## 15023 Calcification and ossification of muscles associated with burns, right ankle and foot
## 15024 Calcification and ossification of muscles associated with burns, left ankle and foot
## 15025 Calcification and ossification of muscles associated with burns, unspecified ankle and foot
## 15026 Calcification and ossification of muscles associated with burns, other site
## 15027 Calcification and ossification of muscles associated with burns, multiple sites
## 15028 Other calcification of muscle, unspecified site
## 15029 Other calcification of muscle, right shoulder
## 15030 Other calcification of muscle, left shoulder
## 15031 Other calcification of muscle, unspecified shoulder
## 15032 Other calcification of muscle, right upper arm
## 15033 Other calcification of muscle, left upper arm
## 15034 Other calcification of muscle, unspecified upper arm
## 15035 Other calcification of muscle, right forearm
## 15036 Other calcification of muscle, left forearm
## 15037 Other calcification of muscle, unspecified forearm
## 15038 Other calcification of muscle, right hand
## 15039 Other calcification of muscle, left hand
## 15040 Other calcification of muscle, unspecified hand
## 15041 Other calcification of muscle, right thigh
## 15042 Other calcification of muscle, left thigh
## 15043 Other calcification of muscle, unspecified thigh
## 15044 Other calcification of muscle, right lower leg
## 15045 Other calcification of muscle, left lower leg
## 15046 Other calcification of muscle, unspecified lower leg
## 15047 Other calcification of muscle, right ankle and foot
## 15048 Other calcification of muscle, left ankle and foot
## 15049 Other calcification of muscle, unspecified ankle and foot
## 15050 Other calcification of muscle, other site
## 15051 Other calcification of muscle, multiple sites
## 15052 Other ossification of muscle, unspecified site
## 15053 Other ossification of muscle, right shoulder
## 15054 Other ossification of muscle, left shoulder
## 15055 Other ossification of muscle, unspecified shoulder
## 15056 Other ossification of muscle, right upper arm
## 15057 Other ossification of muscle, left upper arm
## 15058 Other ossification of muscle, unspecified upper arm
## 15059 Other ossification of muscle, right forearm
## 15060 Other ossification of muscle, left forearm
## 15061 Other ossification of muscle, unspecified forearm
## 15062 Other ossification of muscle, right hand
## 15063 Other ossification of muscle, left hand
## 15064 Other ossification of muscle, unspecified hand
## 15065 Other ossification of muscle, right thigh
## 15066 Other ossification of muscle, left thigh
## 15067 Other ossification of muscle, unspecified thigh
## 15068 Other ossification of muscle, right lower leg
## 15069 Other ossification of muscle, left lower leg
## 15070 Other ossification of muscle, unspecified lower leg
## 15071 Other ossification of muscle, right ankle and foot
## 15072 Other ossification of muscle, left ankle and foot
## 15073 Other ossification of muscle, unspecified ankle and foot
## 15074 Other ossification of muscle, other site
## 15075 Other ossification of muscle, multiple sites
## 15076 Calcification and ossification of muscle, unspecified
## 15077 Separation of muscle (nontraumatic), unspecified site
## 15078 Separation of muscle (nontraumatic), right shoulder
## 15079 Separation of muscle (nontraumatic), left shoulder
## 15080 Separation of muscle (nontraumatic), unspecified shoulder
## 15081 Separation of muscle (nontraumatic), right upper arm
## 15082 Separation of muscle (nontraumatic), left upper arm
## 15083 Separation of muscle (nontraumatic), unspecified upper arm
## 15084 Separation of muscle (nontraumatic), right forearm
## 15085 Separation of muscle (nontraumatic), left forearm
## 15086 Separation of muscle (nontraumatic), unspecified forearm
## 15087 Separation of muscle (nontraumatic), right hand
## 15088 Separation of muscle (nontraumatic), left hand
## 15089 Separation of muscle (nontraumatic), unspecified hand
## 15090 Separation of muscle (nontraumatic), right thigh
## 15091 Separation of muscle (nontraumatic), left thigh
## 15092 Separation of muscle (nontraumatic), unspecified thigh
## 15093 Separation of muscle (nontraumatic), right lower leg
## 15094 Separation of muscle (nontraumatic), left lower leg
## 15095 Separation of muscle (nontraumatic), unspecified lower leg
## 15096 Separation of muscle (nontraumatic), right ankle and foot
## 15097 Separation of muscle (nontraumatic), left ankle and foot
## 15098 Separation of muscle (nontraumatic), unspecified ankle and foot
## 15099 Separation of muscle (nontraumatic), other site
## 15100 Other rupture of muscle (nontraumatic), unspecified site
## 15101 Other rupture of muscle (nontraumatic), right shoulder
## 15102 Other rupture of muscle (nontraumatic), left shoulder
## 15103 Other rupture of muscle (nontraumatic), unspecified shoulder
## 15104 Other rupture of muscle (nontraumatic), right upper arm
## 15105 Other rupture of muscle (nontraumatic), left upper arm
## 15106 Other rupture of muscle (nontraumatic), unspecified upper arm
## 15107 Other rupture of muscle (nontraumatic), right forearm
## 15108 Other rupture of muscle (nontraumatic), left forearm
## 15109 Other rupture of muscle (nontraumatic), unspecified forearm
## 15110 Other rupture of muscle (nontraumatic), right hand
## 15111 Other rupture of muscle (nontraumatic), left hand
## 15112 Other rupture of muscle (nontraumatic), unspecified hand
## 15113 Other rupture of muscle (nontraumatic), right thigh
## 15114 Other rupture of muscle (nontraumatic), left thigh
## 15115 Other rupture of muscle (nontraumatic), unspecified thigh
## 15116 Other rupture of muscle (nontraumatic), right lower leg
## 15117 Other rupture of muscle (nontraumatic), left lower leg
## 15118 Other rupture of muscle (nontraumatic), unspecified lower leg
## 15119 Other rupture of muscle (nontraumatic), right ankle and foot
## 15120 Other rupture of muscle (nontraumatic), left ankle and foot
## 15121 Other rupture of muscle (nontraumatic), unspecified ankle and foot
## 15122 Other rupture of muscle (nontraumatic), other site
## 15123 Nontraumatic ischemic infarction of muscle, unspecified site
## 15124 Nontraumatic ischemic infarction of muscle, right shoulder
## 15125 Nontraumatic ischemic infarction of muscle, left shoulder
## 15126 Nontraumatic ischemic infarction of muscle, unspecified shoulder
## 15127 Nontraumatic ischemic infarction of muscle, right upper arm
## 15128 Nontraumatic ischemic infarction of muscle, left upper arm
## 15129 Nontraumatic ischemic infarction of muscle, unspecified upper arm
## 15130 Nontraumatic ischemic infarction of muscle, right forearm
## 15131 Nontraumatic ischemic infarction of muscle, left forearm
## 15132 Nontraumatic ischemic infarction of muscle, unspecified forearm
## 15133 Nontraumatic ischemic infarction of muscle, right hand
## 15134 Nontraumatic ischemic infarction of muscle, left hand
## 15135 Nontraumatic ischemic infarction of muscle, unspecified hand
## 15136 Nontraumatic ischemic infarction of muscle, right thigh
## 15137 Nontraumatic ischemic infarction of muscle, left thigh
## 15138 Nontraumatic ischemic infarction of muscle, unspecified thigh
## 15139 Nontraumatic ischemic infarction of muscle, right lower leg
## 15140 Nontraumatic ischemic infarction of muscle, left lower leg
## 15141 Nontraumatic ischemic infarction of muscle, unspecified lower leg
## 15142 Nontraumatic ischemic infarction of muscle, right ankle and foot
## 15143 Nontraumatic ischemic infarction of muscle, left ankle and foot
## 15144 Nontraumatic ischemic infarction of muscle, unspecified ankle and foot
## 15145 Nontraumatic ischemic infarction of muscle, other site
## 15146 Immobility syndrome (paraplegic)
## 15147 Contracture of muscle, unspecified site
## 15148 Contracture of muscle, right shoulder
## 15149 Contracture of muscle, left shoulder
## 15150 Contracture of muscle, unspecified shoulder
## 15151 Contracture of muscle, right upper arm
## 15152 Contracture of muscle, left upper arm
## 15153 Contracture of muscle, unspecified upper arm
## 15154 Contracture of muscle, right forearm
## 15155 Contracture of muscle, left forearm
## 15156 Contracture of muscle, unspecified forearm
## 15157 Contracture of muscle, right hand
## 15158 Contracture of muscle, left hand
## 15159 Contracture of muscle, unspecified hand
## 15160 Contracture of muscle, right thigh
## 15161 Contracture of muscle, left thigh
## 15162 Contracture of muscle, unspecified thigh
## 15163 Contracture of muscle, right lower leg
## 15164 Contracture of muscle, left lower leg
## 15165 Contracture of muscle, unspecified lower leg
## 15166 Contracture of muscle, right ankle and foot
## 15167 Contracture of muscle, left ankle and foot
## 15168 Contracture of muscle, unspecified ankle and foot
## 15169 Contracture of muscle, other site
## 15170 Contracture of muscle, multiple sites
## 15171 Muscle wasting and atrophy, not elsewhere classified, unspecified site
## 15172 Muscle wasting and atrophy, not elsewhere classified, right shoulder
## 15173 Muscle wasting and atrophy, not elsewhere classified, left shoulder
## 15174 Muscle wasting and atrophy, not elsewhere classified, unspecified shoulder
## 15175 Muscle wasting and atrophy, not elsewhere classified, right upper arm
## 15176 Muscle wasting and atrophy, not elsewhere classified, left upper arm
## 15177 Muscle wasting and atrophy, not elsewhere classified, unspecified upper arm
## 15178 Muscle wasting and atrophy, not elsewhere classified, right forearm
## 15179 Muscle wasting and atrophy, not elsewhere classified, left forearm
## 15180 Muscle wasting and atrophy, not elsewhere classified, unspecified forearm
## 15181 Muscle wasting and atrophy, not elsewhere classified, right hand
## 15182 Muscle wasting and atrophy, not elsewhere classified, left hand
## 15183 Muscle wasting and atrophy, not elsewhere classified, unspecified hand
## 15184 Muscle wasting and atrophy, not elsewhere classified, right thigh
## 15185 Muscle wasting and atrophy, not elsewhere classified, left thigh
## 15186 Muscle wasting and atrophy, not elsewhere classified, unspecified thigh
## 15187 Muscle wasting and atrophy, not elsewhere classified, right lower leg
## 15188 Muscle wasting and atrophy, not elsewhere classified, left lower leg
## 15189 Muscle wasting and atrophy, not elsewhere classified, unspecified lower leg
## 15190 Muscle wasting and atrophy, not elsewhere classified, right ankle and foot
## 15191 Muscle wasting and atrophy, not elsewhere classified, left ankle and foot
## 15192 Muscle wasting and atrophy, not elsewhere classified, unspecified ankle and foot
## 15193 Muscle wasting and atrophy, not elsewhere classified, other site
## 15194 Muscle wasting and atrophy, not elsewhere classified, multiple sites
## 15195 Muscle weakness (generalized)
## 15196 Rhabdomyolysis
## 15197 Muscle spasm of back
## 15198 Muscle spasm of calf
## 15199 Other muscle spasm
## 15200 Sarcopenia
## 15201 Other specified disorders of muscle
## 15202 Disorder of muscle, unspecified
## 15203 Disorders of muscle in diseases classified elsewhere, unspecified site
## 15204 Disorders of muscle in diseases classified elsewhere, right shoulder
## 15205 Disorders of muscle in diseases classified elsewhere, left shoulder
## 15206 Disorders of muscle in diseases classified elsewhere, unspecified shoulder
## 15207 Disorders of muscle in diseases classified elsewhere, right upper arm
## 15208 Disorders of muscle in diseases classified elsewhere, left upper arm
## 15209 Disorders of muscle in diseases classified elsewhere, unspecified upper arm
## 15210 Disorders of muscle in diseases classified elsewhere, right forearm
## 15211 Disorders of muscle in diseases classified elsewhere, left forearm
## 15212 Disorders of muscle in diseases classified elsewhere, unspecified forearm
## 15213 Disorders of muscle in diseases classified elsewhere, right hand
## 15214 Disorders of muscle in diseases classified elsewhere, left hand
## 15215 Disorders of muscle in diseases classified elsewhere, unspecified hand
## 15216 Disorders of muscle in diseases classified elsewhere, right thigh
## 15217 Disorders of muscle in diseases classified elsewhere, left thigh
## 15218 Disorders of muscle in diseases classified elsewhere, unspecified thigh
## 15219 Disorders of muscle in diseases classified elsewhere, right lower leg
## 15220 Disorders of muscle in diseases classified elsewhere, left lower leg
## 15221 Disorders of muscle in diseases classified elsewhere, unspecified lower leg
## 15222 Disorders of muscle in diseases classified elsewhere, right ankle and foot
## 15223 Disorders of muscle in diseases classified elsewhere, left ankle and foot
## 15224 Disorders of muscle in diseases classified elsewhere, unspecified ankle and foot
## 15225 Disorders of muscle in diseases classified elsewhere, other site
## 15226 Disorders of muscle in diseases classified elsewhere, multiple sites
## 15227 Abscess of tendon sheath, unspecified site
## 15228 Abscess of tendon sheath, right shoulder
## 15229 Abscess of tendon sheath, left shoulder
## 15230 Abscess of tendon sheath, unspecified shoulder
## 15231 Abscess of tendon sheath, right upper arm
## 15232 Abscess of tendon sheath, left upper arm
## 15233 Abscess of tendon sheath, unspecified upper arm
## 15234 Abscess of tendon sheath, right forearm
## 15235 Abscess of tendon sheath, left forearm
## 15236 Abscess of tendon sheath, unspecified forearm
## 15237 Abscess of tendon sheath, right hand
## 15238 Abscess of tendon sheath, left hand
## 15239 Abscess of tendon sheath, unspecified hand
## 15240 Abscess of tendon sheath, right thigh
## 15241 Abscess of tendon sheath, left thigh
## 15242 Abscess of tendon sheath, unspecified thigh
## 15243 Abscess of tendon sheath, right lower leg
## 15244 Abscess of tendon sheath, left lower leg
## 15245 Abscess of tendon sheath, unspecified lower leg
## 15246 Abscess of tendon sheath, right ankle and foot
## 15247 Abscess of tendon sheath, left ankle and foot
## 15248 Abscess of tendon sheath, unspecified ankle and foot
## 15249 Abscess of tendon sheath, other site
## 15250 Other infective (teno)synovitis, unspecified site
## 15251 Other infective (teno)synovitis, right shoulder
## 15252 Other infective (teno)synovitis, left shoulder
## 15253 Other infective (teno)synovitis, unspecified shoulder
## 15254 Other infective (teno)synovitis, right elbow
## 15255 Other infective (teno)synovitis, left elbow
## 15256 Other infective (teno)synovitis, unspecified elbow
## 15257 Other infective (teno)synovitis, right wrist
## 15258 Other infective (teno)synovitis, left wrist
## 15259 Other infective (teno)synovitis, unspecified wrist
## 15260 Other infective (teno)synovitis, right hand
## 15261 Other infective (teno)synovitis, left hand
## 15262 Other infective (teno)synovitis, unspecified hand
## 15263 Other infective (teno)synovitis, right hip
## 15264 Other infective (teno)synovitis, left hip
## 15265 Other infective (teno)synovitis, unspecified hip
## 15266 Other infective (teno)synovitis, right knee
## 15267 Other infective (teno)synovitis, left knee
## 15268 Other infective (teno)synovitis, unspecified knee
## 15269 Other infective (teno)synovitis, right ankle and foot
## 15270 Other infective (teno)synovitis, left ankle and foot
## 15271 Other infective (teno)synovitis, unspecified ankle and foot
## 15272 Other infective (teno)synovitis, other site
## 15273 Other infective (teno)synovitis, multiple sites
## 15274 Calcific tendinitis, unspecified site
## 15275 Calcific tendinitis, right upper arm
## 15276 Calcific tendinitis, left upper arm
## 15277 Calcific tendinitis, unspecified upper arm
## 15278 Calcific tendinitis, right forearm
## 15279 Calcific tendinitis, left forearm
## 15280 Calcific tendinitis, unspecified forearm
## 15281 Calcific tendinitis, right hand
## 15282 Calcific tendinitis, left hand
## 15283 Calcific tendinitis, unspecified hand
## 15284 Calcific tendinitis, right thigh
## 15285 Calcific tendinitis, left thigh
## 15286 Calcific tendinitis, unspecified thigh
## 15287 Calcific tendinitis, right lower leg
## 15288 Calcific tendinitis, left lower leg
## 15289 Calcific tendinitis, unspecified lower leg
## 15290 Calcific tendinitis, right ankle and foot
## 15291 Calcific tendinitis, left ankle and foot
## 15292 Calcific tendinitis, unspecified ankle and foot
## 15293 Calcific tendinitis, other site
## 15294 Calcific tendinitis, multiple sites
## 15295 Trigger finger, unspecified finger
## 15296 Trigger thumb, right thumb
## 15297 Trigger thumb, left thumb
## 15298 Trigger thumb, unspecified thumb
## 15299 Trigger finger, right index finger
## 15300 Trigger finger, left index finger
## 15301 Trigger finger, unspecified index finger
## 15302 Trigger finger, right middle finger
## 15303 Trigger finger, left middle finger
## 15304 Trigger finger, unspecified middle finger
## 15305 Trigger finger, right ring finger
## 15306 Trigger finger, left ring finger
## 15307 Trigger finger, unspecified ring finger
## 15308 Trigger finger, right little finger
## 15309 Trigger finger, left little finger
## 15310 Trigger finger, unspecified little finger
## 15311 Radial styloid tenosynovitis [de Quervain]
## 15312 Other synovitis and tenosynovitis, unspecified site
## 15313 Other synovitis and tenosynovitis, right shoulder
## 15314 Other synovitis and tenosynovitis, left shoulder
## 15315 Other synovitis and tenosynovitis, unspecified shoulder
## 15316 Other synovitis and tenosynovitis, right upper arm
## 15317 Other synovitis and tenosynovitis, left upper arm
## 15318 Other synovitis and tenosynovitis, unspecified upper arm
## 15319 Other synovitis and tenosynovitis, right forearm
## 15320 Other synovitis and tenosynovitis, left forearm
## 15321 Other synovitis and tenosynovitis, unspecified forearm
## 15322 Other synovitis and tenosynovitis, right hand
## 15323 Other synovitis and tenosynovitis, left hand
## 15324 Other synovitis and tenosynovitis, unspecified hand
## 15325 Other synovitis and tenosynovitis, right thigh
## 15326 Other synovitis and tenosynovitis, left thigh
## 15327 Other synovitis and tenosynovitis, unspecified thigh
## 15328 Other synovitis and tenosynovitis, right lower leg
## 15329 Other synovitis and tenosynovitis, left lower leg
## 15330 Other synovitis and tenosynovitis, unspecified lower leg
## 15331 Other synovitis and tenosynovitis, right ankle and foot
## 15332 Other synovitis and tenosynovitis, left ankle and foot
## 15333 Other synovitis and tenosynovitis, unspecified ankle and foot
## 15334 Other synovitis and tenosynovitis, other site
## 15335 Other synovitis and tenosynovitis, multiple sites
## 15336 Synovitis and tenosynovitis, unspecified
## 15337 Rupture of popliteal cyst
## 15338 Rupture of synovium, unspecified joint
## 15339 Rupture of synovium, right shoulder
## 15340 Rupture of synovium, left shoulder
## 15341 Rupture of synovium, unspecified shoulder
## 15342 Rupture of synovium, right elbow
## 15343 Rupture of synovium, left elbow
## 15344 Rupture of synovium, unspecified elbow
## 15345 Rupture of synovium, right wrist
## 15346 Rupture of synovium, left wrist
## 15347 Rupture of synovium, unspecified wrist
## 15348 Rupture of synovium, right hand
## 15349 Rupture of synovium, left hand
## 15350 Rupture of synovium, unspecified hand
## 15351 Rupture of synovium, right finger(s)
## 15352 Rupture of synovium, left finger(s)
## 15353 Rupture of synovium, unspecified finger(s)
## 15354 Rupture of synovium, right hip
## 15355 Rupture of synovium, left hip
## 15356 Rupture of synovium, unspecified hip
## 15357 Rupture of synovium, right ankle
## 15358 Rupture of synovium, left ankle
## 15359 Rupture of synovium, unspecified ankle
## 15360 Rupture of synovium, right foot
## 15361 Rupture of synovium, left foot
## 15362 Rupture of synovium, unspecified foot
## 15363 Rupture of synovium, right toe(s)
## 15364 Rupture of synovium, left toe(s)
## 15365 Rupture of synovium, unspecified toe(s)
## 15366 Rupture of synovium, other site
## 15367 Spontaneous rupture of extensor tendons, unspecified site
## 15368 Spontaneous rupture of extensor tendons, right shoulder
## 15369 Spontaneous rupture of extensor tendons, left shoulder
## 15370 Spontaneous rupture of extensor tendons, unspecified shoulder
## 15371 Spontaneous rupture of extensor tendons, right upper arm
## 15372 Spontaneous rupture of extensor tendons, left upper arm
## 15373 Spontaneous rupture of extensor tendons, unspecified upper arm
## 15374 Spontaneous rupture of extensor tendons, right forearm
## 15375 Spontaneous rupture of extensor tendons, left forearm
## 15376 Spontaneous rupture of extensor tendons, unspecified forearm
## 15377 Spontaneous rupture of extensor tendons, right hand
## 15378 Spontaneous rupture of extensor tendons, left hand
## 15379 Spontaneous rupture of extensor tendons, unspecified hand
## 15380 Spontaneous rupture of extensor tendons, right thigh
## 15381 Spontaneous rupture of extensor tendons, left thigh
## 15382 Spontaneous rupture of extensor tendons, unspecified thigh
## 15383 Spontaneous rupture of extensor tendons, right lower leg
## 15384 Spontaneous rupture of extensor tendons, left lower leg
## 15385 Spontaneous rupture of extensor tendons, unspecified lower leg
## 15386 Spontaneous rupture of extensor tendons, right ankle and foot
## 15387 Spontaneous rupture of extensor tendons, left ankle and foot
## 15388 Spontaneous rupture of extensor tendons, unspecified ankle and foot
## 15389 Spontaneous rupture of extensor tendons, other site
## 15390 Spontaneous rupture of extensor tendons, multiple sites
## 15391 Spontaneous rupture of flexor tendons, unspecified site
## 15392 Spontaneous rupture of flexor tendons, right shoulder
## 15393 Spontaneous rupture of flexor tendons, left shoulder
## 15394 Spontaneous rupture of flexor tendons, unspecified shoulder
## 15395 Spontaneous rupture of flexor tendons, right upper arm
## 15396 Spontaneous rupture of flexor tendons, left upper arm
## 15397 Spontaneous rupture of flexor tendons, unspecified upper arm
## 15398 Spontaneous rupture of flexor tendons, right forearm
## 15399 Spontaneous rupture of flexor tendons, left forearm
## 15400 Spontaneous rupture of flexor tendons, unspecified forearm
## 15401 Spontaneous rupture of flexor tendons, right hand
## 15402 Spontaneous rupture of flexor tendons, left hand
## 15403 Spontaneous rupture of flexor tendons, unspecified hand
## 15404 Spontaneous rupture of flexor tendons, right thigh
## 15405 Spontaneous rupture of flexor tendons, left thigh
## 15406 Spontaneous rupture of flexor tendons, unspecified thigh
## 15407 Spontaneous rupture of flexor tendons, right lower leg
## 15408 Spontaneous rupture of flexor tendons, left lower leg
## 15409 Spontaneous rupture of flexor tendons, unspecified lower leg
## 15410 Spontaneous rupture of flexor tendons, right ankle and foot
## 15411 Spontaneous rupture of flexor tendons, left ankle and foot
## 15412 Spontaneous rupture of flexor tendons, unspecified ankle and foot
## 15413 Spontaneous rupture of flexor tendons, other site
## 15414 Spontaneous rupture of flexor tendons, multiple sites
## 15415 Spontaneous rupture of other tendons, unspecified site
## 15416 Spontaneous rupture of other tendons, right shoulder
## 15417 Spontaneous rupture of other tendons, left shoulder
## 15418 Spontaneous rupture of other tendons, unspecified shoulder
## 15419 Spontaneous rupture of other tendons, right upper arm
## 15420 Spontaneous rupture of other tendons, left upper arm
## 15421 Spontaneous rupture of other tendons, unspecified upper arm
## 15422 Spontaneous rupture of other tendons, right forearm
## 15423 Spontaneous rupture of other tendons, left forearm
## 15424 Spontaneous rupture of other tendons, unspecified forearm
## 15425 Spontaneous rupture of other tendons, right hand
## 15426 Spontaneous rupture of other tendons, left hand
## 15427 Spontaneous rupture of other tendons, unspecified hand
## 15428 Spontaneous rupture of other tendons, right thigh
## 15429 Spontaneous rupture of other tendons, left thigh
## 15430 Spontaneous rupture of other tendons, unspecified thigh
## 15431 Spontaneous rupture of other tendons, right lower leg
## 15432 Spontaneous rupture of other tendons, left lower leg
## 15433 Spontaneous rupture of other tendons, unspecified lower leg
## 15434 Spontaneous rupture of other tendons, right ankle and foot
## 15435 Spontaneous rupture of other tendons, left ankle and foot
## 15436 Spontaneous rupture of other tendons, unspecified ankle and foot
## 15437 Spontaneous rupture of other tendons, other sites
## 15438 Spontaneous rupture of other tendons, multiple sites
## 15439 Spontaneous rupture of unspecified tendon
## 15440 Short Achilles tendon (acquired), unspecified ankle
## 15441 Short Achilles tendon (acquired), right ankle
## 15442 Short Achilles tendon (acquired), left ankle
## 15443 Synovial hypertrophy, not elsewhere classified, unspecified site
## 15444 Synovial hypertrophy, not elsewhere classified, right shoulder
## 15445 Synovial hypertrophy, not elsewhere classified, left shoulder
## 15446 Synovial hypertrophy, not elsewhere classified, unspecified shoulder
## 15447 Synovial hypertrophy, not elsewhere classified, right upper arm
## 15448 Synovial hypertrophy, not elsewhere classified, left upper arm
## 15449 Synovial hypertrophy, not elsewhere classified, unspecified upper arm
## 15450 Synovial hypertrophy, not elsewhere classified, right forearm
## 15451 Synovial hypertrophy, not elsewhere classified, left forearm
## 15452 Synovial hypertrophy, not elsewhere classified, unspecified forearm
## 15453 Synovial hypertrophy, not elsewhere classified, right hand
## 15454 Synovial hypertrophy, not elsewhere classified, left hand
## 15455 Synovial hypertrophy, not elsewhere classified, unspecified hand
## 15456 Synovial hypertrophy, not elsewhere classified, right thigh
## 15457 Synovial hypertrophy, not elsewhere classified, left thigh
## 15458 Synovial hypertrophy, not elsewhere classified, unspecified thigh
## 15459 Synovial hypertrophy, not elsewhere classified, right lower leg
## 15460 Synovial hypertrophy, not elsewhere classified, left lower leg
## 15461 Synovial hypertrophy, not elsewhere classified, unspecified lower leg
## 15462 Synovial hypertrophy, not elsewhere classified, right ankle and foot
## 15463 Synovial hypertrophy, not elsewhere classified, left ankle and foot
## 15464 Synovial hypertrophy, not elsewhere classified, unspecified ankle and foot
## 15465 Synovial hypertrophy, not elsewhere classified, other site
## 15466 Synovial hypertrophy, not elsewhere classified, multiple sites
## 15467 Transient synovitis, unspecified site
## 15468 Transient synovitis, right shoulder
## 15469 Transient synovitis, left shoulder
## 15470 Transient synovitis, unspecified shoulder
## 15471 Transient synovitis, right elbow
## 15472 Transient synovitis, left elbow
## 15473 Transient synovitis, unspecified elbow
## 15474 Transient synovitis, right wrist
## 15475 Transient synovitis, left wrist
## 15476 Transient synovitis, unspecified wrist
## 15477 Transient synovitis, right hand
## 15478 Transient synovitis, left hand
## 15479 Transient synovitis, unspecified hand
## 15480 Transient synovitis, right hip
## 15481 Transient synovitis, left hip
## 15482 Transient synovitis, unspecified hip
## 15483 Transient synovitis, right knee
## 15484 Transient synovitis, left knee
## 15485 Transient synovitis, unspecified knee
## 15486 Transient synovitis, right ankle and foot
## 15487 Transient synovitis, left ankle and foot
## 15488 Transient synovitis, unspecified ankle and foot
## 15489 Transient synovitis, other site
## 15490 Transient synovitis, multiple sites
## 15491 Ganglion, unspecified site
## 15492 Ganglion, right shoulder
## 15493 Ganglion, left shoulder
## 15494 Ganglion, unspecified shoulder
## 15495 Ganglion, right elbow
## 15496 Ganglion, left elbow
## 15497 Ganglion, unspecified elbow
## 15498 Ganglion, right wrist
## 15499 Ganglion, left wrist
## 15500 Ganglion, unspecified wrist
## 15501 Ganglion, right hand
## 15502 Ganglion, left hand
## 15503 Ganglion, unspecified hand
## 15504 Ganglion, right hip
## 15505 Ganglion, left hip
## 15506 Ganglion, unspecified hip
## 15507 Ganglion, right knee
## 15508 Ganglion, left knee
## 15509 Ganglion, unspecified knee
## 15510 Ganglion, right ankle and foot
## 15511 Ganglion, left ankle and foot
## 15512 Ganglion, unspecified ankle and foot
## 15513 Ganglion, other site
## 15514 Ganglion, multiple sites
## 15515 Plica syndrome, unspecified knee
## 15516 Plica syndrome, right knee
## 15517 Plica syndrome, left knee
## 15518 Other specified disorders of synovium and tendon, unspecified site
## 15519 Other specified disorders of synovium, right shoulder
## 15520 Other specified disorders of synovium, left shoulder
## 15521 Other specified disorders of tendon, right shoulder
## 15522 Other specified disorders of tendon, left shoulder
## 15523 Other specified disorders of synovium and tendon, unspecified shoulder
## 15524 Other specified disorders of synovium, right elbow
## 15525 Other specified disorders of synovium, left elbow
## 15526 Other specified disorders of tendon, right elbow
## 15527 Other specified disorders of tendon, left elbow
## 15528 Other specified disorders of synovium and tendon, unspecified elbow
## 15529 Other specified disorders of synovium, right wrist
## 15530 Other specified disorders of synovium, left wrist
## 15531 Other specified disorders of tendon, right wrist
## 15532 Other specified disorders of tendon, left wrist
## 15533 Other specified disorders of synovium and tendon, unspecified wrist
## 15534 Other specified disorders of synovium, right hand
## 15535 Other specified disorders of synovium, left hand
## 15536 Other specified disorders of tendon, right hand
## 15537 Other specified disorders of tendon, left hand
## 15538 Other specified disorders of synovium and tendon, unspecified hand
## 15539 Other specified disorders of synovium, right hip
## 15540 Other specified disorders of synovium, left hip
## 15541 Other specified disorders of tendon, right hip
## 15542 Other specified disorders of tendon, left hip
## 15543 Other specified disorders of synovium and tendon, unspecified hip
## 15544 Other specified disorders of synovium, right knee
## 15545 Other specified disorders of synovium, left knee
## 15546 Other specified disorders of tendon, right knee
## 15547 Other specified disorders of tendon, left knee
## 15548 Other specified disorders of synovium and tendon, unspecified knee
## 15549 Other specified disorders of synovium, right ankle and foot
## 15550 Other specified disorders of synovium, left ankle and foot
## 15551 Other specified disorders of tendon, right ankle and foot
## 15552 Other specified disorders of tendon, left ankle and foot
## 15553 Other specified disorders of synovium and tendon, unspecified ankle and foot
## 15554 Other specified disorders of synovium and tendon, other site
## 15555 Other specified disorders of synovium and tendon, multiple sites
## 15556 Unspecified disorder of synovium and tendon, unspecified site
## 15557 Unspecified disorder of synovium and tendon, right shoulder
## 15558 Unspecified disorder of synovium and tendon, left shoulder
## 15559 Unspecified disorder of synovium and tendon, unspecified shoulder
## 15560 Unspecified disorder of synovium and tendon, right upper arm
## 15561 Unspecified disorder of synovium and tendon, left upper arm
## 15562 Unspecified disorder of synovium and tendon, unspecified upper arm
## 15563 Unspecified disorder of synovium and tendon, right forearm
## 15564 Unspecified disorder of synovium and tendon, left forearm
## 15565 Unspecified disorder of synovium and tendon, unspecified forearm
## 15566 Unspecified disorder of synovium and tendon, right hand
## 15567 Unspecified disorder of synovium and tendon, left hand
## 15568 Unspecified disorder of synovium and tendon, unspecified hand
## 15569 Unspecified disorder of synovium and tendon, right thigh
## 15570 Unspecified disorder of synovium and tendon, left thigh
## 15571 Unspecified disorder of synovium and tendon, unspecified thigh
## 15572 Unspecified disorder of synovium and tendon, right lower leg
## 15573 Unspecified disorder of synovium and tendon, left lower leg
## 15574 Unspecified disorder of synovium and tendon, unspecified lower leg
## 15575 Unspecified disorder of synovium and tendon, right ankle and foot
## 15576 Unspecified disorder of synovium and tendon, left ankle and foot
## 15577 Unspecified disorder of synovium and tendon, unspecified ankle and foot
## 15578 Unspecified disorder of synovium and tendon, other site
## 15579 Unspecified disorder of synovium and tendon, multiple sites
## 15580 Crepitant synovitis (acute) (chronic), right wrist
## 15581 Crepitant synovitis (acute) (chronic), left wrist
## 15582 Crepitant synovitis (acute) (chronic), unspecified wrist
## 15583 Crepitant synovitis (acute) (chronic), right hand
## 15584 Crepitant synovitis (acute) (chronic), left hand
## 15585 Crepitant synovitis (acute) (chronic), unspecified hand
## 15586 Bursitis, unspecified hand
## 15587 Bursitis, right hand
## 15588 Bursitis, left hand
## 15589 Olecranon bursitis, unspecified elbow
## 15590 Olecranon bursitis, right elbow
## 15591 Olecranon bursitis, left elbow
## 15592 Other bursitis of elbow, unspecified elbow
## 15593 Other bursitis of elbow, right elbow
## 15594 Other bursitis of elbow, left elbow
## 15595 Prepatellar bursitis, unspecified knee
## 15596 Prepatellar bursitis, right knee
## 15597 Prepatellar bursitis, left knee
## 15598 Other bursitis of knee, unspecified knee
## 15599 Other bursitis of knee, right knee
## 15600 Other bursitis of knee, left knee
## 15601 Trochanteric bursitis, unspecified hip
## 15602 Trochanteric bursitis, right hip
## 15603 Trochanteric bursitis, left hip
## 15604 Other bursitis of hip, unspecified hip
## 15605 Other bursitis of hip, right hip
## 15606 Other bursitis of hip, left hip
## 15607 Other soft tissue disorders related to use, overuse and pressure of unspecified site
## 15608 Other soft tissue disorders related to use, overuse and pressure, right shoulder
## 15609 Other soft tissue disorders related to use, overuse and pressure, left shoulder
## 15610 Other soft tissue disorders related to use, overuse and pressure, unspecified shoulder
## 15611 Other soft tissue disorders related to use, overuse and pressure, right upper arm
## 15612 Other soft tissue disorders related to use, overuse and pressure, left upper arm
## 15613 Other soft tissue disorders related to use, overuse and pressure, unspecified upper arms
## 15614 Other soft tissue disorders related to use, overuse and pressure, right forearm
## 15615 Other soft tissue disorders related to use, overuse and pressure, left forearm
## 15616 Other soft tissue disorders related to use, overuse and pressure, unspecified forearm
## 15617 Other soft tissue disorders related to use, overuse and pressure, right hand
## 15618 Other soft tissue disorders related to use, overuse and pressure, left hand
## 15619 Other soft tissue disorders related to use, overuse and pressure, unspecified hand
## 15620 Other soft tissue disorders related to use, overuse and pressure, right thigh
## 15621 Other soft tissue disorders related to use, overuse and pressure, left thigh
## 15622 Other soft tissue disorders related to use, overuse and pressure, unspecified thigh
## 15623 Other soft tissue disorders related to use, overuse and pressure, right lower leg
## 15624 Other soft tissue disorders related to use, overuse and pressure, left lower leg
## 15625 Other soft tissue disorders related to use, overuse and pressure, unspecified leg
## 15626 Other soft tissue disorders related to use, overuse and pressure, right ankle and foot
## 15627 Other soft tissue disorders related to use, overuse and pressure, left ankle and foot
## 15628 Other soft tissue disorders related to use, overuse and pressure, unspecified ankle and foot
## 15629 Other soft tissue disorders related to use, overuse and pressure other site
## 15630 Other soft tissue disorders related to use, overuse and pressure multiple sites
## 15631 Unspecified soft tissue disorder related to use, overuse and pressure of unspecified site
## 15632 Unspecified soft tissue disorder related to use, overuse and pressure, right shoulder
## 15633 Unspecified soft tissue disorder related to use, overuse and pressure, left shoulder
## 15634 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified shoulder
## 15635 Unspecified soft tissue disorder related to use, overuse and pressure, right upper arm
## 15636 Unspecified soft tissue disorder related to use, overuse and pressure, left upper arm
## 15637 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified upper arm
## 15638 Unspecified soft tissue disorder related to use, overuse and pressure, right forearm
## 15639 Unspecified soft tissue disorder related to use, overuse and pressure, left forearm
## 15640 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified forearm
## 15641 Unspecified soft tissue disorder related to use, overuse and pressure, right hand
## 15642 Unspecified soft tissue disorder related to use, overuse and pressure, left hand
## 15643 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified hand
## 15644 Unspecified soft tissue disorder related to use, overuse and pressure, right thigh
## 15645 Unspecified soft tissue disorder related to use, overuse and pressure, left thigh
## 15646 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified thigh
## 15647 Unspecified soft tissue disorder related to use, overuse and pressure, right lower leg
## 15648 Unspecified soft tissue disorder related to use, overuse and pressure, left lower leg
## 15649 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified lower leg
## 15650 Unspecified soft tissue disorder related to use, overuse and pressure, right ankle and foot
## 15651 Unspecified soft tissue disorder related to use, overuse and pressure, left ankle and foot
## 15652 Unspecified soft tissue disorder related to use, overuse and pressure, unspecified ankle and foot
## 15653 Unspecified soft tissue disorder related to use, overuse and pressure other
## 15654 Unspecified soft tissue disorder related to use, overuse and pressure multiple sites
## 15655 Abscess of bursa, unspecified site
## 15656 Abscess of bursa, right shoulder
## 15657 Abscess of bursa, left shoulder
## 15658 Abscess of bursa, unspecified shoulder
## 15659 Abscess of bursa, right elbow
## 15660 Abscess of bursa, left elbow
## 15661 Abscess of bursa, unspecified elbow
## 15662 Abscess of bursa, right wrist
## 15663 Abscess of bursa, left wrist
## 15664 Abscess of bursa, unspecified wrist
## 15665 Abscess of bursa, right hand
## 15666 Abscess of bursa, left hand
## 15667 Abscess of bursa, unspecified hand
## 15668 Abscess of bursa, right hip
## 15669 Abscess of bursa, left hip
## 15670 Abscess of bursa, unspecified hip
## 15671 Abscess of bursa, right knee
## 15672 Abscess of bursa, left knee
## 15673 Abscess of bursa, unspecified knee
## 15674 Abscess of bursa, right ankle and foot
## 15675 Abscess of bursa, left ankle and foot
## 15676 Abscess of bursa, unspecified ankle and foot
## 15677 Abscess of bursa, other site
## 15678 Abscess of bursa, multiple sites
## 15679 Other infective bursitis, unspecified site
## 15680 Other infective bursitis, right shoulder
## 15681 Other infective bursitis, left shoulder
## 15682 Other infective bursitis, unspecified shoulder
## 15683 Other infective bursitis, right elbow
## 15684 Other infective bursitis, left elbow
## 15685 Other infective bursitis, unspecified elbow
## 15686 Other infective bursitis, right wrist
## 15687 Other infective bursitis, left wrist
## 15688 Other infective bursitis, unspecified wrist
## 15689 Other infective bursitis, right hand
## 15690 Other infective bursitis, left hand
## 15691 Other infective bursitis, unspecified hand
## 15692 Other infective bursitis, right hip
## 15693 Other infective bursitis, left hip
## 15694 Other infective bursitis, unspecified hip
## 15695 Other infective bursitis, right knee
## 15696 Other infective bursitis, left knee
## 15697 Other infective bursitis, unspecified knee
## 15698 Other infective bursitis, right ankle and foot
## 15699 Other infective bursitis, left ankle and foot
## 15700 Other infective bursitis, unspecified ankle and foot
## 15701 Other infective bursitis, other site
## 15702 Other infective bursitis, multiple sites
## 15703 Synovial cyst of popliteal space [Baker], unspecified knee
## 15704 Synovial cyst of popliteal space [Baker], right knee
## 15705 Synovial cyst of popliteal space [Baker], left knee
## 15706 Other bursal cyst, unspecified site
## 15707 Other bursal cyst, right shoulder
## 15708 Other bursal cyst, left shoulder
## 15709 Other bursal cyst, unspecified shoulder
## 15710 Other bursal cyst, right elbow
## 15711 Other bursal cyst, left elbow
## 15712 Other bursal cyst, unspecified elbow
## 15713 Other bursal cyst, right wrist
## 15714 Other bursal cyst, left wrist
## 15715 Other bursal cyst, unspecified wrist
## 15716 Other bursal cyst, right hand
## 15717 Other bursal cyst, left hand
## 15718 Other bursal cyst, unspecified hand
## 15719 Other bursal cyst, right hip
## 15720 Other bursal cyst, left hip
## 15721 Other bursal cyst, unspecified hip
## 15722 Other bursal cyst, right ankle and foot
## 15723 Other bursal cyst, left ankle and foot
## 15724 Other bursal cyst, unspecified ankle and foot
## 15725 Other bursal cyst, other site
## 15726 Other bursal cyst, multiple sites
## 15727 Calcium deposit in bursa, unspecified site
## 15728 Calcium deposit in bursa, right elbow
## 15729 Calcium deposit in bursa, left elbow
## 15730 Calcium deposit in bursa, unspecified elbow
## 15731 Calcium deposit in bursa, right wrist
## 15732 Calcium deposit in bursa, left wrist
## 15733 Calcium deposit in bursa, unspecified wrist
## 15734 Calcium deposit in bursa, right hand
## 15735 Calcium deposit in bursa, left hand
## 15736 Calcium deposit in bursa, unspecified hand
## 15737 Calcium deposit in bursa, right hip
## 15738 Calcium deposit in bursa, left hip
## 15739 Calcium deposit in bursa, unspecified hip
## 15740 Calcium deposit in bursa, right knee
## 15741 Calcium deposit in bursa, left knee
## 15742 Calcium deposit in bursa, unspecified knee
## 15743 Calcium deposit in bursa, right ankle and foot
## 15744 Calcium deposit in bursa, left ankle and foot
## 15745 Calcium deposit in bursa, unspecified ankle and foot
## 15746 Calcium deposit in bursa, other site
## 15747 Calcium deposit in bursa, multiple sites
## 15748 Other bursitis, not elsewhere classified, unspecified site
## 15749 Other bursitis, not elsewhere classified, right elbow
## 15750 Other bursitis, not elsewhere classified, left elbow
## 15751 Other bursitis, not elsewhere classified, unspecified elbow
## 15752 Other bursitis, not elsewhere classified, right wrist
## 15753 Other bursitis, not elsewhere classified, left wrist
## 15754 Other bursitis, not elsewhere classified, unspecified wrist
## 15755 Other bursitis, not elsewhere classified, right hand
## 15756 Other bursitis, not elsewhere classified, left hand
## 15757 Other bursitis, not elsewhere classified, unspecified hand
## 15758 Other bursitis, not elsewhere classified, right hip
## 15759 Other bursitis, not elsewhere classified, left hip
## 15760 Other bursitis, not elsewhere classified, unspecified hip
## 15761 Other bursitis, not elsewhere classified, right knee
## 15762 Other bursitis, not elsewhere classified, left knee
## 15763 Other bursitis, not elsewhere classified, unspecified knee
## 15764 Other bursitis, not elsewhere classified, right ankle and foot
## 15765 Other bursitis, not elsewhere classified, left ankle and foot
## 15766 Other bursitis, not elsewhere classified, unspecified ankle and foot
## 15767 Other bursitis, not elsewhere classified, other site
## 15768 Other specified bursopathies, unspecified site
## 15769 Other specified bursopathies, right shoulder
## 15770 Other specified bursopathies, left shoulder
## 15771 Other specified bursopathies, unspecified shoulder
## 15772 Other specified bursopathies, right elbow
## 15773 Other specified bursopathies, left elbow
## 15774 Other specified bursopathies, unspecified elbow
## 15775 Other specified bursopathies, right wrist
## 15776 Other specified bursopathies, left wrist
## 15777 Other specified bursopathies, unspecified wrist
## 15778 Other specified bursopathies, right hand
## 15779 Other specified bursopathies, left hand
## 15780 Other specified bursopathies, unspecified hand
## 15781 Other specified bursopathies, right hip
## 15782 Other specified bursopathies, left hip
## 15783 Other specified bursopathies, unspecified hip
## 15784 Other specified bursopathies, right knee
## 15785 Other specified bursopathies, left knee
## 15786 Other specified bursopathies, unspecified knee
## 15787 Other specified bursopathies, right ankle and foot
## 15788 Other specified bursopathies, left ankle and foot
## 15789 Other specified bursopathies, unspecified ankle and foot
## 15790 Other specified bursopathies, other site
## 15791 Other specified bursopathies, multiple sites
## 15792 Bursopathy, unspecified
## 15793 Palmar fascial fibromatosis [Dupuytren]
## 15794 Knuckle pads
## 15795 Plantar fascial fibromatosis
## 15796 Pseudosarcomatous fibromatosis
## 15797 Necrotizing fasciitis
## 15798 Other fibroblastic disorders
## 15799 Fibroblastic disorder, unspecified
## 15800 Adhesive capsulitis of unspecified shoulder
## 15801 Adhesive capsulitis of right shoulder
## 15802 Adhesive capsulitis of left shoulder
## 15803 Unspecified rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic
## 15804 Unspecified rotator cuff tear or rupture of right shoulder, not specified as traumatic
## 15805 Unspecified rotator cuff tear or rupture of left shoulder, not specified as traumatic
## 15806 Incomplete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic
## 15807 Incomplete rotator cuff tear or rupture of right shoulder, not specified as traumatic
## 15808 Incomplete rotator cuff tear or rupture of left shoulder, not specified as traumatic
## 15809 Complete rotator cuff tear or rupture of unspecified shoulder, not specified as traumatic
## 15810 Complete rotator cuff tear or rupture of right shoulder, not specified as traumatic
## 15811 Complete rotator cuff tear or rupture of left shoulder, not specified as traumatic
## 15812 Bicipital tendinitis, unspecified shoulder
## 15813 Bicipital tendinitis, right shoulder
## 15814 Bicipital tendinitis, left shoulder
## 15815 Calcific tendinitis of unspecified shoulder
## 15816 Calcific tendinitis of right shoulder
## 15817 Calcific tendinitis of left shoulder
## 15818 Impingement syndrome of unspecified shoulder
## 15819 Impingement syndrome of right shoulder
## 15820 Impingement syndrome of left shoulder
## 15821 Bursitis of unspecified shoulder
## 15822 Bursitis of right shoulder
## 15823 Bursitis of left shoulder
## 15824 Other shoulder lesions, unspecified shoulder
## 15825 Other shoulder lesions, right shoulder
## 15826 Other shoulder lesions, left shoulder
## 15827 Shoulder lesion, unspecified, unspecified shoulder
## 15828 Shoulder lesion, unspecified, right shoulder
## 15829 Shoulder lesion, unspecified, left shoulder
## 15830 Gluteal tendinitis, unspecified hip
## 15831 Gluteal tendinitis, right hip
## 15832 Gluteal tendinitis, left hip
## 15833 Psoas tendinitis, unspecified hip
## 15834 Psoas tendinitis, right hip
## 15835 Psoas tendinitis, left hip
## 15836 Iliac crest spur, unspecified hip
## 15837 Iliac crest spur, right hip
## 15838 Iliac crest spur, left hip
## 15839 Iliotibial band syndrome, unspecified leg
## 15840 Iliotibial band syndrome, right leg
## 15841 Iliotibial band syndrome, left leg
## 15842 Tibial collateral bursitis [Pellegrini-Stieda], unspecified leg
## 15843 Tibial collateral bursitis [Pellegrini-Stieda], right leg
## 15844 Tibial collateral bursitis [Pellegrini-Stieda], left leg
## 15845 Patellar tendinitis, unspecified knee
## 15846 Patellar tendinitis, right knee
## 15847 Patellar tendinitis, left knee
## 15848 Achilles tendinitis, unspecified leg
## 15849 Achilles tendinitis, right leg
## 15850 Achilles tendinitis, left leg
## 15851 Peroneal tendinitis, unspecified leg
## 15852 Peroneal tendinitis, right leg
## 15853 Peroneal tendinitis, left leg
## 15854 Anterior tibial syndrome, right leg
## 15855 Anterior tibial syndrome, left leg
## 15856 Anterior tibial syndrome, unspecified leg
## 15857 Posterior tibial tendinitis, right leg
## 15858 Posterior tibial tendinitis, left leg
## 15859 Posterior tibial tendinitis, unspecified leg
## 15860 Other specified enthesopathies of right lower limb, excluding foot
## 15861 Other specified enthesopathies of left lower limb, excluding foot
## 15862 Other specified enthesopathies of unspecified lower limb, excluding foot
## 15863 Unspecified enthesopathy, lower limb, excluding foot
## 15864 Medial epicondylitis, unspecified elbow
## 15865 Medial epicondylitis, right elbow
## 15866 Medial epicondylitis, left elbow
## 15867 Lateral epicondylitis, unspecified elbow
## 15868 Lateral epicondylitis, right elbow
## 15869 Lateral epicondylitis, left elbow
## 15870 Periarthritis, unspecified wrist
## 15871 Periarthritis, right wrist
## 15872 Periarthritis, left wrist
## 15873 Calcaneal spur, unspecified foot
## 15874 Calcaneal spur, right foot
## 15875 Calcaneal spur, left foot
## 15876 Metatarsalgia, unspecified foot
## 15877 Metatarsalgia, right foot
## 15878 Metatarsalgia, left foot
## 15879 Other enthesopathy of unspecified foot and ankle
## 15880 Other enthesopathy of right foot and ankle
## 15881 Other enthesopathy of left foot and ankle
## 15882 Other enthesopathies, not elsewhere classified
## 15883 Enthesopathy, unspecified
## 15884 Rheumatism, unspecified
## 15885 Myalgia, unspecified site
## 15886 Myalgia of mastication muscle
## 15887 Myalgia of auxiliary muscles, head and neck
## 15888 Myalgia, other site
## 15889 Neuralgia and neuritis, unspecified
## 15890 Panniculitis, unspecified
## 15891 Hypertrophy of (infrapatellar) fat pad
## 15892 Residual foreign body in soft tissue
## 15893 Pain in right arm
## 15894 Pain in left arm
## 15895 Pain in arm, unspecified
## 15896 Pain in right leg
## 15897 Pain in left leg
## 15898 Pain in leg, unspecified
## 15899 Pain in unspecified limb
## 15900 Pain in right upper arm
## 15901 Pain in left upper arm
## 15902 Pain in unspecified upper arm
## 15903 Pain in right forearm
## 15904 Pain in left forearm
## 15905 Pain in unspecified forearm
## 15906 Pain in right hand
## 15907 Pain in left hand
## 15908 Pain in unspecified hand
## 15909 Pain in right finger(s)
## 15910 Pain in left finger(s)
## 15911 Pain in unspecified finger(s)
## 15912 Pain in right thigh
## 15913 Pain in left thigh
## 15914 Pain in unspecified thigh
## 15915 Pain in right lower leg
## 15916 Pain in left lower leg
## 15917 Pain in unspecified lower leg
## 15918 Pain in right foot
## 15919 Pain in left foot
## 15920 Pain in unspecified foot
## 15921 Pain in right toe(s)
## 15922 Pain in left toe(s)
## 15923 Pain in unspecified toe(s)
## 15924 Fibromyalgia
## 15925 Nontraumatic compartment syndrome of right upper extremity
## 15926 Nontraumatic compartment syndrome of left upper extremity
## 15927 Nontraumatic compartment syndrome of unspecified upper extremity
## 15928 Nontraumatic compartment syndrome of right lower extremity
## 15929 Nontraumatic compartment syndrome of left lower extremity
## 15930 Nontraumatic compartment syndrome of unspecified lower extremity
## 15931 Nontraumatic compartment syndrome of abdomen
## 15932 Nontraumatic compartment syndrome of other sites
## 15933 Nontraumatic hematoma of soft tissue
## 15934 Other specified soft tissue disorders
## 15935 Soft tissue disorder, unspecified
## 15936 Age-related osteoporosis with current pathological fracture, unspecified site, initial encounter for fracture
## 15937 Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with routine healing
## 15938 Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing
## 15939 Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with nonunion
## 15940 Age-related osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with malunion
## 15941 Age-related osteoporosis with current pathological fracture, unspecified site, sequela
## 15942 Age-related osteoporosis with current pathological fracture, right shoulder, initial encounter for fracture
## 15943 Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with routine healing
## 15944 Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing
## 15945 Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with nonunion
## 15946 Age-related osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with malunion
## 15947 Age-related osteoporosis with current pathological fracture, right shoulder, sequela
## 15948 Age-related osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture
## 15949 Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with routine healing
## 15950 Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing
## 15951 Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with nonunion
## 15952 Age-related osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with malunion
## 15953 Age-related osteoporosis with current pathological fracture, left shoulder, sequela
## 15954 Age-related osteoporosis with current pathological fracture, unspecified shoulder, initial encounter for fracture
## 15955 Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing
## 15956 Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 15957 Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion
## 15958 Age-related osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion
## 15959 Age-related osteoporosis with current pathological fracture, unspecified shoulder, sequela
## 15960 Age-related osteoporosis with current pathological fracture, right humerus, initial encounter for fracture
## 15961 Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with routine healing
## 15962 Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with delayed healing
## 15963 Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with nonunion
## 15964 Age-related osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with malunion
## 15965 Age-related osteoporosis with current pathological fracture, right humerus, sequela
## 15966 Age-related osteoporosis with current pathological fracture, left humerus, initial encounter for fracture
## 15967 Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with routine healing
## 15968 Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with delayed healing
## 15969 Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with nonunion
## 15970 Age-related osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with malunion
## 15971 Age-related osteoporosis with current pathological fracture, left humerus, sequela
## 15972 Age-related osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture
## 15973 Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing
## 15974 Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing
## 15975 Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion
## 15976 Age-related osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion
## 15977 Age-related osteoporosis with current pathological fracture, unspecified humerus, sequela
## 15978 Age-related osteoporosis with current pathological fracture, right forearm, initial encounter for fracture
## 15979 Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with routine healing
## 15980 Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with delayed healing
## 15981 Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with nonunion
## 15982 Age-related osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with malunion
## 15983 Age-related osteoporosis with current pathological fracture, right forearm, sequela
## 15984 Age-related osteoporosis with current pathological fracture, left forearm, initial encounter for fracture
## 15985 Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with routine healing
## 15986 Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with delayed healing
## 15987 Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with nonunion
## 15988 Age-related osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with malunion
## 15989 Age-related osteoporosis with current pathological fracture, left forearm, sequela
## 15990 Age-related osteoporosis with current pathological fracture, unspecified forearm, initial encounter for fracture
## 15991 Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with routine healing
## 15992 Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with delayed healing
## 15993 Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with nonunion
## 15994 Age-related osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with malunion
## 15995 Age-related osteoporosis with current pathological fracture, unspecified forearm, sequela
## 15996 Age-related osteoporosis with current pathological fracture, right hand, initial encounter for fracture
## 15997 Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing
## 15998 Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with delayed healing
## 15999 Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with nonunion
## 16000 Age-related osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with malunion
## 16001 Age-related osteoporosis with current pathological fracture, right hand, sequela
## 16002 Age-related osteoporosis with current pathological fracture, left hand, initial encounter for fracture
## 16003 Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with routine healing
## 16004 Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with delayed healing
## 16005 Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with nonunion
## 16006 Age-related osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with malunion
## 16007 Age-related osteoporosis with current pathological fracture, left hand, sequela
## 16008 Age-related osteoporosis with current pathological fracture, unspecified hand, initial encounter for fracture
## 16009 Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing
## 16010 Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing
## 16011 Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion
## 16012 Age-related osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with malunion
## 16013 Age-related osteoporosis with current pathological fracture, unspecified hand, sequela
## 16014 Age-related osteoporosis with current pathological fracture, right femur, initial encounter for fracture
## 16015 Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with routine healing
## 16016 Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with delayed healing
## 16017 Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with nonunion
## 16018 Age-related osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with malunion
## 16019 Age-related osteoporosis with current pathological fracture, right femur, sequela
## 16020 Age-related osteoporosis with current pathological fracture, left femur, initial encounter for fracture
## 16021 Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with routine healing
## 16022 Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with delayed healing
## 16023 Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with nonunion
## 16024 Age-related osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with malunion
## 16025 Age-related osteoporosis with current pathological fracture, left femur, sequela
## 16026 Age-related osteoporosis with current pathological fracture, unspecified femur, initial encounter for fracture
## 16027 Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing
## 16028 Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing
## 16029 Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion
## 16030 Age-related osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with malunion
## 16031 Age-related osteoporosis with current pathological fracture, unspecified femur, sequela
## 16032 Age-related osteoporosis with current pathological fracture, right lower leg, initial encounter for fracture
## 16033 Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with routine healing
## 16034 Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with delayed healing
## 16035 Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with nonunion
## 16036 Age-related osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with malunion
## 16037 Age-related osteoporosis with current pathological fracture, right lower leg, sequela
## 16038 Age-related osteoporosis with current pathological fracture, left lower leg, initial encounter for fracture
## 16039 Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with routine healing
## 16040 Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with delayed healing
## 16041 Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with nonunion
## 16042 Age-related osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with malunion
## 16043 Age-related osteoporosis with current pathological fracture, left lower leg, sequela
## 16044 Age-related osteoporosis with current pathological fracture, unspecified lower leg, initial encounter for fracture
## 16045 Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with routine healing
## 16046 Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with delayed healing
## 16047 Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with nonunion
## 16048 Age-related osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with malunion
## 16049 Age-related osteoporosis with current pathological fracture, unspecified lower leg, sequela
## 16050 Age-related osteoporosis with current pathological fracture, right ankle and foot, initial encounter for fracture
## 16051 Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with routine healing
## 16052 Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with delayed healing
## 16053 Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with nonunion
## 16054 Age-related osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with malunion
## 16055 Age-related osteoporosis with current pathological fracture, right ankle and foot, sequela
## 16056 Age-related osteoporosis with current pathological fracture, left ankle and foot, initial encounter for fracture
## 16057 Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with routine healing
## 16058 Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with delayed healing
## 16059 Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with nonunion
## 16060 Age-related osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with malunion
## 16061 Age-related osteoporosis with current pathological fracture, left ankle and foot, sequela
## 16062 Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, initial encounter for fracture
## 16063 Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with routine healing
## 16064 Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with delayed healing
## 16065 Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with nonunion
## 16066 Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with malunion
## 16067 Age-related osteoporosis with current pathological fracture, unspecified ankle and foot, sequela
## 16068 Age-related osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture
## 16069 Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with routine healing
## 16070 Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with delayed healing
## 16071 Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with nonunion
## 16072 Age-related osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with malunion
## 16073 Age-related osteoporosis with current pathological fracture, vertebra(e), sequela
## 16074 Other osteoporosis with current pathological fracture, unspecified site, initial encounter for fracture
## 16075 Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with routine healing
## 16076 Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing
## 16077 Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with nonunion
## 16078 Other osteoporosis with current pathological fracture, unspecified site, subsequent encounter for fracture with malunion
## 16079 Other osteoporosis with current pathological fracture, unspecified site, sequela
## 16080 Other osteoporosis with current pathological fracture, right shoulder, initial encounter for fracture
## 16081 Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with routine healing
## 16082 Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing
## 16083 Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with nonunion
## 16084 Other osteoporosis with current pathological fracture, right shoulder, subsequent encounter for fracture with malunion
## 16085 Other osteoporosis with current pathological fracture, right shoulder, sequela
## 16086 Other osteoporosis with current pathological fracture, left shoulder, initial encounter for fracture
## 16087 Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with routine healing
## 16088 Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing
## 16089 Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with nonunion
## 16090 Other osteoporosis with current pathological fracture, left shoulder, subsequent encounter for fracture with malunion
## 16091 Other osteoporosis with current pathological fracture, left shoulder, sequela
## 16092 Other osteoporosis with current pathological fracture, unspecified shoulder, initial encounter for fracture
## 16093 Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing
## 16094 Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 16095 Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion
## 16096 Other osteoporosis with current pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion
## 16097 Other osteoporosis with current pathological fracture, unspecified shoulder, sequela
## 16098 Other osteoporosis with current pathological fracture, right humerus, initial encounter for fracture
## 16099 Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with routine healing
## 16100 Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with delayed healing
## 16101 Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with nonunion
## 16102 Other osteoporosis with current pathological fracture, right humerus, subsequent encounter for fracture with malunion
## 16103 Other osteoporosis with current pathological fracture, right humerus, sequela
## 16104 Other osteoporosis with current pathological fracture, left humerus, initial encounter for fracture
## 16105 Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with routine healing
## 16106 Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with delayed healing
## 16107 Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with nonunion
## 16108 Other osteoporosis with current pathological fracture, left humerus, subsequent encounter for fracture with malunion
## 16109 Other osteoporosis with current pathological fracture, left humerus, sequela
## 16110 Other osteoporosis with current pathological fracture, unspecified humerus, initial encounter for fracture
## 16111 Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing
## 16112 Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing
## 16113 Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion
## 16114 Other osteoporosis with current pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion
## 16115 Other osteoporosis with current pathological fracture, unspecified humerus, sequela
## 16116 Other osteoporosis with current pathological fracture, right forearm, initial encounter for fracture
## 16117 Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with routine healing
## 16118 Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with delayed healing
## 16119 Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with nonunion
## 16120 Other osteoporosis with current pathological fracture, right forearm, subsequent encounter for fracture with malunion
## 16121 Other osteoporosis with current pathological fracture, right forearm, sequela
## 16122 Other osteoporosis with current pathological fracture, left forearm, initial encounter for fracture
## 16123 Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with routine healing
## 16124 Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with delayed healing
## 16125 Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with nonunion
## 16126 Other osteoporosis with current pathological fracture, left forearm, subsequent encounter for fracture with malunion
## 16127 Other osteoporosis with current pathological fracture, left forearm, sequela
## 16128 Other osteoporosis with current pathological fracture, unspecified forearm, initial encounter for fracture
## 16129 Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with routine healing
## 16130 Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with delayed healing
## 16131 Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with nonunion
## 16132 Other osteoporosis with current pathological fracture, unspecified forearm, subsequent encounter for fracture with malunion
## 16133 Other osteoporosis with current pathological fracture, unspecified forearm, sequela
## 16134 Other osteoporosis with current pathological fracture, right hand, initial encounter for fracture
## 16135 Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with routine healing
## 16136 Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with delayed healing
## 16137 Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with nonunion
## 16138 Other osteoporosis with current pathological fracture, right hand, subsequent encounter for fracture with malunion
## 16139 Other osteoporosis with current pathological fracture, right hand, sequela
## 16140 Other osteoporosis with current pathological fracture, left hand, initial encounter for fracture
## 16141 Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with routine healing
## 16142 Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with delayed healing
## 16143 Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with nonunion
## 16144 Other osteoporosis with current pathological fracture, left hand, subsequent encounter for fracture with malunion
## 16145 Other osteoporosis with current pathological fracture, left hand, sequela
## 16146 Other osteoporosis with current pathological fracture, unspecified hand, initial encounter for fracture
## 16147 Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing
## 16148 Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing
## 16149 Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion
## 16150 Other osteoporosis with current pathological fracture, unspecified hand, subsequent encounter for fracture with malunion
## 16151 Other osteoporosis with current pathological fracture, unspecified hand, sequela
## 16152 Other osteoporosis with current pathological fracture, right femur, initial encounter for fracture
## 16153 Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with routine healing
## 16154 Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with delayed healing
## 16155 Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with nonunion
## 16156 Other osteoporosis with current pathological fracture, right femur, subsequent encounter for fracture with malunion
## 16157 Other osteoporosis with current pathological fracture, right femur, sequela
## 16158 Other osteoporosis with current pathological fracture, left femur, initial encounter for fracture
## 16159 Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with routine healing
## 16160 Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with delayed healing
## 16161 Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with nonunion
## 16162 Other osteoporosis with current pathological fracture, left femur, subsequent encounter for fracture with malunion
## 16163 Other osteoporosis with current pathological fracture, left femur, sequela
## 16164 Other osteoporosis with current pathological fracture, unspecified femur, initial encounter for fracture
## 16165 Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing
## 16166 Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing
## 16167 Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion
## 16168 Other osteoporosis with current pathological fracture, unspecified femur, subsequent encounter for fracture with malunion
## 16169 Other osteoporosis with current pathological fracture, unspecified femur, sequela
## 16170 Other osteoporosis with current pathological fracture, right lower leg, initial encounter for fracture
## 16171 Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with routine healing
## 16172 Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with delayed healing
## 16173 Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with nonunion
## 16174 Other osteoporosis with current pathological fracture, right lower leg, subsequent encounter for fracture with malunion
## 16175 Other osteoporosis with current pathological fracture, right lower leg, sequela
## 16176 Other osteoporosis with current pathological fracture, left lower leg, initial encounter for fracture
## 16177 Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with routine healing
## 16178 Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with delayed healing
## 16179 Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with nonunion
## 16180 Other osteoporosis with current pathological fracture, left lower leg, subsequent encounter for fracture with malunion
## 16181 Other osteoporosis with current pathological fracture, left lower leg, sequela
## 16182 Other osteoporosis with current pathological fracture, unspecified lower leg, initial encounter for fracture
## 16183 Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with routine healing
## 16184 Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with delayed healing
## 16185 Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with nonunion
## 16186 Other osteoporosis with current pathological fracture, unspecified lower leg, subsequent encounter for fracture with malunion
## 16187 Other osteoporosis with current pathological fracture, unspecified lower leg, sequela
## 16188 Other osteoporosis with current pathological fracture, right ankle and foot, initial encounter for fracture
## 16189 Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with routine healing
## 16190 Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with delayed healing
## 16191 Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with nonunion
## 16192 Other osteoporosis with current pathological fracture, right ankle and foot, subsequent encounter for fracture with malunion
## 16193 Other osteoporosis with current pathological fracture, right ankle and foot, sequela
## 16194 Other osteoporosis with current pathological fracture, left ankle and foot, initial encounter for fracture
## 16195 Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with routine healing
## 16196 Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with delayed healing
## 16197 Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with nonunion
## 16198 Other osteoporosis with current pathological fracture, left ankle and foot, subsequent encounter for fracture with malunion
## 16199 Other osteoporosis with current pathological fracture, left ankle and foot, sequela
## 16200 Other osteoporosis with current pathological fracture, unspecified ankle and foot, initial encounter for fracture
## 16201 Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with routine healing
## 16202 Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with delayed healing
## 16203 Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with nonunion
## 16204 Other osteoporosis with current pathological fracture, unspecified ankle and foot, subsequent encounter for fracture with malunion
## 16205 Other osteoporosis with current pathological fracture, unspecified ankle and foot, sequela
## 16206 Other osteoporosis with current pathological fracture, vertebra(e), initial encounter for fracture
## 16207 Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with routine healing
## 16208 Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with delayed healing
## 16209 Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with nonunion
## 16210 Other osteoporosis with current pathological fracture, vertebra(e), subsequent encounter for fracture with malunion
## 16211 Other osteoporosis with current pathological fracture, vertebra(e), sequela
## 16212 Age-related osteoporosis without current pathological fracture
## 16213 Localized osteoporosis [Lequesne]
## 16214 Other osteoporosis without current pathological fracture
## 16215 Puerperal osteomalacia
## 16216 Senile osteomalacia
## 16217 Adult osteomalacia due to malabsorption
## 16218 Adult osteomalacia due to malnutrition
## 16219 Aluminum bone disease
## 16220 Other drug-induced osteomalacia in adults
## 16221 Other adult osteomalacia
## 16222 Adult osteomalacia, unspecified
## 16223 Stress fracture, unspecified site, initial encounter for fracture
## 16224 Stress fracture, unspecified site, subsequent encounter for fracture with routine healing
## 16225 Stress fracture, unspecified site, subsequent encounter for fracture with delayed healing
## 16226 Stress fracture, unspecified site, subsequent encounter for fracture with nonunion
## 16227 Stress fracture, unspecified site, subsequent encounter for fracture with malunion
## 16228 Stress fracture, unspecified site, sequela
## 16229 Stress fracture, right shoulder, initial encounter for fracture
## 16230 Stress fracture, right shoulder, subsequent encounter for fracture with routine healing
## 16231 Stress fracture, right shoulder, subsequent encounter for fracture with delayed healing
## 16232 Stress fracture, right shoulder, subsequent encounter for fracture with nonunion
## 16233 Stress fracture, right shoulder, subsequent encounter for fracture with malunion
## 16234 Stress fracture, right shoulder, sequela
## 16235 Stress fracture, left shoulder, initial encounter for fracture
## 16236 Stress fracture, left shoulder, subsequent encounter for fracture with routine healing
## 16237 Stress fracture, left shoulder, subsequent encounter for fracture with delayed healing
## 16238 Stress fracture, left shoulder, subsequent encounter for fracture with nonunion
## 16239 Stress fracture, left shoulder, subsequent encounter for fracture with malunion
## 16240 Stress fracture, left shoulder, sequela
## 16241 Stress fracture, unspecified shoulder, initial encounter for fracture
## 16242 Stress fracture, unspecified shoulder, subsequent encounter for fracture with routine healing
## 16243 Stress fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 16244 Stress fracture, unspecified shoulder, subsequent encounter for fracture with nonunion
## 16245 Stress fracture, unspecified shoulder, subsequent encounter for fracture with malunion
## 16246 Stress fracture, unspecified shoulder, sequela
## 16247 Stress fracture, right humerus, initial encounter for fracture
## 16248 Stress fracture, right humerus, subsequent encounter for fracture with routine healing
## 16249 Stress fracture, right humerus, subsequent encounter for fracture with delayed healing
## 16250 Stress fracture, right humerus, subsequent encounter for fracture with nonunion
## 16251 Stress fracture, right humerus, subsequent encounter for fracture with malunion
## 16252 Stress fracture, right humerus, sequela
## 16253 Stress fracture, left humerus, initial encounter for fracture
## 16254 Stress fracture, left humerus, subsequent encounter for fracture with routine healing
## 16255 Stress fracture, left humerus, subsequent encounter for fracture with delayed healing
## 16256 Stress fracture, left humerus, subsequent encounter for fracture with nonunion
## 16257 Stress fracture, left humerus, subsequent encounter for fracture with malunion
## 16258 Stress fracture, left humerus, sequela
## 16259 Stress fracture, unspecified humerus, initial encounter for fracture
## 16260 Stress fracture, unspecified humerus, subsequent encounter for fracture with routine healing
## 16261 Stress fracture, unspecified humerus, subsequent encounter for fracture with delayed healing
## 16262 Stress fracture, unspecified humerus, subsequent encounter for fracture with nonunion
## 16263 Stress fracture, unspecified humerus, subsequent encounter for fracture with malunion
## 16264 Stress fracture, unspecified humerus, sequela
## 16265 Stress fracture, right ulna, initial encounter for fracture
## 16266 Stress fracture, right ulna, subsequent encounter for fracture with routine healing
## 16267 Stress fracture, right ulna, subsequent encounter for fracture with delayed healing
## 16268 Stress fracture, right ulna, subsequent encounter for fracture with nonunion
## 16269 Stress fracture, right ulna, subsequent encounter for fracture with malunion
## 16270 Stress fracture, right ulna, sequela
## 16271 Stress fracture, left ulna, initial encounter for fracture
## 16272 Stress fracture, left ulna, subsequent encounter for fracture with routine healing
## 16273 Stress fracture, left ulna, subsequent encounter for fracture with delayed healing
## 16274 Stress fracture, left ulna, subsequent encounter for fracture with nonunion
## 16275 Stress fracture, left ulna, subsequent encounter for fracture with malunion
## 16276 Stress fracture, left ulna, sequela
## 16277 Stress fracture, right radius, initial encounter for fracture
## 16278 Stress fracture, right radius, subsequent encounter for fracture with routine healing
## 16279 Stress fracture, right radius, subsequent encounter for fracture with delayed healing
## 16280 Stress fracture, right radius, subsequent encounter for fracture with nonunion
## 16281 Stress fracture, right radius, subsequent encounter for fracture with malunion
## 16282 Stress fracture, right radius, sequela
## 16283 Stress fracture, left radius, initial encounter for fracture
## 16284 Stress fracture, left radius, subsequent encounter for fracture with routine healing
## 16285 Stress fracture, left radius, subsequent encounter for fracture with delayed healing
## 16286 Stress fracture, left radius, subsequent encounter for fracture with nonunion
## 16287 Stress fracture, left radius, subsequent encounter for fracture with malunion
## 16288 Stress fracture, left radius, sequela
## 16289 Stress fracture, unspecified ulna and radius, initial encounter for fracture
## 16290 Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing
## 16291 Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing
## 16292 Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion
## 16293 Stress fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion
## 16294 Stress fracture, unspecified ulna and radius, sequela
## 16295 Stress fracture, right hand, initial encounter for fracture
## 16296 Stress fracture, right hand, subsequent encounter for fracture with routine healing
## 16297 Stress fracture, right hand, subsequent encounter for fracture with delayed healing
## 16298 Stress fracture, right hand, subsequent encounter for fracture with nonunion
## 16299 Stress fracture, right hand, subsequent encounter for fracture with malunion
## 16300 Stress fracture, right hand, sequela
## 16301 Stress fracture, left hand, initial encounter for fracture
## 16302 Stress fracture, left hand, subsequent encounter for fracture with routine healing
## 16303 Stress fracture, left hand, subsequent encounter for fracture with delayed healing
## 16304 Stress fracture, left hand, subsequent encounter for fracture with nonunion
## 16305 Stress fracture, left hand, subsequent encounter for fracture with malunion
## 16306 Stress fracture, left hand, sequela
## 16307 Stress fracture, unspecified hand, initial encounter for fracture
## 16308 Stress fracture, unspecified hand, subsequent encounter for fracture with routine healing
## 16309 Stress fracture, unspecified hand, subsequent encounter for fracture with delayed healing
## 16310 Stress fracture, unspecified hand, subsequent encounter for fracture with nonunion
## 16311 Stress fracture, unspecified hand, subsequent encounter for fracture with malunion
## 16312 Stress fracture, unspecified hand, sequela
## 16313 Stress fracture, right finger(s), initial encounter for fracture
## 16314 Stress fracture, right finger(s), subsequent encounter for fracture with routine healing
## 16315 Stress fracture, right finger(s), subsequent encounter for fracture with delayed healing
## 16316 Stress fracture, right finger(s), subsequent encounter for fracture with nonunion
## 16317 Stress fracture, right finger(s), subsequent encounter for fracture with malunion
## 16318 Stress fracture, right finger(s), sequela
## 16319 Stress fracture, left finger(s), initial encounter for fracture
## 16320 Stress fracture, left finger(s), subsequent encounter for fracture with routine healing
## 16321 Stress fracture, left finger(s), subsequent encounter for fracture with delayed healing
## 16322 Stress fracture, left finger(s), subsequent encounter for fracture with nonunion
## 16323 Stress fracture, left finger(s), subsequent encounter for fracture with malunion
## 16324 Stress fracture, left finger(s), sequela
## 16325 Stress fracture, unspecified finger(s), initial encounter for fracture
## 16326 Stress fracture, unspecified finger(s), subsequent encounter for fracture with routine healing
## 16327 Stress fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing
## 16328 Stress fracture, unspecified finger(s), subsequent encounter for fracture with nonunion
## 16329 Stress fracture, unspecified finger(s), subsequent encounter for fracture with malunion
## 16330 Stress fracture, unspecified finger(s), sequela
## 16331 Stress fracture, pelvis, initial encounter for fracture
## 16332 Stress fracture, pelvis, subsequent encounter for fracture with routine healing
## 16333 Stress fracture, pelvis, subsequent encounter for fracture with delayed healing
## 16334 Stress fracture, pelvis, subsequent encounter for fracture with nonunion
## 16335 Stress fracture, pelvis, subsequent encounter for fracture with malunion
## 16336 Stress fracture, pelvis, sequela
## 16337 Stress fracture, right femur, initial encounter for fracture
## 16338 Stress fracture, right femur, subsequent encounter for fracture with routine healing
## 16339 Stress fracture, right femur, subsequent encounter for fracture with delayed healing
## 16340 Stress fracture, right femur, subsequent encounter for fracture with nonunion
## 16341 Stress fracture, right femur, subsequent encounter for fracture with malunion
## 16342 Stress fracture, right femur, sequela
## 16343 Stress fracture, left femur, initial encounter for fracture
## 16344 Stress fracture, left femur, subsequent encounter for fracture with routine healing
## 16345 Stress fracture, left femur, subsequent encounter for fracture with delayed healing
## 16346 Stress fracture, left femur, subsequent encounter for fracture with nonunion
## 16347 Stress fracture, left femur, subsequent encounter for fracture with malunion
## 16348 Stress fracture, left femur, sequela
## 16349 Stress fracture, unspecified femur, initial encounter for fracture
## 16350 Stress fracture, unspecified femur, subsequent encounter for fracture with routine healing
## 16351 Stress fracture, unspecified femur, subsequent encounter for fracture with delayed healing
## 16352 Stress fracture, unspecified femur, subsequent encounter for fracture with nonunion
## 16353 Stress fracture, unspecified femur, subsequent encounter for fracture with malunion
## 16354 Stress fracture, unspecified femur, sequela
## 16355 Stress fracture, hip, unspecified, initial encounter for fracture
## 16356 Stress fracture, hip, unspecified, subsequent encounter for fracture with routine healing
## 16357 Stress fracture, hip, unspecified, subsequent encounter for fracture with delayed healing
## 16358 Stress fracture, hip, unspecified, subsequent encounter for fracture with nonunion
## 16359 Stress fracture, hip, unspecified, subsequent encounter for fracture with malunion
## 16360 Stress fracture, hip, unspecified, sequela
## 16361 Stress fracture, right tibia, initial encounter for fracture
## 16362 Stress fracture, right tibia, subsequent encounter for fracture with routine healing
## 16363 Stress fracture, right tibia, subsequent encounter for fracture with delayed healing
## 16364 Stress fracture, right tibia, subsequent encounter for fracture with nonunion
## 16365 Stress fracture, right tibia, subsequent encounter for fracture with malunion
## 16366 Stress fracture, right tibia, sequela
## 16367 Stress fracture, left tibia, initial encounter for fracture
## 16368 Stress fracture, left tibia, subsequent encounter for fracture with routine healing
## 16369 Stress fracture, left tibia, subsequent encounter for fracture with delayed healing
## 16370 Stress fracture, left tibia, subsequent encounter for fracture with nonunion
## 16371 Stress fracture, left tibia, subsequent encounter for fracture with malunion
## 16372 Stress fracture, left tibia, sequela
## 16373 Stress fracture, right fibula, initial encounter for fracture
## 16374 Stress fracture, right fibula, subsequent encounter for fracture with routine healing
## 16375 Stress fracture, right fibula, subsequent encounter for fracture with delayed healing
## 16376 Stress fracture, right fibula, subsequent encounter for fracture with nonunion
## 16377 Stress fracture, right fibula, subsequent encounter for fracture with malunion
## 16378 Stress fracture, right fibula, sequela
## 16379 Stress fracture, left fibula, initial encounter for fracture
## 16380 Stress fracture, left fibula, subsequent encounter for fracture with routine healing
## 16381 Stress fracture, left fibula, subsequent encounter for fracture with delayed healing
## 16382 Stress fracture, left fibula, subsequent encounter for fracture with nonunion
## 16383 Stress fracture, left fibula, subsequent encounter for fracture with malunion
## 16384 Stress fracture, left fibula, sequela
## 16385 Stress fracture, unspecified tibia and fibula, initial encounter for fracture
## 16386 Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with routine healing
## 16387 Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing
## 16388 Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion
## 16389 Stress fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion
## 16390 Stress fracture, unspecified tibia and fibula, sequela
## 16391 Stress fracture, right ankle, initial encounter for fracture
## 16392 Stress fracture, right ankle, subsequent encounter for fracture with routine healing
## 16393 Stress fracture, right ankle, subsequent encounter for fracture with delayed healing
## 16394 Stress fracture, right ankle, subsequent encounter for fracture with nonunion
## 16395 Stress fracture, right ankle, subsequent encounter for fracture with malunion
## 16396 Stress fracture, right ankle, sequela
## 16397 Stress fracture, left ankle, initial encounter for fracture
## 16398 Stress fracture, left ankle, subsequent encounter for fracture with routine healing
## 16399 Stress fracture, left ankle, subsequent encounter for fracture with delayed healing
## 16400 Stress fracture, left ankle, subsequent encounter for fracture with nonunion
## 16401 Stress fracture, left ankle, subsequent encounter for fracture with malunion
## 16402 Stress fracture, left ankle, sequela
## 16403 Stress fracture, unspecified ankle, initial encounter for fracture
## 16404 Stress fracture, unspecified ankle, subsequent encounter for fracture with routine healing
## 16405 Stress fracture, unspecified ankle, subsequent encounter for fracture with delayed healing
## 16406 Stress fracture, unspecified ankle, subsequent encounter for fracture with nonunion
## 16407 Stress fracture, unspecified ankle, subsequent encounter for fracture with malunion
## 16408 Stress fracture, unspecified ankle, sequela
## 16409 Stress fracture, right foot, initial encounter for fracture
## 16410 Stress fracture, right foot, subsequent encounter for fracture with routine healing
## 16411 Stress fracture, right foot, subsequent encounter for fracture with delayed healing
## 16412 Stress fracture, right foot, subsequent encounter for fracture with nonunion
## 16413 Stress fracture, right foot, subsequent encounter for fracture with malunion
## 16414 Stress fracture, right foot, sequela
## 16415 Stress fracture, left foot, initial encounter for fracture
## 16416 Stress fracture, left foot, subsequent encounter for fracture with routine healing
## 16417 Stress fracture, left foot, subsequent encounter for fracture with delayed healing
## 16418 Stress fracture, left foot, subsequent encounter for fracture with nonunion
## 16419 Stress fracture, left foot, subsequent encounter for fracture with malunion
## 16420 Stress fracture, left foot, sequela
## 16421 Stress fracture, unspecified foot, initial encounter for fracture
## 16422 Stress fracture, unspecified foot, subsequent encounter for fracture with routine healing
## 16423 Stress fracture, unspecified foot, subsequent encounter for fracture with delayed healing
## 16424 Stress fracture, unspecified foot, subsequent encounter for fracture with nonunion
## 16425 Stress fracture, unspecified foot, subsequent encounter for fracture with malunion
## 16426 Stress fracture, unspecified foot, sequela
## 16427 Stress fracture, right toe(s), initial encounter for fracture
## 16428 Stress fracture, right toe(s), subsequent encounter for fracture with routine healing
## 16429 Stress fracture, right toe(s), subsequent encounter for fracture with delayed healing
## 16430 Stress fracture, right toe(s), subsequent encounter for fracture with nonunion
## 16431 Stress fracture, right toe(s), subsequent encounter for fracture with malunion
## 16432 Stress fracture, right toe(s), sequela
## 16433 Stress fracture, left toe(s), initial encounter for fracture
## 16434 Stress fracture, left toe(s), subsequent encounter for fracture with routine healing
## 16435 Stress fracture, left toe(s), subsequent encounter for fracture with delayed healing
## 16436 Stress fracture, left toe(s), subsequent encounter for fracture with nonunion
## 16437 Stress fracture, left toe(s), subsequent encounter for fracture with malunion
## 16438 Stress fracture, left toe(s), sequela
## 16439 Stress fracture, unspecified toe(s), initial encounter for fracture
## 16440 Stress fracture, unspecified toe(s), subsequent encounter for fracture with routine healing
## 16441 Stress fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing
## 16442 Stress fracture, unspecified toe(s), subsequent encounter for fracture with nonunion
## 16443 Stress fracture, unspecified toe(s), subsequent encounter for fracture with malunion
## 16444 Stress fracture, unspecified toe(s), sequela
## 16445 Stress fracture, other site, initial encounter for fracture
## 16446 Stress fracture, other site, subsequent encounter for fracture with routine healing
## 16447 Stress fracture, other site, subsequent encounter for fracture with delayed healing
## 16448 Stress fracture, other site, subsequent encounter for fracture with nonunion
## 16449 Stress fracture, other site, subsequent encounter for fracture with malunion
## 16450 Stress fracture, other site, sequela
## 16451 Pathological fracture, unspecified site, initial encounter for fracture
## 16452 Pathological fracture, unspecified site, subsequent encounter for fracture with routine healing
## 16453 Pathological fracture, unspecified site, subsequent encounter for fracture with delayed healing
## 16454 Pathological fracture, unspecified site, subsequent encounter for fracture with nonunion
## 16455 Pathological fracture, unspecified site, subsequent encounter for fracture with malunion
## 16456 Pathological fracture, unspecified site, sequela
## 16457 Pathological fracture, right shoulder, initial encounter for fracture
## 16458 Pathological fracture, right shoulder, subsequent encounter for fracture with routine healing
## 16459 Pathological fracture, right shoulder, subsequent encounter for fracture with delayed healing
## 16460 Pathological fracture, right shoulder, subsequent encounter for fracture with nonunion
## 16461 Pathological fracture, right shoulder, subsequent encounter for fracture with malunion
## 16462 Pathological fracture, right shoulder, sequela
## 16463 Pathological fracture, left shoulder, initial encounter for fracture
## 16464 Pathological fracture, left shoulder, subsequent encounter for fracture with routine healing
## 16465 Pathological fracture, left shoulder, subsequent encounter for fracture with delayed healing
## 16466 Pathological fracture, left shoulder, subsequent encounter for fracture with nonunion
## 16467 Pathological fracture, left shoulder, subsequent encounter for fracture with malunion
## 16468 Pathological fracture, left shoulder, sequela
## 16469 Pathological fracture, unspecified shoulder, initial encounter for fracture
## 16470 Pathological fracture, unspecified shoulder, subsequent encounter for fracture with routine healing
## 16471 Pathological fracture, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 16472 Pathological fracture, unspecified shoulder, subsequent encounter for fracture with nonunion
## 16473 Pathological fracture, unspecified shoulder, subsequent encounter for fracture with malunion
## 16474 Pathological fracture, unspecified shoulder, sequela
## 16475 Pathological fracture, right humerus, initial encounter for fracture
## 16476 Pathological fracture, right humerus, subsequent encounter for fracture with routine healing
## 16477 Pathological fracture, right humerus, subsequent encounter for fracture with delayed healing
## 16478 Pathological fracture, right humerus, subsequent encounter for fracture with nonunion
## 16479 Pathological fracture, right humerus, subsequent encounter for fracture with malunion
## 16480 Pathological fracture, right humerus, sequela
## 16481 Pathological fracture, left humerus, initial encounter for fracture
## 16482 Pathological fracture, left humerus, subsequent encounter for fracture with routine healing
## 16483 Pathological fracture, left humerus, subsequent encounter for fracture with delayed healing
## 16484 Pathological fracture, left humerus, subsequent encounter for fracture with nonunion
## 16485 Pathological fracture, left humerus, subsequent encounter for fracture with malunion
## 16486 Pathological fracture, left humerus, sequela
## 16487 Pathological fracture, unspecified humerus, initial encounter for fracture
## 16488 Pathological fracture, unspecified humerus, subsequent encounter for fracture with routine healing
## 16489 Pathological fracture, unspecified humerus, subsequent encounter for fracture with delayed healing
## 16490 Pathological fracture, unspecified humerus, subsequent encounter for fracture with nonunion
## 16491 Pathological fracture, unspecified humerus, subsequent encounter for fracture with malunion
## 16492 Pathological fracture, unspecified humerus, sequela
## 16493 Pathological fracture, right ulna, initial encounter for fracture
## 16494 Pathological fracture, right ulna, subsequent encounter for fracture with routine healing
## 16495 Pathological fracture, right ulna, subsequent encounter for fracture with delayed healing
## 16496 Pathological fracture, right ulna, subsequent encounter for fracture with nonunion
## 16497 Pathological fracture, right ulna, subsequent encounter for fracture with malunion
## 16498 Pathological fracture, right ulna, sequela
## 16499 Pathological fracture, left ulna, initial encounter for fracture
## 16500 Pathological fracture, left ulna, subsequent encounter for fracture with routine healing
## 16501 Pathological fracture, left ulna, subsequent encounter for fracture with delayed healing
## 16502 Pathological fracture, left ulna, subsequent encounter for fracture with nonunion
## 16503 Pathological fracture, left ulna, subsequent encounter for fracture with malunion
## 16504 Pathological fracture, left ulna, sequela
## 16505 Pathological fracture, right radius, initial encounter for fracture
## 16506 Pathological fracture, right radius, subsequent encounter for fracture with routine healing
## 16507 Pathological fracture, right radius, subsequent encounter for fracture with delayed healing
## 16508 Pathological fracture, right radius, subsequent encounter for fracture with nonunion
## 16509 Pathological fracture, right radius, subsequent encounter for fracture with malunion
## 16510 Pathological fracture, right radius, sequela
## 16511 Pathological fracture, left radius, initial encounter for fracture
## 16512 Pathological fracture, left radius, subsequent encounter for fracture with routine healing
## 16513 Pathological fracture, left radius, subsequent encounter for fracture with delayed healing
## 16514 Pathological fracture, left radius, subsequent encounter for fracture with nonunion
## 16515 Pathological fracture, left radius, subsequent encounter for fracture with malunion
## 16516 Pathological fracture, left radius, sequela
## 16517 Pathological fracture, unspecified ulna and radius, initial encounter for fracture
## 16518 Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with routine healing
## 16519 Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with delayed healing
## 16520 Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with nonunion
## 16521 Pathological fracture, unspecified ulna and radius, subsequent encounter for fracture with malunion
## 16522 Pathological fracture, unspecified ulna and radius, sequela
## 16523 Pathological fracture, right hand, initial encounter for fracture
## 16524 Pathological fracture, right hand, subsequent encounter for fracture with routine healing
## 16525 Pathological fracture, right hand, subsequent encounter for fracture with delayed healing
## 16526 Pathological fracture, right hand, subsequent encounter for fracture with nonunion
## 16527 Pathological fracture, right hand, subsequent encounter for fracture with malunion
## 16528 Pathological fracture, right hand, sequela
## 16529 Pathological fracture, left hand, initial encounter for fracture
## 16530 Pathological fracture, left hand, subsequent encounter for fracture with routine healing
## 16531 Pathological fracture, left hand, subsequent encounter for fracture with delayed healing
## 16532 Pathological fracture, left hand, subsequent encounter for fracture with nonunion
## 16533 Pathological fracture, left hand, subsequent encounter for fracture with malunion
## 16534 Pathological fracture, left hand, sequela
## 16535 Pathological fracture, unspecified hand, initial encounter for fracture
## 16536 Pathological fracture, unspecified hand, subsequent encounter for fracture with routine healing
## 16537 Pathological fracture, unspecified hand, subsequent encounter for fracture with delayed healing
## 16538 Pathological fracture, unspecified hand, subsequent encounter for fracture with nonunion
## 16539 Pathological fracture, unspecified hand, subsequent encounter for fracture with malunion
## 16540 Pathological fracture, unspecified hand, sequela
## 16541 Pathological fracture, right finger(s), initial encounter for fracture
## 16542 Pathological fracture, right finger(s), subsequent encounter for fracture with routine healing
## 16543 Pathological fracture, right finger(s), subsequent encounter for fracture with delayed healing
## 16544 Pathological fracture, right finger(s), subsequent encounter for fracture with nonunion
## 16545 Pathological fracture, right finger(s), subsequent encounter for fracture with malunion
## 16546 Pathological fracture, right finger(s), sequela
## 16547 Pathological fracture, left finger(s), initial encounter for fracture
## 16548 Pathological fracture, left finger(s), subsequent encounter for fracture with routine healing
## 16549 Pathological fracture, left finger(s), subsequent encounter for fracture with delayed healing
## 16550 Pathological fracture, left finger(s), subsequent encounter for fracture with nonunion
## 16551 Pathological fracture, left finger(s), subsequent encounter for fracture with malunion
## 16552 Pathological fracture, left finger(s), sequela
## 16553 Pathological fracture, unspecified finger(s), initial encounter for fracture
## 16554 Pathological fracture, unspecified finger(s), subsequent encounter for fracture with routine healing
## 16555 Pathological fracture, unspecified finger(s), subsequent encounter for fracture with delayed healing
## 16556 Pathological fracture, unspecified finger(s), subsequent encounter for fracture with nonunion
## 16557 Pathological fracture, unspecified finger(s), subsequent encounter for fracture with malunion
## 16558 Pathological fracture, unspecified finger(s), sequela
## 16559 Pathological fracture, right femur, initial encounter for fracture
## 16560 Pathological fracture, right femur, subsequent encounter for fracture with routine healing
## 16561 Pathological fracture, right femur, subsequent encounter for fracture with delayed healing
## 16562 Pathological fracture, right femur, subsequent encounter for fracture with nonunion
## 16563 Pathological fracture, right femur, subsequent encounter for fracture with malunion
## 16564 Pathological fracture, right femur, sequela
## 16565 Pathological fracture, left femur, initial encounter for fracture
## 16566 Pathological fracture, left femur, subsequent encounter for fracture with routine healing
## 16567 Pathological fracture, left femur, subsequent encounter for fracture with delayed healing
## 16568 Pathological fracture, left femur, subsequent encounter for fracture with nonunion
## 16569 Pathological fracture, left femur, subsequent encounter for fracture with malunion
## 16570 Pathological fracture, left femur, sequela
## 16571 Pathological fracture, unspecified femur, initial encounter for fracture
## 16572 Pathological fracture, unspecified femur, subsequent encounter for fracture with routine healing
## 16573 Pathological fracture, unspecified femur, subsequent encounter for fracture with delayed healing
## 16574 Pathological fracture, unspecified femur, subsequent encounter for fracture with nonunion
## 16575 Pathological fracture, unspecified femur, subsequent encounter for fracture with malunion
## 16576 Pathological fracture, unspecified femur, sequela
## 16577 Pathological fracture, pelvis, initial encounter for fracture
## 16578 Pathological fracture, pelvis, subsequent encounter for fracture with routine healing
## 16579 Pathological fracture, pelvis, subsequent encounter for fracture with delayed healing
## 16580 Pathological fracture, pelvis, subsequent encounter for fracture with nonunion
## 16581 Pathological fracture, pelvis, subsequent encounter for fracture with malunion
## 16582 Pathological fracture, pelvis, sequela
## 16583 Pathological fracture, hip, unspecified, initial encounter for fracture
## 16584 Pathological fracture, hip, unspecified, subsequent encounter for fracture with routine healing
## 16585 Pathological fracture, hip, unspecified, subsequent encounter for fracture with delayed healing
## 16586 Pathological fracture, hip, unspecified, subsequent encounter for fracture with nonunion
## 16587 Pathological fracture, hip, unspecified, subsequent encounter for fracture with malunion
## 16588 Pathological fracture, hip, unspecified, sequela
## 16589 Pathological fracture, right tibia, initial encounter for fracture
## 16590 Pathological fracture, right tibia, subsequent encounter for fracture with routine healing
## 16591 Pathological fracture, right tibia, subsequent encounter for fracture with delayed healing
## 16592 Pathological fracture, right tibia, subsequent encounter for fracture with nonunion
## 16593 Pathological fracture, right tibia, subsequent encounter for fracture with malunion
## 16594 Pathological fracture, right tibia, sequela
## 16595 Pathological fracture, left tibia, initial encounter for fracture
## 16596 Pathological fracture, left tibia, subsequent encounter for fracture with routine healing
## 16597 Pathological fracture, left tibia, subsequent encounter for fracture with delayed healing
## 16598 Pathological fracture, left tibia, subsequent encounter for fracture with nonunion
## 16599 Pathological fracture, left tibia, subsequent encounter for fracture with malunion
## 16600 Pathological fracture, left tibia, sequela
## 16601 Pathological fracture, right fibula, initial encounter for fracture
## 16602 Pathological fracture, right fibula, subsequent encounter for fracture with routine healing
## 16603 Pathological fracture, right fibula, subsequent encounter for fracture with delayed healing
## 16604 Pathological fracture, right fibula, subsequent encounter for fracture with nonunion
## 16605 Pathological fracture, right fibula, subsequent encounter for fracture with malunion
## 16606 Pathological fracture, right fibula, sequela
## 16607 Pathological fracture, left fibula, initial encounter for fracture
## 16608 Pathological fracture, left fibula, subsequent encounter for fracture with routine healing
## 16609 Pathological fracture, left fibula, subsequent encounter for fracture with delayed healing
## 16610 Pathological fracture, left fibula, subsequent encounter for fracture with nonunion
## 16611 Pathological fracture, left fibula, subsequent encounter for fracture with malunion
## 16612 Pathological fracture, left fibula, sequela
## 16613 Pathological fracture, unspecified tibia and fibula, initial encounter for fracture
## 16614 Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with routine healing
## 16615 Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing
## 16616 Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with nonunion
## 16617 Pathological fracture, unspecified tibia and fibula, subsequent encounter for fracture with malunion
## 16618 Pathological fracture, unspecified tibia and fibula, sequela
## 16619 Pathological fracture, right ankle, initial encounter for fracture
## 16620 Pathological fracture, right ankle, subsequent encounter for fracture with routine healing
## 16621 Pathological fracture, right ankle, subsequent encounter for fracture with delayed healing
## 16622 Pathological fracture, right ankle, subsequent encounter for fracture with nonunion
## 16623 Pathological fracture, right ankle, subsequent encounter for fracture with malunion
## 16624 Pathological fracture, right ankle, sequela
## 16625 Pathological fracture, left ankle, initial encounter for fracture
## 16626 Pathological fracture, left ankle, subsequent encounter for fracture with routine healing
## 16627 Pathological fracture, left ankle, subsequent encounter for fracture with delayed healing
## 16628 Pathological fracture, left ankle, subsequent encounter for fracture with nonunion
## 16629 Pathological fracture, left ankle, subsequent encounter for fracture with malunion
## 16630 Pathological fracture, left ankle, sequela
## 16631 Pathological fracture, unspecified ankle, initial encounter for fracture
## 16632 Pathological fracture, unspecified ankle, subsequent encounter for fracture with routine healing
## 16633 Pathological fracture, unspecified ankle, subsequent encounter for fracture with delayed healing
## 16634 Pathological fracture, unspecified ankle, subsequent encounter for fracture with nonunion
## 16635 Pathological fracture, unspecified ankle, subsequent encounter for fracture with malunion
## 16636 Pathological fracture, unspecified ankle, sequela
## 16637 Pathological fracture, right foot, initial encounter for fracture
## 16638 Pathological fracture, right foot, subsequent encounter for fracture with routine healing
## 16639 Pathological fracture, right foot, subsequent encounter for fracture with delayed healing
## 16640 Pathological fracture, right foot, subsequent encounter for fracture with nonunion
## 16641 Pathological fracture, right foot, subsequent encounter for fracture with malunion
## 16642 Pathological fracture, right foot, sequela
## 16643 Pathological fracture, left foot, initial encounter for fracture
## 16644 Pathological fracture, left foot, subsequent encounter for fracture with routine healing
## 16645 Pathological fracture, left foot, subsequent encounter for fracture with delayed healing
## 16646 Pathological fracture, left foot, subsequent encounter for fracture with nonunion
## 16647 Pathological fracture, left foot, subsequent encounter for fracture with malunion
## 16648 Pathological fracture, left foot, sequela
## 16649 Pathological fracture, unspecified foot, initial encounter for fracture
## 16650 Pathological fracture, unspecified foot, subsequent encounter for fracture with routine healing
## 16651 Pathological fracture, unspecified foot, subsequent encounter for fracture with delayed healing
## 16652 Pathological fracture, unspecified foot, subsequent encounter for fracture with nonunion
## 16653 Pathological fracture, unspecified foot, subsequent encounter for fracture with malunion
## 16654 Pathological fracture, unspecified foot, sequela
## 16655 Pathological fracture, right toe(s), initial encounter for fracture
## 16656 Pathological fracture, right toe(s), subsequent encounter for fracture with routine healing
## 16657 Pathological fracture, right toe(s), subsequent encounter for fracture with delayed healing
## 16658 Pathological fracture, right toe(s), subsequent encounter for fracture with nonunion
## 16659 Pathological fracture, right toe(s), subsequent encounter for fracture with malunion
## 16660 Pathological fracture, right toe(s), sequela
## 16661 Pathological fracture, left toe(s), initial encounter for fracture
## 16662 Pathological fracture, left toe(s), subsequent encounter for fracture with routine healing
## 16663 Pathological fracture, left toe(s), subsequent encounter for fracture with delayed healing
## 16664 Pathological fracture, left toe(s), subsequent encounter for fracture with nonunion
## 16665 Pathological fracture, left toe(s), subsequent encounter for fracture with malunion
## 16666 Pathological fracture, left toe(s), sequela
## 16667 Pathological fracture, unspecified toe(s), initial encounter for fracture
## 16668 Pathological fracture, unspecified toe(s), subsequent encounter for fracture with routine healing
## 16669 Pathological fracture, unspecified toe(s), subsequent encounter for fracture with delayed healing
## 16670 Pathological fracture, unspecified toe(s), subsequent encounter for fracture with nonunion
## 16671 Pathological fracture, unspecified toe(s), subsequent encounter for fracture with malunion
## 16672 Pathological fracture, unspecified toe(s), sequela
## 16673 Pathological fracture, other site, initial encounter for fracture
## 16674 Pathological fracture, other site, subsequent encounter for fracture with routine healing
## 16675 Pathological fracture, other site, subsequent encounter for fracture with delayed healing
## 16676 Pathological fracture, other site, subsequent encounter for fracture with nonunion
## 16677 Pathological fracture, other site, subsequent encounter for fracture with malunion
## 16678 Pathological fracture, other site, sequela
## 16679 Pathological fracture in neoplastic disease, unspecified site, initial encounter for fracture
## 16680 Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with routine healing
## 16681 Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with delayed healing
## 16682 Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with nonunion
## 16683 Pathological fracture in neoplastic disease, unspecified site, subsequent encounter for fracture with malunion
## 16684 Pathological fracture in neoplastic disease, unspecified site, sequela
## 16685 Pathological fracture in neoplastic disease, right shoulder, initial encounter for fracture
## 16686 Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with routine healing
## 16687 Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with delayed healing
## 16688 Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with nonunion
## 16689 Pathological fracture in neoplastic disease, right shoulder, subsequent encounter for fracture with malunion
## 16690 Pathological fracture in neoplastic disease, right shoulder, sequela
## 16691 Pathological fracture in neoplastic disease, left shoulder, initial encounter for fracture
## 16692 Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with routine healing
## 16693 Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with delayed healing
## 16694 Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with nonunion
## 16695 Pathological fracture in neoplastic disease, left shoulder, subsequent encounter for fracture with malunion
## 16696 Pathological fracture in neoplastic disease, left shoulder, sequela
## 16697 Pathological fracture in neoplastic disease, unspecified shoulder, initial encounter for fracture
## 16698 Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with routine healing
## 16699 Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 16700 Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with nonunion
## 16701 Pathological fracture in neoplastic disease, unspecified shoulder, subsequent encounter for fracture with malunion
## 16702 Pathological fracture in neoplastic disease, unspecified shoulder, sequela
## 16703 Pathological fracture in neoplastic disease, right humerus, initial encounter for fracture
## 16704 Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with routine healing
## 16705 Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with delayed healing
## 16706 Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with nonunion
## 16707 Pathological fracture in neoplastic disease, right humerus, subsequent encounter for fracture with malunion
## 16708 Pathological fracture in neoplastic disease, right humerus, sequela
## 16709 Pathological fracture in neoplastic disease, left humerus, initial encounter for fracture
## 16710 Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with routine healing
## 16711 Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with delayed healing
## 16712 Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with nonunion
## 16713 Pathological fracture in neoplastic disease, left humerus, subsequent encounter for fracture with malunion
## 16714 Pathological fracture in neoplastic disease, left humerus, sequela
## 16715 Pathological fracture in neoplastic disease, unspecified humerus, initial encounter for fracture
## 16716 Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with routine healing
## 16717 Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with delayed healing
## 16718 Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with nonunion
## 16719 Pathological fracture in neoplastic disease, unspecified humerus, subsequent encounter for fracture with malunion
## 16720 Pathological fracture in neoplastic disease, unspecified humerus, sequela
## 16721 Pathological fracture in neoplastic disease, right ulna, initial encounter for fracture
## 16722 Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with routine healing
## 16723 Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with delayed healing
## 16724 Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with nonunion
## 16725 Pathological fracture in neoplastic disease, right ulna, subsequent encounter for fracture with malunion
## 16726 Pathological fracture in neoplastic disease, right ulna, sequela
## 16727 Pathological fracture in neoplastic disease, left ulna, initial encounter for fracture
## 16728 Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with routine healing
## 16729 Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with delayed healing
## 16730 Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with nonunion
## 16731 Pathological fracture in neoplastic disease, left ulna, subsequent encounter for fracture with malunion
## 16732 Pathological fracture in neoplastic disease, left ulna, sequela
## 16733 Pathological fracture in neoplastic disease, right radius, initial encounter for fracture
## 16734 Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with routine healing
## 16735 Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with delayed healing
## 16736 Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with nonunion
## 16737 Pathological fracture in neoplastic disease, right radius, subsequent encounter for fracture with malunion
## 16738 Pathological fracture in neoplastic disease, right radius, sequela
## 16739 Pathological fracture in neoplastic disease, left radius, initial encounter for fracture
## 16740 Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with routine healing
## 16741 Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with delayed healing
## 16742 Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with nonunion
## 16743 Pathological fracture in neoplastic disease, left radius, subsequent encounter for fracture with malunion
## 16744 Pathological fracture in neoplastic disease, left radius, sequela
## 16745 Pathological fracture in neoplastic disease, unspecified ulna and radius, initial encounter for fracture
## 16746 Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing
## 16747 Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing
## 16748 Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion
## 16749 Pathological fracture in neoplastic disease, unspecified ulna and radius, subsequent encounter for fracture with malunion
## 16750 Pathological fracture in neoplastic disease, unspecified ulna and radius, sequela
## 16751 Pathological fracture in neoplastic disease, right hand, initial encounter for fracture
## 16752 Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with routine healing
## 16753 Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with delayed healing
## 16754 Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with nonunion
## 16755 Pathological fracture in neoplastic disease, right hand, subsequent encounter for fracture with malunion
## 16756 Pathological fracture in neoplastic disease, right hand, sequela
## 16757 Pathological fracture in neoplastic disease, left hand, initial encounter for fracture
## 16758 Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with routine healing
## 16759 Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with delayed healing
## 16760 Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with nonunion
## 16761 Pathological fracture in neoplastic disease, left hand, subsequent encounter for fracture with malunion
## 16762 Pathological fracture in neoplastic disease, left hand, sequela
## 16763 Pathological fracture in neoplastic disease, unspecified hand, initial encounter for fracture
## 16764 Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with routine healing
## 16765 Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with delayed healing
## 16766 Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with nonunion
## 16767 Pathological fracture in neoplastic disease, unspecified hand, subsequent encounter for fracture with malunion
## 16768 Pathological fracture in neoplastic disease, unspecified hand, sequela
## 16769 Pathological fracture in neoplastic disease, pelvis, initial encounter for fracture
## 16770 Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with routine healing
## 16771 Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with delayed healing
## 16772 Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with nonunion
## 16773 Pathological fracture in neoplastic disease, pelvis, subsequent encounter for fracture with malunion
## 16774 Pathological fracture in neoplastic disease, pelvis, sequela
## 16775 Pathological fracture in neoplastic disease, right femur, initial encounter for fracture
## 16776 Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with routine healing
## 16777 Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with delayed healing
## 16778 Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with nonunion
## 16779 Pathological fracture in neoplastic disease, right femur, subsequent encounter for fracture with malunion
## 16780 Pathological fracture in neoplastic disease, right femur, sequela
## 16781 Pathological fracture in neoplastic disease, left femur, initial encounter for fracture
## 16782 Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with routine healing
## 16783 Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with delayed healing
## 16784 Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with nonunion
## 16785 Pathological fracture in neoplastic disease, left femur, subsequent encounter for fracture with malunion
## 16786 Pathological fracture in neoplastic disease, left femur, sequela
## 16787 Pathological fracture in neoplastic disease, unspecified femur, initial encounter for fracture
## 16788 Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with routine healing
## 16789 Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with delayed healing
## 16790 Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with nonunion
## 16791 Pathological fracture in neoplastic disease, unspecified femur, subsequent encounter for fracture with malunion
## 16792 Pathological fracture in neoplastic disease, unspecified femur, sequela
## 16793 Pathological fracture in neoplastic disease, hip, unspecified, initial encounter for fracture
## 16794 Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with routine healing
## 16795 Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with delayed healing
## 16796 Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with nonunion
## 16797 Pathological fracture in neoplastic disease, hip, unspecified, subsequent encounter for fracture with malunion
## 16798 Pathological fracture in neoplastic disease, hip, unspecified, sequela
## 16799 Pathological fracture in neoplastic disease, right tibia, initial encounter for fracture
## 16800 Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with routine healing
## 16801 Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with delayed healing
## 16802 Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with nonunion
## 16803 Pathological fracture in neoplastic disease, right tibia, subsequent encounter for fracture with malunion
## 16804 Pathological fracture in neoplastic disease, right tibia, sequela
## 16805 Pathological fracture in neoplastic disease, left tibia, initial encounter for fracture
## 16806 Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with routine healing
## 16807 Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with delayed healing
## 16808 Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with nonunion
## 16809 Pathological fracture in neoplastic disease, left tibia, subsequent encounter for fracture with malunion
## 16810 Pathological fracture in neoplastic disease, left tibia, sequela
## 16811 Pathological fracture in neoplastic disease, right fibula, initial encounter for fracture
## 16812 Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with routine healing
## 16813 Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with delayed healing
## 16814 Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with nonunion
## 16815 Pathological fracture in neoplastic disease, right fibula, subsequent encounter for fracture with malunion
## 16816 Pathological fracture in neoplastic disease, right fibula, sequela
## 16817 Pathological fracture in neoplastic disease, left fibula, initial encounter for fracture
## 16818 Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with routine healing
## 16819 Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with delayed healing
## 16820 Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with nonunion
## 16821 Pathological fracture in neoplastic disease, left fibula, subsequent encounter for fracture with malunion
## 16822 Pathological fracture in neoplastic disease, left fibula, sequela
## 16823 Pathological fracture in neoplastic disease, unspecified tibia and fibula, initial encounter for fracture
## 16824 Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing
## 16825 Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing
## 16826 Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion
## 16827 Pathological fracture in neoplastic disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion
## 16828 Pathological fracture in neoplastic disease, unspecified tibia and fibula, sequela
## 16829 Pathological fracture in neoplastic disease, right ankle, initial encounter for fracture
## 16830 Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with routine healing
## 16831 Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with delayed healing
## 16832 Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with nonunion
## 16833 Pathological fracture in neoplastic disease, right ankle, subsequent encounter for fracture with malunion
## 16834 Pathological fracture in neoplastic disease, right ankle, sequela
## 16835 Pathological fracture in neoplastic disease, left ankle, initial encounter for fracture
## 16836 Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with routine healing
## 16837 Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with delayed healing
## 16838 Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with nonunion
## 16839 Pathological fracture in neoplastic disease, left ankle, subsequent encounter for fracture with malunion
## 16840 Pathological fracture in neoplastic disease, left ankle, sequela
## 16841 Pathological fracture in neoplastic disease, unspecified ankle, initial encounter for fracture
## 16842 Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with routine healing
## 16843 Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with delayed healing
## 16844 Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with nonunion
## 16845 Pathological fracture in neoplastic disease, unspecified ankle, subsequent encounter for fracture with malunion
## 16846 Pathological fracture in neoplastic disease, unspecified ankle, sequela
## 16847 Pathological fracture in neoplastic disease, right foot, initial encounter for fracture
## 16848 Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with routine healing
## 16849 Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with delayed healing
## 16850 Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with nonunion
## 16851 Pathological fracture in neoplastic disease, right foot, subsequent encounter for fracture with malunion
## 16852 Pathological fracture in neoplastic disease, right foot, sequela
## 16853 Pathological fracture in neoplastic disease, left foot, initial encounter for fracture
## 16854 Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with routine healing
## 16855 Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with delayed healing
## 16856 Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with nonunion
## 16857 Pathological fracture in neoplastic disease, left foot, subsequent encounter for fracture with malunion
## 16858 Pathological fracture in neoplastic disease, left foot, sequela
## 16859 Pathological fracture in neoplastic disease, unspecified foot, initial encounter for fracture
## 16860 Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with routine healing
## 16861 Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with delayed healing
## 16862 Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with nonunion
## 16863 Pathological fracture in neoplastic disease, unspecified foot, subsequent encounter for fracture with malunion
## 16864 Pathological fracture in neoplastic disease, unspecified foot, sequela
## 16865 Pathological fracture in neoplastic disease, other specified site, initial encounter for fracture
## 16866 Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with routine healing
## 16867 Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with delayed healing
## 16868 Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with nonunion
## 16869 Pathological fracture in neoplastic disease, other specified site, subsequent encounter for fracture with malunion
## 16870 Pathological fracture in neoplastic disease, other specified site, sequela
## 16871 Pathological fracture in other disease, unspecified site, initial encounter for fracture
## 16872 Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with routine healing
## 16873 Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with delayed healing
## 16874 Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with nonunion
## 16875 Pathological fracture in other disease, unspecified site, subsequent encounter for fracture with malunion
## 16876 Pathological fracture in other disease, unspecified site, sequela
## 16877 Pathological fracture in other disease, right shoulder, initial encounter for fracture
## 16878 Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with routine healing
## 16879 Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with delayed healing
## 16880 Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with nonunion
## 16881 Pathological fracture in other disease, right shoulder, subsequent encounter for fracture with malunion
## 16882 Pathological fracture in other disease, right shoulder, sequela
## 16883 Pathological fracture in other disease, left shoulder, initial encounter for fracture
## 16884 Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with routine healing
## 16885 Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with delayed healing
## 16886 Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with nonunion
## 16887 Pathological fracture in other disease, left shoulder, subsequent encounter for fracture with malunion
## 16888 Pathological fracture in other disease, left shoulder, sequela
## 16889 Pathological fracture in other disease, unspecified shoulder, initial encounter for fracture
## 16890 Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with routine healing
## 16891 Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 16892 Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with nonunion
## 16893 Pathological fracture in other disease, unspecified shoulder, subsequent encounter for fracture with malunion
## 16894 Pathological fracture in other disease, unspecified shoulder, sequela
## 16895 Pathological fracture in other disease, right humerus, initial encounter for fracture
## 16896 Pathological fracture in other disease, right humerus, subsequent encounter for fracture with routine healing
## 16897 Pathological fracture in other disease, right humerus, subsequent encounter for fracture with delayed healing
## 16898 Pathological fracture in other disease, right humerus, subsequent encounter for fracture with nonunion
## 16899 Pathological fracture in other disease, right humerus, subsequent encounter for fracture with malunion
## 16900 Pathological fracture in other disease, right humerus, sequela
## 16901 Pathological fracture in other disease, left humerus, initial encounter for fracture
## 16902 Pathological fracture in other disease, left humerus, subsequent encounter for fracture with routine healing
## 16903 Pathological fracture in other disease, left humerus, subsequent encounter for fracture with delayed healing
## 16904 Pathological fracture in other disease, left humerus, subsequent encounter for fracture with nonunion
## 16905 Pathological fracture in other disease, left humerus, subsequent encounter for fracture with malunion
## 16906 Pathological fracture in other disease, left humerus, sequela
## 16907 Pathological fracture in other disease, unspecified humerus, initial encounter for fracture
## 16908 Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with routine healing
## 16909 Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with delayed healing
## 16910 Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with nonunion
## 16911 Pathological fracture in other disease, unspecified humerus, subsequent encounter for fracture with malunion
## 16912 Pathological fracture in other disease, unspecified humerus, sequela
## 16913 Pathological fracture in other disease, right ulna, initial encounter for fracture
## 16914 Pathological fracture in other disease, right ulna, subsequent encounter for fracture with routine healing
## 16915 Pathological fracture in other disease, right ulna, subsequent encounter for fracture with delayed healing
## 16916 Pathological fracture in other disease, right ulna, subsequent encounter for fracture with nonunion
## 16917 Pathological fracture in other disease, right ulna, subsequent encounter for fracture with malunion
## 16918 Pathological fracture in other disease, right ulna, sequela
## 16919 Pathological fracture in other disease, left ulna, initial encounter for fracture
## 16920 Pathological fracture in other disease, left ulna, subsequent encounter for fracture with routine healing
## 16921 Pathological fracture in other disease, left ulna, subsequent encounter for fracture with delayed healing
## 16922 Pathological fracture in other disease, left ulna, subsequent encounter for fracture with nonunion
## 16923 Pathological fracture in other disease, left ulna, subsequent encounter for fracture with malunion
## 16924 Pathological fracture in other disease, left ulna, sequela
## 16925 Pathological fracture in other disease, right radius, initial encounter for fracture
## 16926 Pathological fracture in other disease, right radius, subsequent encounter for fracture with routine healing
## 16927 Pathological fracture in other disease, right radius, subsequent encounter for fracture with delayed healing
## 16928 Pathological fracture in other disease, right radius, subsequent encounter for fracture with nonunion
## 16929 Pathological fracture in other disease, right radius, subsequent encounter for fracture with malunion
## 16930 Pathological fracture in other disease, right radius, sequela
## 16931 Pathological fracture in other disease, left radius, initial encounter for fracture
## 16932 Pathological fracture in other disease, left radius, subsequent encounter for fracture with routine healing
## 16933 Pathological fracture in other disease, left radius, subsequent encounter for fracture with delayed healing
## 16934 Pathological fracture in other disease, left radius, subsequent encounter for fracture with nonunion
## 16935 Pathological fracture in other disease, left radius, subsequent encounter for fracture with malunion
## 16936 Pathological fracture in other disease, left radius, sequela
## 16937 Pathological fracture in other disease, unspecified ulna and radius, initial encounter for fracture
## 16938 Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with routine healing
## 16939 Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with delayed healing
## 16940 Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with nonunion
## 16941 Pathological fracture in other disease, unspecified ulna and radius, subsequent encounter for fracture with malunion
## 16942 Pathological fracture in other disease, unspecified ulna and radius, sequela
## 16943 Pathological fracture in other disease, right hand, initial encounter for fracture
## 16944 Pathological fracture in other disease, right hand, subsequent encounter for fracture with routine healing
## 16945 Pathological fracture in other disease, right hand, subsequent encounter for fracture with delayed healing
## 16946 Pathological fracture in other disease, right hand, subsequent encounter for fracture with nonunion
## 16947 Pathological fracture in other disease, right hand, subsequent encounter for fracture with malunion
## 16948 Pathological fracture in other disease, right hand, sequela
## 16949 Pathological fracture in other disease, left hand, initial encounter for fracture
## 16950 Pathological fracture in other disease, left hand, subsequent encounter for fracture with routine healing
## 16951 Pathological fracture in other disease, left hand, subsequent encounter for fracture with delayed healing
## 16952 Pathological fracture in other disease, left hand, subsequent encounter for fracture with nonunion
## 16953 Pathological fracture in other disease, left hand, subsequent encounter for fracture with malunion
## 16954 Pathological fracture in other disease, left hand, sequela
## 16955 Pathological fracture in other disease, unspecified hand, initial encounter for fracture
## 16956 Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with routine healing
## 16957 Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with delayed healing
## 16958 Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with nonunion
## 16959 Pathological fracture in other disease, unspecified hand, subsequent encounter for fracture with malunion
## 16960 Pathological fracture in other disease, unspecified hand, sequela
## 16961 Pathological fracture in other disease, pelvis, initial encounter for fracture
## 16962 Pathological fracture in other disease, pelvis, subsequent encounter for fracture with routine healing
## 16963 Pathological fracture in other disease, pelvis, subsequent encounter for fracture with delayed healing
## 16964 Pathological fracture in other disease, pelvis, subsequent encounter for fracture with nonunion
## 16965 Pathological fracture in other disease, pelvis, subsequent encounter for fracture with malunion
## 16966 Pathological fracture in other disease, pelvis, sequela
## 16967 Pathological fracture in other disease, right femur, initial encounter for fracture
## 16968 Pathological fracture in other disease, right femur, subsequent encounter for fracture with routine healing
## 16969 Pathological fracture in other disease, right femur, subsequent encounter for fracture with delayed healing
## 16970 Pathological fracture in other disease, right femur, subsequent encounter for fracture with nonunion
## 16971 Pathological fracture in other disease, right femur, subsequent encounter for fracture with malunion
## 16972 Pathological fracture in other disease, right femur, sequela
## 16973 Pathological fracture in other disease, left femur, initial encounter for fracture
## 16974 Pathological fracture in other disease, left femur, subsequent encounter for fracture with routine healing
## 16975 Pathological fracture in other disease, left femur, subsequent encounter for fracture with delayed healing
## 16976 Pathological fracture in other disease, left femur, subsequent encounter for fracture with nonunion
## 16977 Pathological fracture in other disease, left femur, subsequent encounter for fracture with malunion
## 16978 Pathological fracture in other disease, left femur, sequela
## 16979 Pathological fracture in other disease, unspecified femur, initial encounter for fracture
## 16980 Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with routine healing
## 16981 Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with delayed healing
## 16982 Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with nonunion
## 16983 Pathological fracture in other disease, unspecified femur, subsequent encounter for fracture with malunion
## 16984 Pathological fracture in other disease, unspecified femur, sequela
## 16985 Pathological fracture in other disease, hip, unspecified, initial encounter for fracture
## 16986 Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with routine healing
## 16987 Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with delayed healing
## 16988 Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with nonunion
## 16989 Pathological fracture in other disease, hip, unspecified, subsequent encounter for fracture with malunion
## 16990 Pathological fracture in other disease, hip, unspecified, sequela
## 16991 Pathological fracture in other disease, right tibia, initial encounter for fracture
## 16992 Pathological fracture in other disease, right tibia, subsequent encounter for fracture with routine healing
## 16993 Pathological fracture in other disease, right tibia, subsequent encounter for fracture with delayed healing
## 16994 Pathological fracture in other disease, right tibia, subsequent encounter for fracture with nonunion
## 16995 Pathological fracture in other disease, right tibia, subsequent encounter for fracture with malunion
## 16996 Pathological fracture in other disease, right tibia, sequela
## 16997 Pathological fracture in other disease, left tibia, initial encounter for fracture
## 16998 Pathological fracture in other disease, left tibia, subsequent encounter for fracture with routine healing
## 16999 Pathological fracture in other disease, left tibia, subsequent encounter for fracture with delayed healing
## 17000 Pathological fracture in other disease, left tibia, subsequent encounter for fracture with nonunion
## 17001 Pathological fracture in other disease, left tibia, subsequent encounter for fracture with malunion
## 17002 Pathological fracture in other disease, left tibia, sequela
## 17003 Pathological fracture in other disease, right fibula, initial encounter for fracture
## 17004 Pathological fracture in other disease, right fibula, subsequent encounter for fracture with routine healing
## 17005 Pathological fracture in other disease, right fibula, subsequent encounter for fracture with delayed healing
## 17006 Pathological fracture in other disease, right fibula, subsequent encounter for fracture with nonunion
## 17007 Pathological fracture in other disease, right fibula, subsequent encounter for fracture with malunion
## 17008 Pathological fracture in other disease, right fibula, sequela
## 17009 Pathological fracture in other disease, left fibula, initial encounter for fracture
## 17010 Pathological fracture in other disease, left fibula, subsequent encounter for fracture with routine healing
## 17011 Pathological fracture in other disease, left fibula, subsequent encounter for fracture with delayed healing
## 17012 Pathological fracture in other disease, left fibula, subsequent encounter for fracture with nonunion
## 17013 Pathological fracture in other disease, left fibula, subsequent encounter for fracture with malunion
## 17014 Pathological fracture in other disease, left fibula, sequela
## 17015 Pathological fracture in other disease, unspecified tibia and fibula, initial encounter for fracture
## 17016 Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with routine healing
## 17017 Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with delayed healing
## 17018 Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with nonunion
## 17019 Pathological fracture in other disease, unspecified tibia and fibula, subsequent encounter for fracture with malunion
## 17020 Pathological fracture in other disease, unspecified tibia and fibula, sequela
## 17021 Pathological fracture in other disease, right ankle, initial encounter for fracture
## 17022 Pathological fracture in other disease, right ankle, subsequent encounter for fracture with routine healing
## 17023 Pathological fracture in other disease, right ankle, subsequent encounter for fracture with delayed healing
## 17024 Pathological fracture in other disease, right ankle, subsequent encounter for fracture with nonunion
## 17025 Pathological fracture in other disease, right ankle, subsequent encounter for fracture with malunion
## 17026 Pathological fracture in other disease, right ankle, sequela
## 17027 Pathological fracture in other disease, left ankle, initial encounter for fracture
## 17028 Pathological fracture in other disease, left ankle, subsequent encounter for fracture with routine healing
## 17029 Pathological fracture in other disease, left ankle, subsequent encounter for fracture with delayed healing
## 17030 Pathological fracture in other disease, left ankle, subsequent encounter for fracture with nonunion
## 17031 Pathological fracture in other disease, left ankle, subsequent encounter for fracture with malunion
## 17032 Pathological fracture in other disease, left ankle, sequela
## 17033 Pathological fracture in other disease, unspecified ankle, initial encounter for fracture
## 17034 Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with routine healing
## 17035 Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with delayed healing
## 17036 Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with nonunion
## 17037 Pathological fracture in other disease, unspecified ankle, subsequent encounter for fracture with malunion
## 17038 Pathological fracture in other disease, unspecified ankle, sequela
## 17039 Pathological fracture in other disease, right foot, initial encounter for fracture
## 17040 Pathological fracture in other disease, right foot, subsequent encounter for fracture with routine healing
## 17041 Pathological fracture in other disease, right foot, subsequent encounter for fracture with delayed healing
## 17042 Pathological fracture in other disease, right foot, subsequent encounter for fracture with nonunion
## 17043 Pathological fracture in other disease, right foot, subsequent encounter for fracture with malunion
## 17044 Pathological fracture in other disease, right foot, sequela
## 17045 Pathological fracture in other disease, left foot, initial encounter for fracture
## 17046 Pathological fracture in other disease, left foot, subsequent encounter for fracture with routine healing
## 17047 Pathological fracture in other disease, left foot, subsequent encounter for fracture with delayed healing
## 17048 Pathological fracture in other disease, left foot, subsequent encounter for fracture with nonunion
## 17049 Pathological fracture in other disease, left foot, subsequent encounter for fracture with malunion
## 17050 Pathological fracture in other disease, left foot, sequela
## 17051 Pathological fracture in other disease, unspecified foot, initial encounter for fracture
## 17052 Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with routine healing
## 17053 Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with delayed healing
## 17054 Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with nonunion
## 17055 Pathological fracture in other disease, unspecified foot, subsequent encounter for fracture with malunion
## 17056 Pathological fracture in other disease, unspecified foot, sequela
## 17057 Pathological fracture in other disease, other site, initial encounter for fracture
## 17058 Pathological fracture in other disease, other site, subsequent encounter for fracture with routine healing
## 17059 Pathological fracture in other disease, other site, subsequent encounter for fracture with delayed healing
## 17060 Pathological fracture in other disease, other site, subsequent encounter for fracture with nonunion
## 17061 Pathological fracture in other disease, other site, subsequent encounter for fracture with malunion
## 17062 Pathological fracture in other disease, other site, sequela
## 17063 Atypical femoral fracture, unspecified, initial encounter for fracture
## 17064 Atypical femoral fracture, unspecified, subsequent encounter for fracture with routine healing
## 17065 Atypical femoral fracture, unspecified, subsequent encounter for fracture with delayed healing
## 17066 Atypical femoral fracture, unspecified, subsequent encounter for fracture with nonunion
## 17067 Atypical femoral fracture, unspecified, subsequent encounter for fracture with malunion
## 17068 Atypical femoral fracture, unspecified, sequela
## 17069 Incomplete atypical femoral fracture, right leg, initial encounter for fracture
## 17070 Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing
## 17071 Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing
## 17072 Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion
## 17073 Incomplete atypical femoral fracture, right leg, subsequent encounter for fracture with malunion
## 17074 Incomplete atypical femoral fracture, right leg, sequela
## 17075 Incomplete atypical femoral fracture, left leg, initial encounter for fracture
## 17076 Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing
## 17077 Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing
## 17078 Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion
## 17079 Incomplete atypical femoral fracture, left leg, subsequent encounter for fracture with malunion
## 17080 Incomplete atypical femoral fracture, left leg, sequela
## 17081 Incomplete atypical femoral fracture, unspecified leg, initial encounter for fracture
## 17082 Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing
## 17083 Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing
## 17084 Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion
## 17085 Incomplete atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion
## 17086 Incomplete atypical femoral fracture, unspecified leg, sequela
## 17087 Complete transverse atypical femoral fracture, right leg, initial encounter for fracture
## 17088 Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing
## 17089 Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing
## 17090 Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion
## 17091 Complete transverse atypical femoral fracture, right leg, subsequent encounter for fracture with malunion
## 17092 Complete transverse atypical femoral fracture, right leg, sequela
## 17093 Complete transverse atypical femoral fracture, left leg, initial encounter for fracture
## 17094 Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing
## 17095 Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing
## 17096 Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion
## 17097 Complete transverse atypical femoral fracture, left leg, subsequent encounter for fracture with malunion
## 17098 Complete transverse atypical femoral fracture, left leg, sequela
## 17099 Complete transverse atypical femoral fracture, unspecified leg, initial encounter for fracture
## 17100 Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing
## 17101 Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing
## 17102 Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion
## 17103 Complete transverse atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion
## 17104 Complete transverse atypical femoral fracture, unspecified leg, sequela
## 17105 Complete oblique atypical femoral fracture, right leg, initial encounter for fracture
## 17106 Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with routine healing
## 17107 Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with delayed healing
## 17108 Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with nonunion
## 17109 Complete oblique atypical femoral fracture, right leg, subsequent encounter for fracture with malunion
## 17110 Complete oblique atypical femoral fracture, right leg, sequela
## 17111 Complete oblique atypical femoral fracture, left leg, initial encounter for fracture
## 17112 Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with routine healing
## 17113 Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with delayed healing
## 17114 Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with nonunion
## 17115 Complete oblique atypical femoral fracture, left leg, subsequent encounter for fracture with malunion
## 17116 Complete oblique atypical femoral fracture, left leg, sequela
## 17117 Complete oblique atypical femoral fracture, unspecified leg, initial encounter for fracture
## 17118 Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with routine healing
## 17119 Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with delayed healing
## 17120 Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with nonunion
## 17121 Complete oblique atypical femoral fracture, unspecified leg, subsequent encounter for fracture with malunion
## 17122 Complete oblique atypical femoral fracture, unspecified leg, sequela
## 17123 Other disorders of continuity of bone, unspecified site
## 17124 Other disorders of continuity of bone, right shoulder
## 17125 Other disorders of continuity of bone, left shoulder
## 17126 Other disorders of continuity of bone, unspecified shoulder
## 17127 Other disorders of continuity of bone, right humerus
## 17128 Other disorders of continuity of bone, left humerus
## 17129 Other disorders of continuity of bone, unspecified humerus
## 17130 Other disorders of continuity of bone, right ulna
## 17131 Other disorders of continuity of bone, left ulna
## 17132 Other disorders of continuity of bone, right radius
## 17133 Other disorders of continuity of bone, left radius
## 17134 Other disorders of continuity of bone, unspecified ulna and radius
## 17135 Other disorders of continuity of bone, right hand
## 17136 Other disorders of continuity of bone, left hand
## 17137 Other disorders of continuity of bone, unspecified hand
## 17138 Other disorders of continuity of bone, right pelvic region and thigh
## 17139 Other disorders of continuity of bone, left pelvic region and thigh
## 17140 Other disorders of continuity of bone, unspecified pelvic region and thigh
## 17141 Other disorders of continuity of bone, right tibia
## 17142 Other disorders of continuity of bone, left tibia
## 17143 Other disorders of continuity of bone, right fibula
## 17144 Other disorders of continuity of bone, left fibula
## 17145 Other disorders of continuity of bone, unspecified tibia and fibula
## 17146 Other disorders of continuity of bone, right ankle and foot
## 17147 Other disorders of continuity of bone, left ankle and foot
## 17148 Other disorders of continuity of bone, unspecified ankle and foot
## 17149 Other disorders of continuity of bone, other site
## 17150 Disorder of continuity of bone, unspecified
## 17151 Fibrous dysplasia (monostotic), unspecified site
## 17152 Fibrous dysplasia (monostotic), right shoulder
## 17153 Fibrous dysplasia (monostotic), left shoulder
## 17154 Fibrous dysplasia (monostotic), unspecified shoulder
## 17155 Fibrous dysplasia (monostotic), right upper arm
## 17156 Fibrous dysplasia (monostotic), left upper arm
## 17157 Fibrous dysplasia (monostotic), unspecified upper arm
## 17158 Fibrous dysplasia (monostotic), right forearm
## 17159 Fibrous dysplasia (monostotic), left forearm
## 17160 Fibrous dysplasia (monostotic), unspecified forearm
## 17161 Fibrous dysplasia (monostotic), right hand
## 17162 Fibrous dysplasia (monostotic), left hand
## 17163 Fibrous dysplasia (monostotic), unspecified hand
## 17164 Fibrous dysplasia (monostotic), right thigh
## 17165 Fibrous dysplasia (monostotic), left thigh
## 17166 Fibrous dysplasia (monostotic), unspecified thigh
## 17167 Fibrous dysplasia (monostotic), right lower leg
## 17168 Fibrous dysplasia (monostotic), left lower leg
## 17169 Fibrous dysplasia (monostotic), unspecified lower leg
## 17170 Fibrous dysplasia (monostotic), right ankle and foot
## 17171 Fibrous dysplasia (monostotic), left ankle and foot
## 17172 Fibrous dysplasia (monostotic), unspecified ankle and foot
## 17173 Fibrous dysplasia (monostotic), other site
## 17174 Fibrous dysplasia (monostotic), multiple sites
## 17175 Skeletal fluorosis, unspecified site
## 17176 Skeletal fluorosis, right shoulder
## 17177 Skeletal fluorosis, left shoulder
## 17178 Skeletal fluorosis, unspecified shoulder
## 17179 Skeletal fluorosis, right upper arm
## 17180 Skeletal fluorosis, left upper arm
## 17181 Skeletal fluorosis, unspecified upper arm
## 17182 Skeletal fluorosis, right forearm
## 17183 Skeletal fluorosis, left forearm
## 17184 Skeletal fluorosis, unspecified forearm
## 17185 Skeletal fluorosis, right hand
## 17186 Skeletal fluorosis, left hand
## 17187 Skeletal fluorosis, unspecified hand
## 17188 Skeletal fluorosis, right thigh
## 17189 Skeletal fluorosis, left thigh
## 17190 Skeletal fluorosis, unspecified thigh
## 17191 Skeletal fluorosis, right lower leg
## 17192 Skeletal fluorosis, left lower leg
## 17193 Skeletal fluorosis, unspecified lower leg
## 17194 Skeletal fluorosis, right ankle and foot
## 17195 Skeletal fluorosis, left ankle and foot
## 17196 Skeletal fluorosis, unspecified ankle and foot
## 17197 Skeletal fluorosis, other site
## 17198 Skeletal fluorosis, multiple sites
## 17199 Hyperostosis of skull
## 17200 Osteitis condensans, unspecified site
## 17201 Osteitis condensans, right shoulder
## 17202 Osteitis condensans, left shoulder
## 17203 Osteitis condensans, unspecified shoulder
## 17204 Osteitis condensans, right upper arm
## 17205 Osteitis condensans, left upper arm
## 17206 Osteitis condensans, unspecified upper arm
## 17207 Osteitis condensans, right forearm
## 17208 Osteitis condensans, left forearm
## 17209 Osteitis condensans, unspecified forearm
## 17210 Osteitis condensans, right hand
## 17211 Osteitis condensans, left hand
## 17212 Osteitis condensans, unspecified hand
## 17213 Osteitis condensans, right thigh
## 17214 Osteitis condensans, left thigh
## 17215 Osteitis condensans, unspecified thigh
## 17216 Osteitis condensans, right lower leg
## 17217 Osteitis condensans, left lower leg
## 17218 Osteitis condensans, unspecified lower leg
## 17219 Osteitis condensans, right ankle and foot
## 17220 Osteitis condensans, left ankle and foot
## 17221 Osteitis condensans, unspecified ankle and foot
## 17222 Osteitis condensans, other site
## 17223 Osteitis condensans, multiple sites
## 17224 Solitary bone cyst, unspecified site
## 17225 Solitary bone cyst, right shoulder
## 17226 Solitary bone cyst, left shoulder
## 17227 Solitary bone cyst, unspecified shoulder
## 17228 Solitary bone cyst, right humerus
## 17229 Solitary bone cyst, left humerus
## 17230 Solitary bone cyst, unspecified humerus
## 17231 Solitary bone cyst, right ulna and radius
## 17232 Solitary bone cyst, left ulna and radius
## 17233 Solitary bone cyst, unspecified ulna and radius
## 17234 Solitary bone cyst, right hand
## 17235 Solitary bone cyst, left hand
## 17236 Solitary bone cyst, unspecified hand
## 17237 Solitary bone cyst, right pelvis
## 17238 Solitary bone cyst, left pelvis
## 17239 Solitary bone cyst, unspecified pelvis
## 17240 Solitary bone cyst, right tibia and fibula
## 17241 Solitary bone cyst, left tibia and fibula
## 17242 Solitary bone cyst, unspecified tibia and fibula
## 17243 Solitary bone cyst, right ankle and foot
## 17244 Solitary bone cyst, left ankle and foot
## 17245 Solitary bone cyst, unspecified ankle and foot
## 17246 Solitary bone cyst, other site
## 17247 Aneurysmal bone cyst, unspecified site
## 17248 Aneurysmal bone cyst, right shoulder
## 17249 Aneurysmal bone cyst, left shoulder
## 17250 Aneurysmal bone cyst, unspecified shoulder
## 17251 Aneurysmal bone cyst, right upper arm
## 17252 Aneurysmal bone cyst, left upper arm
## 17253 Aneurysmal bone cyst, unspecified upper arm
## 17254 Aneurysmal bone cyst, right forearm
## 17255 Aneurysmal bone cyst, left forearm
## 17256 Aneurysmal bone cyst, unspecified forearm
## 17257 Aneurysmal bone cyst, right hand
## 17258 Aneurysmal bone cyst, left hand
## 17259 Aneurysmal bone cyst, unspecified hand
## 17260 Aneurysmal bone cyst, right thigh
## 17261 Aneurysmal bone cyst, left thigh
## 17262 Aneurysmal bone cyst, unspecified thigh
## 17263 Aneurysmal bone cyst, right lower leg
## 17264 Aneurysmal bone cyst, left lower leg
## 17265 Aneurysmal bone cyst, unspecified lower leg
## 17266 Aneurysmal bone cyst, right ankle and foot
## 17267 Aneurysmal bone cyst, left ankle and foot
## 17268 Aneurysmal bone cyst, unspecified ankle and foot
## 17269 Aneurysmal bone cyst, other site
## 17270 Aneurysmal bone cyst, multiple sites
## 17271 Other cyst of bone, unspecified site
## 17272 Other cyst of bone, right shoulder
## 17273 Other cyst of bone, left shoulder
## 17274 Other cyst of bone, unspecified shoulder
## 17275 Other cyst of bone, right upper arm
## 17276 Other cyst of bone, left upper arm
## 17277 Other cyst of bone, unspecified upper arm
## 17278 Other cyst of bone, right forearm
## 17279 Other cyst of bone, left forearm
## 17280 Other cyst of bone, unspecified forearm
## 17281 Other cyst of bone, right hand
## 17282 Other cyst of bone, left hand
## 17283 Other cyst of bone, unspecified hand
## 17284 Other cyst of bone, right thigh
## 17285 Other cyst of bone, left thigh
## 17286 Other cyst of bone, unspecified thigh
## 17287 Other cyst of bone, right lower leg
## 17288 Other cyst of bone, left lower leg
## 17289 Other cyst of bone, unspecified lower leg
## 17290 Other cyst of bone, right ankle and foot
## 17291 Other cyst of bone, left ankle and foot
## 17292 Other cyst of bone, unspecified ankle and foot
## 17293 Other cyst of bone, other site
## 17294 Other cyst of bone, multiple sites
## 17295 Other specified disorders of bone density and structure, unspecified site
## 17296 Other specified disorders of bone density and structure, right shoulder
## 17297 Other specified disorders of bone density and structure, left shoulder
## 17298 Other specified disorders of bone density and structure, unspecified shoulder
## 17299 Other specified disorders of bone density and structure, right upper arm
## 17300 Other specified disorders of bone density and structure, left upper arm
## 17301 Other specified disorders of bone density and structure, unspecified upper arm
## 17302 Other specified disorders of bone density and structure, right forearm
## 17303 Other specified disorders of bone density and structure, left forearm
## 17304 Other specified disorders of bone density and structure, unspecified forearm
## 17305 Other specified disorders of bone density and structure, right hand
## 17306 Other specified disorders of bone density and structure, left hand
## 17307 Other specified disorders of bone density and structure, unspecified hand
## 17308 Other specified disorders of bone density and structure, right thigh
## 17309 Other specified disorders of bone density and structure, left thigh
## 17310 Other specified disorders of bone density and structure, unspecified thigh
## 17311 Other specified disorders of bone density and structure, right lower leg
## 17312 Other specified disorders of bone density and structure, left lower leg
## 17313 Other specified disorders of bone density and structure, unspecified lower leg
## 17314 Other specified disorders of bone density and structure, right ankle and foot
## 17315 Other specified disorders of bone density and structure, left ankle and foot
## 17316 Other specified disorders of bone density and structure, unspecified ankle and foot
## 17317 Other specified disorders of bone density and structure, other site
## 17318 Other specified disorders of bone density and structure, multiple sites
## 17319 Disorder of bone density and structure, unspecified
## 17320 Acute hematogenous osteomyelitis, unspecified site
## 17321 Acute hematogenous osteomyelitis, right shoulder
## 17322 Acute hematogenous osteomyelitis, left shoulder
## 17323 Acute hematogenous osteomyelitis, unspecified shoulder
## 17324 Acute hematogenous osteomyelitis, right humerus
## 17325 Acute hematogenous osteomyelitis, left humerus
## 17326 Acute hematogenous osteomyelitis, unspecified humerus
## 17327 Acute hematogenous osteomyelitis, right radius and ulna
## 17328 Acute hematogenous osteomyelitis, left radius and ulna
## 17329 Acute hematogenous osteomyelitis, unspecified radius and ulna
## 17330 Acute hematogenous osteomyelitis, right hand
## 17331 Acute hematogenous osteomyelitis, left hand
## 17332 Acute hematogenous osteomyelitis, unspecified hand
## 17333 Acute hematogenous osteomyelitis, right femur
## 17334 Acute hematogenous osteomyelitis, left femur
## 17335 Acute hematogenous osteomyelitis, unspecified femur
## 17336 Acute hematogenous osteomyelitis, right tibia and fibula
## 17337 Acute hematogenous osteomyelitis, left tibia and fibula
## 17338 Acute hematogenous osteomyelitis, unspecified tibia and fibula
## 17339 Acute hematogenous osteomyelitis, right ankle and foot
## 17340 Acute hematogenous osteomyelitis, left ankle and foot
## 17341 Acute hematogenous osteomyelitis, unspecified ankle and foot
## 17342 Acute hematogenous osteomyelitis, other sites
## 17343 Acute hematogenous osteomyelitis, multiple sites
## 17344 Other acute osteomyelitis, unspecified site
## 17345 Other acute osteomyelitis, right shoulder
## 17346 Other acute osteomyelitis, left shoulder
## 17347 Other acute osteomyelitis, unspecified shoulder
## 17348 Other acute osteomyelitis, right humerus
## 17349 Other acute osteomyelitis, left humerus
## 17350 Other acute osteomyelitis, unspecified humerus
## 17351 Other acute osteomyelitis, right radius and ulna
## 17352 Other acute osteomyelitis, left radius and ulna
## 17353 Other acute osteomyelitis, unspecified radius and ulna
## 17354 Other acute osteomyelitis, right hand
## 17355 Other acute osteomyelitis, left hand
## 17356 Other acute osteomyelitis, unspecified hand
## 17357 Other acute osteomyelitis, right femur
## 17358 Other acute osteomyelitis, left femur
## 17359 Other acute osteomyelitis, unspecified femur
## 17360 Other acute osteomyelitis, right tibia and fibula
## 17361 Other acute osteomyelitis, left tibia and fibula
## 17362 Other acute osteomyelitis, unspecified tibia and fibula
## 17363 Other acute osteomyelitis, right ankle and foot
## 17364 Other acute osteomyelitis, left ankle and foot
## 17365 Other acute osteomyelitis, unspecified ankle and foot
## 17366 Other acute osteomyelitis, other site
## 17367 Other acute osteomyelitis, multiple sites
## 17368 Subacute osteomyelitis, unspecified site
## 17369 Subacute osteomyelitis, right shoulder
## 17370 Subacute osteomyelitis, left shoulder
## 17371 Subacute osteomyelitis, unspecified shoulder
## 17372 Subacute osteomyelitis, right humerus
## 17373 Subacute osteomyelitis, left humerus
## 17374 Subacute osteomyelitis, unspecified humerus
## 17375 Subacute osteomyelitis, right radius and ulna
## 17376 Subacute osteomyelitis, left radius and ulna
## 17377 Subacute osteomyelitis, unspecified radius and ulna
## 17378 Subacute osteomyelitis, right hand
## 17379 Subacute osteomyelitis, left hand
## 17380 Subacute osteomyelitis, unspecified hand
## 17381 Subacute osteomyelitis, right femur
## 17382 Subacute osteomyelitis, left femur
## 17383 Subacute osteomyelitis, unspecified femur
## 17384 Subacute osteomyelitis, right tibia and fibula
## 17385 Subacute osteomyelitis, left tibia and fibula
## 17386 Subacute osteomyelitis, unspecified tibia and fibula
## 17387 Subacute osteomyelitis, right ankle and foot
## 17388 Subacute osteomyelitis, left ankle and foot
## 17389 Subacute osteomyelitis, unspecified ankle and foot
## 17390 Subacute osteomyelitis, other site
## 17391 Subacute osteomyelitis, multiple sites
## 17392 Chronic multifocal osteomyelitis, unspecified site
## 17393 Chronic multifocal osteomyelitis, right shoulder
## 17394 Chronic multifocal osteomyelitis, left shoulder
## 17395 Chronic multifocal osteomyelitis, unspecified shoulder
## 17396 Chronic multifocal osteomyelitis, right humerus
## 17397 Chronic multifocal osteomyelitis, left humerus
## 17398 Chronic multifocal osteomyelitis, unspecified humerus
## 17399 Chronic multifocal osteomyelitis, right radius and ulna
## 17400 Chronic multifocal osteomyelitis, left radius and ulna
## 17401 Chronic multifocal osteomyelitis, unspecified radius and ulna
## 17402 Chronic multifocal osteomyelitis, right hand
## 17403 Chronic multifocal osteomyelitis, left hand
## 17404 Chronic multifocal osteomyelitis, unspecified hand
## 17405 Chronic multifocal osteomyelitis, right femur
## 17406 Chronic multifocal osteomyelitis, left femur
## 17407 Chronic multifocal osteomyelitis, unspecified femur
## 17408 Chronic multifocal osteomyelitis, right tibia and fibula
## 17409 Chronic multifocal osteomyelitis, left tibia and fibula
## 17410 Chronic multifocal osteomyelitis, unspecified tibia and fibula
## 17411 Chronic multifocal osteomyelitis, right ankle and foot
## 17412 Chronic multifocal osteomyelitis, left ankle and foot
## 17413 Chronic multifocal osteomyelitis, unspecified ankle and foot
## 17414 Chronic multifocal osteomyelitis, other site
## 17415 Chronic multifocal osteomyelitis, multiple sites
## 17416 Chronic osteomyelitis with draining sinus, unspecified site
## 17417 Chronic osteomyelitis with draining sinus, right shoulder
## 17418 Chronic osteomyelitis with draining sinus, left shoulder
## 17419 Chronic osteomyelitis with draining sinus, unspecified shoulder
## 17420 Chronic osteomyelitis with draining sinus, right humerus
## 17421 Chronic osteomyelitis with draining sinus, left humerus
## 17422 Chronic osteomyelitis with draining sinus, unspecified humerus
## 17423 Chronic osteomyelitis with draining sinus, right radius and ulna
## 17424 Chronic osteomyelitis with draining sinus, left radius and ulna
## 17425 Chronic osteomyelitis with draining sinus, unspecified radius and ulna
## 17426 Chronic osteomyelitis with draining sinus, right hand
## 17427 Chronic osteomyelitis with draining sinus, left hand
## 17428 Chronic osteomyelitis with draining sinus, unspecified hand
## 17429 Chronic osteomyelitis with draining sinus, right femur
## 17430 Chronic osteomyelitis with draining sinus, left femur
## 17431 Chronic osteomyelitis with draining sinus, unspecified femur
## 17432 Chronic osteomyelitis with draining sinus, right tibia and fibula
## 17433 Chronic osteomyelitis with draining sinus, left tibia and fibula
## 17434 Chronic osteomyelitis with draining sinus, unspecified tibia and fibula
## 17435 Chronic osteomyelitis with draining sinus, right ankle and foot
## 17436 Chronic osteomyelitis with draining sinus, left ankle and foot
## 17437 Chronic osteomyelitis with draining sinus, unspecified ankle and foot
## 17438 Chronic osteomyelitis with draining sinus, other site
## 17439 Chronic osteomyelitis with draining sinus, multiple sites
## 17440 Other chronic hematogenous osteomyelitis, unspecified site
## 17441 Other chronic hematogenous osteomyelitis, right shoulder
## 17442 Other chronic hematogenous osteomyelitis, left shoulder
## 17443 Other chronic hematogenous osteomyelitis, unspecified shoulder
## 17444 Other chronic hematogenous osteomyelitis, right humerus
## 17445 Other chronic hematogenous osteomyelitis, left humerus
## 17446 Other chronic hematogenous osteomyelitis, unspecified humerus
## 17447 Other chronic hematogenous osteomyelitis, right radius and ulna
## 17448 Other chronic hematogenous osteomyelitis, left radius and ulna
## 17449 Other chronic hematogenous osteomyelitis, unspecified radius and ulna
## 17450 Other chronic hematogenous osteomyelitis, right hand
## 17451 Other chronic hematogenous osteomyelitis, left hand
## 17452 Other chronic hematogenous osteomyelitis, unspecified hand
## 17453 Other chronic hematogenous osteomyelitis, right femur
## 17454 Other chronic hematogenous osteomyelitis, left femur
## 17455 Other chronic hematogenous osteomyelitis, unspecified femur
## 17456 Other chronic hematogenous osteomyelitis, right tibia and fibula
## 17457 Other chronic hematogenous osteomyelitis, left tibia and fibula
## 17458 Other chronic hematogenous osteomyelitis, unspecified tibia and fibula
## 17459 Other chronic hematogenous osteomyelitis, right ankle and foot
## 17460 Other chronic hematogenous osteomyelitis, left ankle and foot
## 17461 Other chronic hematogenous osteomyelitis, unspecified ankle and foot
## 17462 Other chronic hematogenous osteomyelitis, other site
## 17463 Other chronic hematogenous osteomyelitis, multiple sites
## 17464 Other chronic osteomyelitis, unspecified site
## 17465 Other chronic osteomyelitis, right shoulder
## 17466 Other chronic osteomyelitis, left shoulder
## 17467 Other chronic osteomyelitis, unspecified shoulder
## 17468 Other chronic osteomyelitis, right humerus
## 17469 Other chronic osteomyelitis, left humerus
## 17470 Other chronic osteomyelitis, unspecified humerus
## 17471 Other chronic osteomyelitis, right radius and ulna
## 17472 Other chronic osteomyelitis, left radius and ulna
## 17473 Other chronic osteomyelitis, unspecified radius and ulna
## 17474 Other chronic osteomyelitis, right hand
## 17475 Other chronic osteomyelitis, left hand
## 17476 Other chronic osteomyelitis, unspecified hand
## 17477 Other chronic osteomyelitis, right thigh
## 17478 Other chronic osteomyelitis, left thigh
## 17479 Other chronic osteomyelitis, unspecified thigh
## 17480 Other chronic osteomyelitis, right tibia and fibula
## 17481 Other chronic osteomyelitis, left tibia and fibula
## 17482 Other chronic osteomyelitis, unspecified tibia and fibula
## 17483 Other chronic osteomyelitis, right ankle and foot
## 17484 Other chronic osteomyelitis, left ankle and foot
## 17485 Other chronic osteomyelitis, unspecified ankle and foot
## 17486 Other chronic osteomyelitis, other site
## 17487 Other chronic osteomyelitis, multiple sites
## 17488 Other osteomyelitis, multiple sites
## 17489 Other osteomyelitis, shoulder
## 17490 Other osteomyelitis, upper arm
## 17491 Other osteomyelitis, forearm
## 17492 Other osteomyelitis, hand
## 17493 Other osteomyelitis, thigh
## 17494 Other osteomyelitis, lower leg
## 17495 Other osteomyelitis, ankle and foot
## 17496 Other osteomyelitis, other site
## 17497 Other osteomyelitis, unspecified sites
## 17498 Osteomyelitis, unspecified
## 17499 Idiopathic aseptic necrosis of unspecified bone
## 17500 Idiopathic aseptic necrosis of right shoulder
## 17501 Idiopathic aseptic necrosis of left shoulder
## 17502 Idiopathic aseptic necrosis of unspecified shoulder
## 17503 Idiopathic aseptic necrosis of right humerus
## 17504 Idiopathic aseptic necrosis of left humerus
## 17505 Idiopathic aseptic necrosis of unspecified humerus
## 17506 Idiopathic aseptic necrosis of right radius
## 17507 Idiopathic aseptic necrosis of left radius
## 17508 Idiopathic aseptic necrosis of unspecified radius
## 17509 Idiopathic aseptic necrosis of right ulna
## 17510 Idiopathic aseptic necrosis of left ulna
## 17511 Idiopathic aseptic necrosis of unspecified ulna
## 17512 Idiopathic aseptic necrosis of right carpus
## 17513 Idiopathic aseptic necrosis of left carpus
## 17514 Idiopathic aseptic necrosis of unspecified carpus
## 17515 Idiopathic aseptic necrosis of right hand
## 17516 Idiopathic aseptic necrosis of left hand
## 17517 Idiopathic aseptic necrosis of unspecified hand
## 17518 Idiopathic aseptic necrosis of right finger(s)
## 17519 Idiopathic aseptic necrosis of left finger(s)
## 17520 Idiopathic aseptic necrosis of unspecified finger(s)
## 17521 Idiopathic aseptic necrosis of pelvis
## 17522 Idiopathic aseptic necrosis of right femur
## 17523 Idiopathic aseptic necrosis of left femur
## 17524 Idiopathic aseptic necrosis of unspecified femur
## 17525 Idiopathic aseptic necrosis of right tibia
## 17526 Idiopathic aseptic necrosis of left tibia
## 17527 Idiopathic aseptic necrosis of unspecified tibia
## 17528 Idiopathic aseptic necrosis of right fibula
## 17529 Idiopathic aseptic necrosis of left fibula
## 17530 Idiopathic aseptic necrosis of unspecified fibula
## 17531 Idiopathic aseptic necrosis of right ankle
## 17532 Idiopathic aseptic necrosis of left ankle
## 17533 Idiopathic aseptic necrosis of unspecified ankle
## 17534 Idiopathic aseptic necrosis of right foot
## 17535 Idiopathic aseptic necrosis of left foot
## 17536 Idiopathic aseptic necrosis of unspecified foot
## 17537 Idiopathic aseptic necrosis of right toe(s)
## 17538 Idiopathic aseptic necrosis of left toe(s)
## 17539 Idiopathic aseptic necrosis of unspecified toe(s)
## 17540 Idiopathic aseptic necrosis of bone, other site
## 17541 Idiopathic aseptic necrosis of bone, multiple sites
## 17542 Osteonecrosis due to drugs, unspecified bone
## 17543 Osteonecrosis due to drugs, right shoulder
## 17544 Osteonecrosis due to drugs, left shoulder
## 17545 Osteonecrosis due to drugs, unspecified shoulder
## 17546 Osteonecrosis due to drugs, right humerus
## 17547 Osteonecrosis due to drugs, left humerus
## 17548 Osteonecrosis due to drugs, unspecified humerus
## 17549 Osteonecrosis due to drugs of right radius
## 17550 Osteonecrosis due to drugs of left radius
## 17551 Osteonecrosis due to drugs of unspecified radius
## 17552 Osteonecrosis due to drugs of right ulna
## 17553 Osteonecrosis due to drugs of left ulna
## 17554 Osteonecrosis due to drugs of unspecified ulna
## 17555 Osteonecrosis due to drugs of right carpus
## 17556 Osteonecrosis due to drugs of left carpus
## 17557 Osteonecrosis due to drugs of unspecified carpus
## 17558 Osteonecrosis due to drugs, right hand
## 17559 Osteonecrosis due to drugs, left hand
## 17560 Osteonecrosis due to drugs, unspecified hand
## 17561 Osteonecrosis due to drugs, right finger(s)
## 17562 Osteonecrosis due to drugs, left finger(s)
## 17563 Osteonecrosis due to drugs, unspecified finger(s)
## 17564 Osteonecrosis due to drugs, pelvis
## 17565 Osteonecrosis due to drugs, right femur
## 17566 Osteonecrosis due to drugs, left femur
## 17567 Osteonecrosis due to drugs, unspecified femur
## 17568 Osteonecrosis due to drugs, right tibia
## 17569 Osteonecrosis due to drugs, left tibia
## 17570 Osteonecrosis due to drugs, unspecified tibia
## 17571 Osteonecrosis due to drugs, right fibula
## 17572 Osteonecrosis due to drugs, left fibula
## 17573 Osteonecrosis due to drugs, unspecified fibula
## 17574 Osteonecrosis due to drugs, right ankle
## 17575 Osteonecrosis due to drugs, left ankle
## 17576 Osteonecrosis due to drugs, unspecified ankle
## 17577 Osteonecrosis due to drugs, right foot
## 17578 Osteonecrosis due to drugs, left foot
## 17579 Osteonecrosis due to drugs, unspecified foot
## 17580 Osteonecrosis due to drugs, right toe(s)
## 17581 Osteonecrosis due to drugs, left toe(s)
## 17582 Osteonecrosis due to drugs, unspecified toe(s)
## 17583 Osteonecrosis due to drugs, jaw
## 17584 Osteonecrosis due to drugs, other site
## 17585 Osteonecrosis due to drugs, multiple sites
## 17586 Osteonecrosis due to previous trauma, unspecified bone
## 17587 Osteonecrosis due to previous trauma, right shoulder
## 17588 Osteonecrosis due to previous trauma, left shoulder
## 17589 Osteonecrosis due to previous trauma, unspecified shoulder
## 17590 Osteonecrosis due to previous trauma, right humerus
## 17591 Osteonecrosis due to previous trauma, left humerus
## 17592 Osteonecrosis due to previous trauma, unspecified humerus
## 17593 Osteonecrosis due to previous trauma of right radius
## 17594 Osteonecrosis due to previous trauma of left radius
## 17595 Osteonecrosis due to previous trauma of unspecified radius
## 17596 Osteonecrosis due to previous trauma of right ulna
## 17597 Osteonecrosis due to previous trauma of left ulna
## 17598 Osteonecrosis due to previous trauma of unspecified ulna
## 17599 Osteonecrosis due to previous trauma of right carpus
## 17600 Osteonecrosis due to previous trauma of left carpus
## 17601 Osteonecrosis due to previous trauma of unspecified carpus
## 17602 Osteonecrosis due to previous trauma, right hand
## 17603 Osteonecrosis due to previous trauma, left hand
## 17604 Osteonecrosis due to previous trauma, unspecified hand
## 17605 Osteonecrosis due to previous trauma, right finger(s)
## 17606 Osteonecrosis due to previous trauma, left finger(s)
## 17607 Osteonecrosis due to previous trauma, unspecified finger(s)
## 17608 Osteonecrosis due to previous trauma, pelvis
## 17609 Osteonecrosis due to previous trauma, right femur
## 17610 Osteonecrosis due to previous trauma, left femur
## 17611 Osteonecrosis due to previous trauma, unspecified femur
## 17612 Osteonecrosis due to previous trauma, right tibia
## 17613 Osteonecrosis due to previous trauma, left tibia
## 17614 Osteonecrosis due to previous trauma, unspecified tibia
## 17615 Osteonecrosis due to previous trauma, right fibula
## 17616 Osteonecrosis due to previous trauma, left fibula
## 17617 Osteonecrosis due to previous trauma, unspecified fibula
## 17618 Osteonecrosis due to previous trauma, right ankle
## 17619 Osteonecrosis due to previous trauma, left ankle
## 17620 Osteonecrosis due to previous trauma, unspecified ankle
## 17621 Osteonecrosis due to previous trauma, right foot
## 17622 Osteonecrosis due to previous trauma, left foot
## 17623 Osteonecrosis due to previous trauma, unspecified foot
## 17624 Osteonecrosis due to previous trauma, right toe(s)
## 17625 Osteonecrosis due to previous trauma, left toe(s)
## 17626 Osteonecrosis due to previous trauma, unspecified toe(s)
## 17627 Osteonecrosis due to previous trauma, other site
## 17628 Osteonecrosis due to previous trauma, multiple sites
## 17629 Other secondary osteonecrosis, unspecified bone
## 17630 Other secondary osteonecrosis, right shoulder
## 17631 Other secondary osteonecrosis, left shoulder
## 17632 Other secondary osteonecrosis, unspecified shoulder
## 17633 Other secondary osteonecrosis, right humerus
## 17634 Other secondary osteonecrosis, left humerus
## 17635 Other secondary osteonecrosis, unspecified humerus
## 17636 Other secondary osteonecrosis of right radius
## 17637 Other secondary osteonecrosis of left radius
## 17638 Other secondary osteonecrosis of unspecified radius
## 17639 Other secondary osteonecrosis of right ulna
## 17640 Other secondary osteonecrosis of left ulna
## 17641 Other secondary osteonecrosis of unspecified ulna
## 17642 Other secondary osteonecrosis of right carpus
## 17643 Other secondary osteonecrosis of left carpus
## 17644 Other secondary osteonecrosis of unspecified carpus
## 17645 Other secondary osteonecrosis, right hand
## 17646 Other secondary osteonecrosis, left hand
## 17647 Other secondary osteonecrosis, unspecified hand
## 17648 Other secondary osteonecrosis, right finger(s)
## 17649 Other secondary osteonecrosis, left finger(s)
## 17650 Other secondary osteonecrosis, unspecified finger(s)
## 17651 Other secondary osteonecrosis, pelvis
## 17652 Other secondary osteonecrosis, right femur
## 17653 Other secondary osteonecrosis, left femur
## 17654 Other secondary osteonecrosis, unspecified femur
## 17655 Other secondary osteonecrosis, right tibia
## 17656 Other secondary osteonecrosis, left tibia
## 17657 Other secondary osteonecrosis, unspecified tibia
## 17658 Other secondary osteonecrosis, right fibula
## 17659 Other secondary osteonecrosis, left fibula
## 17660 Other secondary osteonecrosis, unspecified fibula
## 17661 Other secondary osteonecrosis, right ankle
## 17662 Other secondary osteonecrosis, left ankle
## 17663 Other secondary osteonecrosis, unspecified ankle
## 17664 Other secondary osteonecrosis, right foot
## 17665 Other secondary osteonecrosis, left foot
## 17666 Other secondary osteonecrosis, unspecified foot
## 17667 Other secondary osteonecrosis, right toe(s)
## 17668 Other secondary osteonecrosis, left toe(s)
## 17669 Other secondary osteonecrosis, unspecified toe(s)
## 17670 Other secondary osteonecrosis, other site
## 17671 Other secondary osteonecrosis, multiple sites
## 17672 Other osteonecrosis, unspecified bone
## 17673 Other osteonecrosis, right shoulder
## 17674 Other osteonecrosis, left shoulder
## 17675 Other osteonecrosis, unspecified shoulder
## 17676 Other osteonecrosis, right humerus
## 17677 Other osteonecrosis, left humerus
## 17678 Other osteonecrosis, unspecified humerus
## 17679 Other osteonecrosis of right radius
## 17680 Other osteonecrosis of left radius
## 17681 Other osteonecrosis of unspecified radius
## 17682 Other osteonecrosis of right ulna
## 17683 Other osteonecrosis of left ulna
## 17684 Other osteonecrosis of unspecified ulna
## 17685 Other osteonecrosis of right carpus
## 17686 Other osteonecrosis of left carpus
## 17687 Other osteonecrosis of unspecified carpus
## 17688 Other osteonecrosis, right hand
## 17689 Other osteonecrosis, left hand
## 17690 Other osteonecrosis, unspecified hand
## 17691 Other osteonecrosis, right finger(s)
## 17692 Other osteonecrosis, left finger(s)
## 17693 Other osteonecrosis, unspecified finger(s)
## 17694 Other osteonecrosis, pelvis
## 17695 Other osteonecrosis, right femur
## 17696 Other osteonecrosis, left femur
## 17697 Other osteonecrosis, unspecified femur
## 17698 Other osteonecrosis, right tibia
## 17699 Other osteonecrosis, left tibia
## 17700 Other osteonecrosis, unspecified tibia
## 17701 Other osteonecrosis, right fibula
## 17702 Other osteonecrosis, left fibula
## 17703 Other osteonecrosis, unspecified fibula
## 17704 Other osteonecrosis, right ankle
## 17705 Other osteonecrosis, left ankle
## 17706 Other osteonecrosis, unspecified ankle
## 17707 Other osteonecrosis, right foot
## 17708 Other osteonecrosis, left foot
## 17709 Other osteonecrosis, unspecified foot
## 17710 Other osteonecrosis, right toe(s)
## 17711 Other osteonecrosis, left toe(s)
## 17712 Other osteonecrosis, unspecified toe(s)
## 17713 Other osteonecrosis, other site
## 17714 Other osteonecrosis, multiple sites
## 17715 Osteonecrosis, unspecified
## 17716 Osteitis deformans of skull
## 17717 Osteitis deformans of vertebrae
## 17718 Osteitis deformans of right shoulder
## 17719 Osteitis deformans of left shoulder
## 17720 Osteitis deformans of unspecified shoulder
## 17721 Osteitis deformans of right upper arm
## 17722 Osteitis deformans of left upper arm
## 17723 Osteitis deformans of unspecified upper arm
## 17724 Osteitis deformans of right forearm
## 17725 Osteitis deformans of left forearm
## 17726 Osteitis deformans of unspecified forearm
## 17727 Osteitis deformans of right hand
## 17728 Osteitis deformans of left hand
## 17729 Osteitis deformans of unspecified hand
## 17730 Osteitis deformans of right thigh
## 17731 Osteitis deformans of left thigh
## 17732 Osteitis deformans of unspecified thigh
## 17733 Osteitis deformans of right lower leg
## 17734 Osteitis deformans of left lower leg
## 17735 Osteitis deformans of unspecified lower leg
## 17736 Osteitis deformans of right ankle and foot
## 17737 Osteitis deformans of left ankle and foot
## 17738 Osteitis deformans of unspecified ankle and foot
## 17739 Osteitis deformans of other bones
## 17740 Osteitis deformans of multiple sites
## 17741 Osteitis deformans of unspecified bone
## 17742 Algoneurodystrophy, unspecified site
## 17743 Algoneurodystrophy, right shoulder
## 17744 Algoneurodystrophy, left shoulder
## 17745 Algoneurodystrophy, unspecified shoulder
## 17746 Algoneurodystrophy, right upper arm
## 17747 Algoneurodystrophy, left upper arm
## 17748 Algoneurodystrophy, unspecified upper arm
## 17749 Algoneurodystrophy, right forearm
## 17750 Algoneurodystrophy, left forearm
## 17751 Algoneurodystrophy, unspecified forearm
## 17752 Algoneurodystrophy, right hand
## 17753 Algoneurodystrophy, left hand
## 17754 Algoneurodystrophy, unspecified hand
## 17755 Algoneurodystrophy, right thigh
## 17756 Algoneurodystrophy, left thigh
## 17757 Algoneurodystrophy, unspecified thigh
## 17758 Algoneurodystrophy, right lower leg
## 17759 Algoneurodystrophy, left lower leg
## 17760 Algoneurodystrophy, unspecified lower leg
## 17761 Algoneurodystrophy, right ankle and foot
## 17762 Algoneurodystrophy, left ankle and foot
## 17763 Algoneurodystrophy, unspecified ankle and foot
## 17764 Algoneurodystrophy, other site
## 17765 Algoneurodystrophy, multiple sites
## 17766 Complete physeal arrest, right proximal humerus
## 17767 Complete physeal arrest, left proximal humerus
## 17768 Partial physeal arrest, right proximal humerus
## 17769 Partial physeal arrest, left proximal humerus
## 17770 Complete physeal arrest, right distal humerus
## 17771 Complete physeal arrest, left distal humerus
## 17772 Partial physeal arrest, right distal humerus
## 17773 Partial physeal arrest, left distal humerus
## 17774 Physeal arrest, humerus, unspecified
## 17775 Complete physeal arrest, right distal radius
## 17776 Complete physeal arrest, left distal radius
## 17777 Partial physeal arrest, right distal radius
## 17778 Partial physeal arrest, left distal radius
## 17779 Other physeal arrest of forearm
## 17780 Physeal arrest, forearm, unspecified
## 17781 Complete physeal arrest, right proximal femur
## 17782 Complete physeal arrest, left proximal femur
## 17783 Partial physeal arrest, right proximal femur
## 17784 Partial physeal arrest, left proximal femur
## 17785 Complete physeal arrest, right distal femur
## 17786 Complete physeal arrest, left distal femur
## 17787 Partial physeal arrest, right distal femur
## 17788 Partial physeal arrest, left distal femur
## 17789 Physeal arrest, femur, unspecified
## 17790 Complete physeal arrest, right proximal tibia
## 17791 Complete physeal arrest, left proximal tibia
## 17792 Partial physeal arrest, right proximal tibia
## 17793 Partial physeal arrest, left proximal tibia
## 17794 Complete physeal arrest, right distal tibia
## 17795 Complete physeal arrest, left distal tibia
## 17796 Partial physeal arrest, right distal tibia
## 17797 Partial physeal arrest, left distal tibia
## 17798 Other physeal arrest of lower leg
## 17799 Physeal arrest, lower leg, unspecified
## 17800 Physeal arrest, other site
## 17801 Other disorders of bone development and growth, unspecified site
## 17802 Other disorders of bone development and growth, right shoulder
## 17803 Other disorders of bone development and growth, left shoulder
## 17804 Other disorders of bone development and growth, unspecified shoulder
## 17805 Other disorders of bone development and growth, right humerus
## 17806 Other disorders of bone development and growth, left humerus
## 17807 Other disorders of bone development and growth, unspecified humerus
## 17808 Other disorders of bone development and growth, right ulna
## 17809 Other disorders of bone development and growth, left ulna
## 17810 Other disorders of bone development and growth, right radius
## 17811 Other disorders of bone development and growth, left radius
## 17812 Other disorders of bone development and growth, unspecified ulna and radius
## 17813 Other disorders of bone development and growth, right hand
## 17814 Other disorders of bone development and growth, left hand
## 17815 Other disorders of bone development and growth, unspecified hand
## 17816 Other disorders of bone development and growth, right femur
## 17817 Other disorders of bone development and growth, left femur
## 17818 Other disorders of bone development and growth, unspecified femur
## 17819 Other disorders of bone development and growth, right tibia
## 17820 Other disorders of bone development and growth, left tibia
## 17821 Other disorders of bone development and growth, right fibula
## 17822 Other disorders of bone development and growth, left fibula
## 17823 Other disorders of bone development and growth, unspecified lower leg
## 17824 Other disorders of bone development and growth, right ankle and foot
## 17825 Other disorders of bone development and growth, left ankle and foot
## 17826 Other disorders of bone development and growth, unspecified ankle and foot
## 17827 Other disorders of bone development and growth, other site
## 17828 Other disorders of bone development and growth, multiple sites
## 17829 Hypertrophy of bone, unspecified site
## 17830 Hypertrophy of bone, right shoulder
## 17831 Hypertrophy of bone, left shoulder
## 17832 Hypertrophy of bone, unspecified shoulder
## 17833 Hypertrophy of bone, right humerus
## 17834 Hypertrophy of bone, left humerus
## 17835 Hypertrophy of bone, unspecified humerus
## 17836 Hypertrophy of bone, right ulna
## 17837 Hypertrophy of bone, left ulna
## 17838 Hypertrophy of bone, right radius
## 17839 Hypertrophy of bone, left radius
## 17840 Hypertrophy of bone, unspecified ulna and radius
## 17841 Hypertrophy of bone, right hand
## 17842 Hypertrophy of bone, left hand
## 17843 Hypertrophy of bone, unspecified hand
## 17844 Hypertrophy of bone, right femur
## 17845 Hypertrophy of bone, left femur
## 17846 Hypertrophy of bone, unspecified femur
## 17847 Hypertrophy of bone, right tibia
## 17848 Hypertrophy of bone, left tibia
## 17849 Hypertrophy of bone, right fibula
## 17850 Hypertrophy of bone, left fibula
## 17851 Hypertrophy of bone, unspecified tibia and fibula
## 17852 Hypertrophy of bone, right ankle and foot
## 17853 Hypertrophy of bone, left ankle and foot
## 17854 Hypertrophy of bone, unspecified ankle and foot
## 17855 Hypertrophy of bone, other site
## 17856 Hypertrophy of bone, multiple sites
## 17857 Other hypertrophic osteoarthropathy, unspecified site
## 17858 Other hypertrophic osteoarthropathy, right shoulder
## 17859 Other hypertrophic osteoarthropathy, left shoulder
## 17860 Other hypertrophic osteoarthropathy, unspecified shoulder
## 17861 Other hypertrophic osteoarthropathy, right upper arm
## 17862 Other hypertrophic osteoarthropathy, left upper arm
## 17863 Other hypertrophic osteoarthropathy, unspecified upper arm
## 17864 Other hypertrophic osteoarthropathy, right forearm
## 17865 Other hypertrophic osteoarthropathy, left forearm
## 17866 Other hypertrophic osteoarthropathy, unspecified forearm
## 17867 Other hypertrophic osteoarthropathy, right hand
## 17868 Other hypertrophic osteoarthropathy, left hand
## 17869 Other hypertrophic osteoarthropathy, unspecified hand
## 17870 Other hypertrophic osteoarthropathy, right thigh
## 17871 Other hypertrophic osteoarthropathy, left thigh
## 17872 Other hypertrophic osteoarthropathy, unspecified thigh
## 17873 Other hypertrophic osteoarthropathy, right lower leg
## 17874 Other hypertrophic osteoarthropathy, left lower leg
## 17875 Other hypertrophic osteoarthropathy, unspecified lower leg
## 17876 Other hypertrophic osteoarthropathy, right ankle and foot
## 17877 Other hypertrophic osteoarthropathy, left ankle and foot
## 17878 Other hypertrophic osteoarthropathy, unspecified ankle and foot
## 17879 Other hypertrophic osteoarthropathy, other site
## 17880 Other hypertrophic osteoarthropathy, multiple sites
## 17881 Osteolysis, unspecified site
## 17882 Osteolysis, right shoulder
## 17883 Osteolysis, left shoulder
## 17884 Osteolysis, unspecified shoulder
## 17885 Osteolysis, right upper arm
## 17886 Osteolysis, left upper arm
## 17887 Osteolysis, unspecified upper arm
## 17888 Osteolysis, right forearm
## 17889 Osteolysis, left forearm
## 17890 Osteolysis, unspecified forearm
## 17891 Osteolysis, right hand
## 17892 Osteolysis, left hand
## 17893 Osteolysis, unspecified hand
## 17894 Osteolysis, right thigh
## 17895 Osteolysis, left thigh
## 17896 Osteolysis, unspecified thigh
## 17897 Osteolysis, right lower leg
## 17898 Osteolysis, left lower leg
## 17899 Osteolysis, unspecified lower leg
## 17900 Osteolysis, right ankle and foot
## 17901 Osteolysis, left ankle and foot
## 17902 Osteolysis, unspecified ankle and foot
## 17903 Osteolysis, other site
## 17904 Osteolysis, multiple sites
## 17905 Osteopathy after poliomyelitis, unspecified site
## 17906 Osteopathy after poliomyelitis, right shoulder
## 17907 Osteopathy after poliomyelitis, left shoulder
## 17908 Osteopathy after poliomyelitis, unspecified shoulder
## 17909 Osteopathy after poliomyelitis, right upper arm
## 17910 Osteopathy after poliomyelitis, left upper arm
## 17911 Osteopathy after poliomyelitis, unspecified upper arm
## 17912 Osteopathy after poliomyelitis, right forearm
## 17913 Osteopathy after poliomyelitis, left forearm
## 17914 Osteopathy after poliomyelitis, unspecified forearm
## 17915 Osteopathy after poliomyelitis, right hand
## 17916 Osteopathy after poliomyelitis, left hand
## 17917 Osteopathy after poliomyelitis, unspecified hand
## 17918 Osteopathy after poliomyelitis, right thigh
## 17919 Osteopathy after poliomyelitis, left thigh
## 17920 Osteopathy after poliomyelitis, unspecified thigh
## 17921 Osteopathy after poliomyelitis, right lower leg
## 17922 Osteopathy after poliomyelitis, left lower leg
## 17923 Osteopathy after poliomyelitis, unspecified lower leg
## 17924 Osteopathy after poliomyelitis, right ankle and foot
## 17925 Osteopathy after poliomyelitis, left ankle and foot
## 17926 Osteopathy after poliomyelitis, unspecified ankle and foot
## 17927 Osteopathy after poliomyelitis, other site
## 17928 Osteopathy after poliomyelitis, multiple sites
## 17929 Major osseous defect, unspecified site
## 17930 Major osseous defect, right shoulder region
## 17931 Major osseous defect, left shoulder region
## 17932 Major osseous defect, unspecified shoulder region
## 17933 Major osseous defect, right humerus
## 17934 Major osseous defect, left humerus
## 17935 Major osseous defect, unspecified humerus
## 17936 Major osseous defect, right forearm
## 17937 Major osseous defect, left forearm
## 17938 Major osseous defect, unspecified forearm
## 17939 Major osseous defect, right hand
## 17940 Major osseous defect, left hand
## 17941 Major osseous defect, unspecified hand
## 17942 Major osseous defect, right pelvic region and thigh
## 17943 Major osseous defect, left pelvic region and thigh
## 17944 Major osseous defect, unspecified pelvic region and thigh
## 17945 Major osseous defect, right lower leg
## 17946 Major osseous defect, left lower leg
## 17947 Major osseous defect, unspecified lower leg
## 17948 Major osseous defect, right ankle and foot
## 17949 Major osseous defect, left ankle and foot
## 17950 Major osseous defect, unspecified ankle and foot
## 17951 Major osseous defect, other site
## 17952 Major osseous defect, multiple sites
## 17953 Other specified disorders of bone, multiple sites
## 17954 Other specified disorders of bone, shoulder
## 17955 Other specified disorders of bone, upper arm
## 17956 Other specified disorders of bone, forearm
## 17957 Other specified disorders of bone, hand
## 17958 Other specified disorders of bone, thigh
## 17959 Other specified disorders of bone, lower leg
## 17960 Other specified disorders of bone, ankle and foot
## 17961 Other specified disorders of bone, other site
## 17962 Other specified disorders of bone, unspecified site
## 17963 Disorder of bone, unspecified
## 17964 Osteonecrosis in diseases classified elsewhere, unspecified site
## 17965 Osteonecrosis in diseases classified elsewhere, right shoulder
## 17966 Osteonecrosis in diseases classified elsewhere, left shoulder
## 17967 Osteonecrosis in diseases classified elsewhere, unspecified shoulder
## 17968 Osteonecrosis in diseases classified elsewhere, right upper arm
## 17969 Osteonecrosis in diseases classified elsewhere, left upper arm
## 17970 Osteonecrosis in diseases classified elsewhere, unspecified upper arm
## 17971 Osteonecrosis in diseases classified elsewhere, right forearm
## 17972 Osteonecrosis in diseases classified elsewhere, left forearm
## 17973 Osteonecrosis in diseases classified elsewhere, unspecified forearm
## 17974 Osteonecrosis in diseases classified elsewhere, right hand
## 17975 Osteonecrosis in diseases classified elsewhere, left hand
## 17976 Osteonecrosis in diseases classified elsewhere, unspecified hand
## 17977 Osteonecrosis in diseases classified elsewhere, right thigh
## 17978 Osteonecrosis in diseases classified elsewhere, left thigh
## 17979 Osteonecrosis in diseases classified elsewhere, unspecified thigh
## 17980 Osteonecrosis in diseases classified elsewhere, right lower leg
## 17981 Osteonecrosis in diseases classified elsewhere, left lower leg
## 17982 Osteonecrosis in diseases classified elsewhere, unspecified lower leg
## 17983 Osteonecrosis in diseases classified elsewhere, right ankle and foot
## 17984 Osteonecrosis in diseases classified elsewhere, left ankle and foot
## 17985 Osteonecrosis in diseases classified elsewhere, unspecified ankle and foot
## 17986 Osteonecrosis in diseases classified elsewhere, other site
## 17987 Osteonecrosis in diseases classified elsewhere, multiple sites
## 17988 Osteitis deformans in neoplastic diseases, unspecified site
## 17989 Osteitis deformans in neoplastic diseases, right shoulder
## 17990 Osteitis deformans in neoplastic diseases, left shoulder
## 17991 Osteitis deformans in neoplastic diseases, unspecified shoulder
## 17992 Osteitis deformans in neoplastic diseases, right upper arm
## 17993 Osteitis deformans in neoplastic diseases, left upper arm
## 17994 Osteitis deformans in neoplastic diseases, unspecified upper arm
## 17995 Osteitis deformans in neoplastic diseases, right forearm
## 17996 Osteitis deformans in neoplastic diseases, left forearm
## 17997 Osteitis deformans in neoplastic diseases, unspecified forearm
## 17998 Osteitis deformans in neoplastic diseases, right hand
## 17999 Osteitis deformans in neoplastic diseases, left hand
## 18000 Osteitis deformans in neoplastic diseases, unspecified hand
## 18001 Osteitis deformans in neoplastic diseases, right thigh
## 18002 Osteitis deformans in neoplastic diseases, left thigh
## 18003 Osteitis deformans in neoplastic diseases, unspecified thigh
## 18004 Osteitis deformans in neoplastic diseases, right lower leg
## 18005 Osteitis deformans in neoplastic diseases, left lower leg
## 18006 Osteitis deformans in neoplastic diseases, unspecified lower leg
## 18007 Osteitis deformans in neoplastic diseases, right ankle and foot
## 18008 Osteitis deformans in neoplastic diseases, left ankle and foot
## 18009 Osteitis deformans in neoplastic diseases, unspecified ankle and foot
## 18010 Osteitis deformans in neoplastic diseases, other site
## 18011 Osteitis deformans in neoplastic diseases, multiple sites
## 18012 Osteopathy in diseases classified elsewhere, unspecified site
## 18013 Osteopathy in diseases classified elsewhere, right shoulder
## 18014 Osteopathy in diseases classified elsewhere, left shoulder
## 18015 Osteopathy in diseases classified elsewhere, unspecified shoulder
## 18016 Osteopathy in diseases classified elsewhere, right upper arm
## 18017 Osteopathy in diseases classified elsewhere, left upper arm
## 18018 Osteopathy in diseases classified elsewhere, unspecified upper arm
## 18019 Osteopathy in diseases classified elsewhere, right forearm
## 18020 Osteopathy in diseases classified elsewhere, left forearm
## 18021 Osteopathy in diseases classified elsewhere, unspecified forearm
## 18022 Osteopathy in diseases classified elsewhere, right hand
## 18023 Osteopathy in diseases classified elsewhere, left hand
## 18024 Osteopathy in diseases classified elsewhere, unspecified hand
## 18025 Osteopathy in diseases classified elsewhere, right thigh
## 18026 Osteopathy in diseases classified elsewhere, left thigh
## 18027 Osteopathy in diseases classified elsewhere, unspecified thigh
## 18028 Osteopathy in diseases classified elsewhere, right lower leg
## 18029 Osteopathy in diseases classified elsewhere, left lower leg
## 18030 Osteopathy in diseases classified elsewhere, unspecified lower leg
## 18031 Osteopathy in diseases classified elsewhere, right ankle and foot
## 18032 Osteopathy in diseases classified elsewhere, left ankle and foot
## 18033 Osteopathy in diseases classified elsewhere, unspecified ankle and foot
## 18034 Osteopathy in diseases classified elsewhere, other site
## 18035 Osteopathy in diseases classified elsewhere, multiple sites
## 18036 Juvenile osteochondrosis of pelvis
## 18037 Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], unspecified leg
## 18038 Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], right leg
## 18039 Juvenile osteochondrosis of head of femur [Legg-Calve-Perthes], left leg
## 18040 Coxa plana, unspecified hip
## 18041 Coxa plana, right hip
## 18042 Coxa plana, left hip
## 18043 Pseudocoxalgia, unspecified hip
## 18044 Pseudocoxalgia, right hip
## 18045 Pseudocoxalgia, left hip
## 18046 Coxa magna, unspecified hip
## 18047 Coxa magna, right hip
## 18048 Coxa magna, left hip
## 18049 Other juvenile osteochondrosis of hip and pelvis, unspecified leg
## 18050 Other juvenile osteochondrosis of hip and pelvis, right leg
## 18051 Other juvenile osteochondrosis of hip and pelvis, left leg
## 18052 Juvenile osteochondrosis of hip and pelvis, unspecified, unspecified leg
## 18053 Juvenile osteochondrosis of hip and pelvis, unspecified, right leg
## 18054 Juvenile osteochondrosis of hip and pelvis, unspecified, left leg
## 18055 Juvenile osteochondrosis of humerus, unspecified arm
## 18056 Juvenile osteochondrosis of humerus, right arm
## 18057 Juvenile osteochondrosis of humerus, left arm
## 18058 Juvenile osteochondrosis of radius and ulna, unspecified arm
## 18059 Juvenile osteochondrosis of radius and ulna, right arm
## 18060 Juvenile osteochondrosis of radius and ulna, left arm
## 18061 Unspecified juvenile osteochondrosis, right hand
## 18062 Unspecified juvenile osteochondrosis, left hand
## 18063 Unspecified juvenile osteochondrosis, unspecified hand
## 18064 Osteochondrosis (juvenile) of carpal lunate [Kienbock], right hand
## 18065 Osteochondrosis (juvenile) of carpal lunate [Kienbock], left hand
## 18066 Osteochondrosis (juvenile) of carpal lunate [Kienbock], unspecified hand
## 18067 Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], right hand
## 18068 Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], left hand
## 18069 Osteochondrosis (juvenile) of metacarpal heads [Mauclaire], unspecified hand
## 18070 Other juvenile osteochondrosis, right hand
## 18071 Other juvenile osteochondrosis, left hand
## 18072 Other juvenile osteochondrosis, unspecified hand
## 18073 Other juvenile osteochondrosis, unspecified upper limb
## 18074 Other juvenile osteochondrosis, right upper limb
## 18075 Other juvenile osteochondrosis, left upper limb
## 18076 Juvenile osteochondrosis of patella, unspecified knee
## 18077 Juvenile osteochondrosis of patella, right knee
## 18078 Juvenile osteochondrosis of patella, left knee
## 18079 Juvenile osteochondrosis of tibia and fibula, unspecified leg
## 18080 Juvenile osteochondrosis of tibia and fibula, right leg
## 18081 Juvenile osteochondrosis of tibia and fibula, left leg
## 18082 Juvenile osteochondrosis of tarsus, unspecified ankle
## 18083 Juvenile osteochondrosis of tarsus, right ankle
## 18084 Juvenile osteochondrosis of tarsus, left ankle
## 18085 Juvenile osteochondrosis of metatarsus, unspecified foot
## 18086 Juvenile osteochondrosis of metatarsus, right foot
## 18087 Juvenile osteochondrosis of metatarsus, left foot
## 18088 Other specified juvenile osteochondrosis
## 18089 Juvenile osteochondrosis, unspecified
## 18090 Unspecified slipped upper femoral epiphysis (nontraumatic), right hip
## 18091 Unspecified slipped upper femoral epiphysis (nontraumatic), left hip
## 18092 Unspecified slipped upper femoral epiphysis (nontraumatic), unspecified hip
## 18093 Acute slipped upper femoral epiphysis (nontraumatic), right hip
## 18094 Acute slipped upper femoral epiphysis (nontraumatic), left hip
## 18095 Acute slipped upper femoral epiphysis (nontraumatic), unspecified hip
## 18096 Chronic slipped upper femoral epiphysis (nontraumatic), right hip
## 18097 Chronic slipped upper femoral epiphysis (nontraumatic), left hip
## 18098 Chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip
## 18099 Acute on chronic slipped upper femoral epiphysis (nontraumatic), right hip
## 18100 Acute on chronic slipped upper femoral epiphysis (nontraumatic), left hip
## 18101 Acute on chronic slipped upper femoral epiphysis (nontraumatic), unspecified hip
## 18102 Kienbock's disease of adults
## 18103 Osteochondritis dissecans of unspecified site
## 18104 Osteochondritis dissecans, right shoulder
## 18105 Osteochondritis dissecans, left shoulder
## 18106 Osteochondritis dissecans, unspecified shoulder
## 18107 Osteochondritis dissecans, right elbow
## 18108 Osteochondritis dissecans, left elbow
## 18109 Osteochondritis dissecans, unspecified elbow
## 18110 Osteochondritis dissecans, right wrist
## 18111 Osteochondritis dissecans, left wrist
## 18112 Osteochondritis dissecans, unspecified wrist
## 18113 Osteochondritis dissecans, joints of right hand
## 18114 Osteochondritis dissecans, joints of left hand
## 18115 Osteochondritis dissecans, joints of unspecified hand
## 18116 Osteochondritis dissecans, right hip
## 18117 Osteochondritis dissecans, left hip
## 18118 Osteochondritis dissecans, unspecified hip
## 18119 Osteochondritis dissecans, right knee
## 18120 Osteochondritis dissecans, left knee
## 18121 Osteochondritis dissecans, unspecified knee
## 18122 Osteochondritis dissecans, right ankle and joints of right foot
## 18123 Osteochondritis dissecans, left ankle and joints of left foot
## 18124 Osteochondritis dissecans, unspecified ankle and joints of foot
## 18125 Osteochondritis dissecans other site
## 18126 Osteochondritis dissecans multiple sites
## 18127 Other specified osteochondropathies of unspecified site
## 18128 Other specified osteochondropathies, right shoulder
## 18129 Other specified osteochondropathies, left shoulder
## 18130 Other specified osteochondropathies, unspecified shoulder
## 18131 Other specified osteochondropathies, right upper arm
## 18132 Other specified osteochondropathies, left upper arm
## 18133 Other specified osteochondropathies, unspecified upper arm
## 18134 Other specified osteochondropathies, right forearm
## 18135 Other specified osteochondropathies, left forearm
## 18136 Other specified osteochondropathies, unspecified forearm
## 18137 Other specified osteochondropathies, right hand
## 18138 Other specified osteochondropathies, left hand
## 18139 Other specified osteochondropathies, unspecified hand
## 18140 Other specified osteochondropathies, right thigh
## 18141 Other specified osteochondropathies, left thigh
## 18142 Other specified osteochondropathies, unspecified thigh
## 18143 Other specified osteochondropathies, right lower leg
## 18144 Other specified osteochondropathies, left lower leg
## 18145 Other specified osteochondropathies, unspecified lower leg
## 18146 Other specified osteochondropathies, right ankle and foot
## 18147 Other specified osteochondropathies, left ankle and foot
## 18148 Other specified osteochondropathies, unspecified ankle and foot
## 18149 Other specified osteochondropathies other
## 18150 Other specified osteochondropathies multiple sites
## 18151 Osteochondropathy, unspecified of unspecified site
## 18152 Osteochondropathy, unspecified, right shoulder
## 18153 Osteochondropathy, unspecified, left shoulder
## 18154 Osteochondropathy, unspecified, unspecified shoulder
## 18155 Osteochondropathy, unspecified, right upper arm
## 18156 Osteochondropathy, unspecified, left upper arm
## 18157 Osteochondropathy, unspecified, unspecified upper arm
## 18158 Osteochondropathy, unspecified, right forearm
## 18159 Osteochondropathy, unspecified, left forearm
## 18160 Osteochondropathy, unspecified, unspecified forearm
## 18161 Osteochondropathy, unspecified, right hand
## 18162 Osteochondropathy, unspecified, left hand
## 18163 Osteochondropathy, unspecified, unspecified hand
## 18164 Osteochondropathy, unspecified, right thigh
## 18165 Osteochondropathy, unspecified, left thigh
## 18166 Osteochondropathy, unspecified, unspecified thigh
## 18167 Osteochondropathy, unspecified, right lower leg
## 18168 Osteochondropathy, unspecified, left lower leg
## 18169 Osteochondropathy, unspecified, unspecified lower leg
## 18170 Osteochondropathy, unspecified, right ankle and foot
## 18171 Osteochondropathy, unspecified, left ankle and foot
## 18172 Osteochondropathy, unspecified, unspecified ankle and foot
## 18173 Osteochondropathy, unspecified other
## 18174 Osteochondropathy, unspecified multiple sites
## 18175 Chondrocostal junction syndrome [Tietze]
## 18176 Relapsing polychondritis
## 18177 Chondromalacia, unspecified site
## 18178 Chondromalacia, right shoulder
## 18179 Chondromalacia, left shoulder
## 18180 Chondromalacia, unspecified shoulder
## 18181 Chondromalacia, right elbow
## 18182 Chondromalacia, left elbow
## 18183 Chondromalacia, unspecified elbow
## 18184 Chondromalacia, right wrist
## 18185 Chondromalacia, left wrist
## 18186 Chondromalacia, unspecified wrist
## 18187 Chondromalacia, joints of right hand
## 18188 Chondromalacia, joints of left hand
## 18189 Chondromalacia, joints of unspecified hand
## 18190 Chondromalacia, right hip
## 18191 Chondromalacia, left hip
## 18192 Chondromalacia, unspecified hip
## 18193 Chondromalacia, right knee
## 18194 Chondromalacia, left knee
## 18195 Chondromalacia, unspecified knee
## 18196 Chondromalacia, right ankle and joints of right foot
## 18197 Chondromalacia, left ankle and joints of left foot
## 18198 Chondromalacia, unspecified ankle and joints of foot
## 18199 Chondromalacia, other site
## 18200 Chondromalacia, multiple sites
## 18201 Chondrolysis, right hip
## 18202 Chondrolysis, left hip
## 18203 Chondrolysis, unspecified hip
## 18204 Other specified disorders of cartilage, multiple sites
## 18205 Other specified disorders of cartilage, shoulder
## 18206 Other specified disorders of cartilage, upper arm
## 18207 Other specified disorders of cartilage, forearm
## 18208 Other specified disorders of cartilage, hand
## 18209 Other specified disorders of cartilage, thigh
## 18210 Other specified disorders of cartilage, lower leg
## 18211 Other specified disorders of cartilage, ankle and foot
## 18212 Other specified disorders of cartilage, other site
## 18213 Other specified disorders of cartilage, unspecified sites
## 18214 Disorder of cartilage, unspecified
## 18215 Acquired deformity of nose
## 18216 Cauliflower ear, unspecified ear
## 18217 Cauliflower ear, right ear
## 18218 Cauliflower ear, left ear
## 18219 Other acquired deformity of head
## 18220 Acquired deformity of neck
## 18221 Acquired deformity of chest and rib
## 18222 Acquired deformity of pelvis
## 18223 Other specified acquired deformities of musculoskeletal system
## 18224 Acquired deformity of musculoskeletal system, unspecified
## 18225 Pseudarthrosis after fusion or arthrodesis
## 18226 Postlaminectomy syndrome, not elsewhere classified
## 18227 Postradiation kyphosis
## 18228 Postlaminectomy kyphosis
## 18229 Postsurgical lordosis
## 18230 Postradiation scoliosis
## 18231 Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, right arm
## 18232 Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm
## 18233 Fracture of humerus following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified arm
## 18234 Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, right arm
## 18235 Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, left arm
## 18236 Fracture of radius or ulna following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified arm
## 18237 Fracture of pelvis following insertion of orthopedic implant, joint prosthesis, or bone plate
## 18238 Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, right leg
## 18239 Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, left leg
## 18240 Fracture of femur following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified leg
## 18241 Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, right leg
## 18242 Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, left leg
## 18243 Fracture of tibia or fibula following insertion of orthopedic implant, joint prosthesis, or bone plate, unspecified leg
## 18244 Fracture of other bone following insertion of orthopedic implant, joint prosthesis, or bone plate
## 18245 Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating a musculoskeletal system procedure
## 18246 Intraoperative hemorrhage and hematoma of a musculoskeletal structure complicating other procedure
## 18247 Accidental puncture and laceration of a musculoskeletal structure during a musculoskeletal system procedure
## 18248 Accidental puncture and laceration of a musculoskeletal structure during other procedure
## 18249 Postprocedural hemorrhage of a musculoskeletal structure following a musculoskeletal system procedure
## 18250 Postprocedural hemorrhage of a musculoskeletal structure following other procedure
## 18251 Postprocedural hematoma of a musculoskeletal structure following a musculoskeletal system procedure
## 18252 Postprocedural hematoma of a musculoskeletal structure following other procedure
## 18253 Postprocedural seroma of a musculoskeletal structure following a musculoskeletal system procedure
## 18254 Postprocedural seroma of a musculoskeletal structure following other procedure
## 18255 Other intraoperative and postprocedural complications and disorders of the musculoskeletal system
## 18256 Periprosthetic fracture around internal prosthetic right hip joint, initial encounter
## 18257 Periprosthetic fracture around internal prosthetic right hip joint, subsequent encounter
## 18258 Periprosthetic fracture around internal prosthetic right hip joint, sequela
## 18259 Periprosthetic fracture around internal prosthetic left hip joint, initial encounter
## 18260 Periprosthetic fracture around internal prosthetic left hip joint, subsequent encounter
## 18261 Periprosthetic fracture around internal prosthetic left hip joint, sequela
## 18262 Periprosthetic fracture around internal prosthetic right knee joint, initial encounter
## 18263 Periprosthetic fracture around internal prosthetic right knee joint, subsequent encounter
## 18264 Periprosthetic fracture around internal prosthetic right knee joint, sequela
## 18265 Periprosthetic fracture around internal prosthetic left knee joint, initial encounter
## 18266 Periprosthetic fracture around internal prosthetic left knee joint, subsequent encounter
## 18267 Periprosthetic fracture around internal prosthetic left knee joint, sequela
## 18268 Periprosthetic fracture around internal prosthetic right ankle joint, initial encounter
## 18269 Periprosthetic fracture around internal prosthetic right ankle joint, subsequent encounter
## 18270 Periprosthetic fracture around internal prosthetic right ankle joint, sequela
## 18271 Periprosthetic fracture around internal prosthetic left ankle joint, initial encounter
## 18272 Periprosthetic fracture around internal prosthetic left ankle joint, subsequent encounter
## 18273 Periprosthetic fracture around internal prosthetic left ankle joint, sequela
## 18274 Periprosthetic fracture around internal prosthetic right shoulder joint, initial encounter
## 18275 Periprosthetic fracture around internal prosthetic right shoulder joint, subsequent encounter
## 18276 Periprosthetic fracture around internal prosthetic right shoulder joint, sequela
## 18277 Periprosthetic fracture around internal prosthetic left shoulder joint, initial encounter
## 18278 Periprosthetic fracture around internal prosthetic left shoulder joint, subsequent encounter
## 18279 Periprosthetic fracture around internal prosthetic left shoulder joint, sequela
## 18280 Periprosthetic fracture around internal prosthetic right elbow joint, initial encounter
## 18281 Periprosthetic fracture around internal prosthetic right elbow joint, subsequent encounter
## 18282 Periprosthetic fracture around internal prosthetic right elbow joint, sequela
## 18283 Periprosthetic fracture around internal prosthetic left elbow joint, initial encounter
## 18284 Periprosthetic fracture around internal prosthetic left elbow joint, subsequent encounter
## 18285 Periprosthetic fracture around internal prosthetic left elbow joint, sequela
## 18286 Periprosthetic fracture around other internal prosthetic joint, initial encounter
## 18287 Periprosthetic fracture around other internal prosthetic joint, subsequent encounter
## 18288 Periprosthetic fracture around other internal prosthetic joint, sequela
## 18289 Periprosthetic fracture around unspecified internal prosthetic joint, initial encounter
## 18290 Periprosthetic fracture around unspecified internal prosthetic joint, subsequent encounter
## 18291 Periprosthetic fracture around unspecified internal prosthetic joint, sequela
## 18292 Segmental and somatic dysfunction of head region
## 18293 Segmental and somatic dysfunction of cervical region
## 18294 Segmental and somatic dysfunction of thoracic region
## 18295 Segmental and somatic dysfunction of lumbar region
## 18296 Segmental and somatic dysfunction of sacral region
## 18297 Segmental and somatic dysfunction of pelvic region
## 18298 Segmental and somatic dysfunction of lower extremity
## 18299 Segmental and somatic dysfunction of upper extremity
## 18300 Segmental and somatic dysfunction of rib cage
## 18301 Segmental and somatic dysfunction of abdomen and other regions
## 18302 Subluxation complex (vertebral) of head region
## 18303 Subluxation complex (vertebral) of cervical region
## 18304 Subluxation complex (vertebral) of thoracic region
## 18305 Subluxation complex (vertebral) of lumbar region
## 18306 Subluxation complex (vertebral) of sacral region
## 18307 Subluxation complex (vertebral) of pelvic region
## 18308 Subluxation complex (vertebral) of lower extremity
## 18309 Subluxation complex (vertebral) of upper extremity
## 18310 Subluxation complex (vertebral) of rib cage
## 18311 Subluxation complex (vertebral) of abdomen and other regions
## 18312 Subluxation stenosis of neural canal of head region
## 18313 Subluxation stenosis of neural canal of cervical region
## 18314 Subluxation stenosis of neural canal of thoracic region
## 18315 Subluxation stenosis of neural canal of lumbar region
## 18316 Subluxation stenosis of neural canal of sacral region
## 18317 Subluxation stenosis of neural canal of pelvic region
## 18318 Subluxation stenosis of neural canal of lower extremity
## 18319 Subluxation stenosis of neural canal of upper extremity
## 18320 Subluxation stenosis of neural canal of rib cage
## 18321 Subluxation stenosis of neural canal of abdomen and other regions
## 18322 Osseous stenosis of neural canal of head region
## 18323 Osseous stenosis of neural canal of cervical region
## 18324 Osseous stenosis of neural canal of thoracic region
## 18325 Osseous stenosis of neural canal of lumbar region
## 18326 Osseous stenosis of neural canal of sacral region
## 18327 Osseous stenosis of neural canal of pelvic region
## 18328 Osseous stenosis of neural canal of lower extremity
## 18329 Osseous stenosis of neural canal of upper extremity
## 18330 Osseous stenosis of neural canal of rib cage
## 18331 Osseous stenosis of neural canal of abdomen and other regions
## 18332 Connective tissue stenosis of neural canal of head region
## 18333 Connective tissue stenosis of neural canal of cervical region
## 18334 Connective tissue stenosis of neural canal of thoracic region
## 18335 Connective tissue stenosis of neural canal of lumbar region
## 18336 Connective tissue stenosis of neural canal of sacral region
## 18337 Connective tissue stenosis of neural canal of pelvic region
## 18338 Connective tissue stenosis of neural canal of lower extremity
## 18339 Connective tissue stenosis of neural canal of upper extremity
## 18340 Connective tissue stenosis of neural canal of rib cage
## 18341 Connective tissue stenosis of neural canal of abdomen and other regions
## 18342 Intervertebral disc stenosis of neural canal of head region
## 18343 Intervertebral disc stenosis of neural canal of cervical region
## 18344 Intervertebral disc stenosis of neural canal of thoracic region
## 18345 Intervertebral disc stenosis of neural canal of lumbar region
## 18346 Intervertebral disc stenosis of neural canal of sacral region
## 18347 Intervertebral disc stenosis of neural canal of pelvic region
## 18348 Intervertebral disc stenosis of neural canal of lower extremity
## 18349 Intervertebral disc stenosis of neural canal of upper extremity
## 18350 Intervertebral disc stenosis of neural canal of rib cage
## 18351 Intervertebral disc stenosis of neural canal of abdomen and other regions
## 18352 Osseous and subluxation stenosis of intervertebral foramina of head region
## 18353 Osseous and subluxation stenosis of intervertebral foramina of cervical region
## 18354 Osseous and subluxation stenosis of intervertebral foramina of thoracic region
## 18355 Osseous and subluxation stenosis of intervertebral foramina of lumbar region
## 18356 Osseous and subluxation stenosis of intervertebral foramina of sacral region
## 18357 Osseous and subluxation stenosis of intervertebral foramina of pelvic region
## 18358 Osseous and subluxation stenosis of intervertebral foramina of lower extremity
## 18359 Osseous and subluxation stenosis of intervertebral foramina of upper extremity
## 18360 Osseous and subluxation stenosis of intervertebral foramina of rib cage
## 18361 Osseous and subluxation stenosis of intervertebral foramina of abdomen and other regions
## 18362 Connective tissue and disc stenosis of intervertebral foramina of head region
## 18363 Connective tissue and disc stenosis of intervertebral foramina of cervical region
## 18364 Connective tissue and disc stenosis of intervertebral foramina of thoracic region
## 18365 Connective tissue and disc stenosis of intervertebral foramina of lumbar region
## 18366 Connective tissue and disc stenosis of intervertebral foramina of sacral region
## 18367 Connective tissue and disc stenosis of intervertebral foramina of pelvic region
## 18368 Connective tissue and disc stenosis of intervertebral foramina of lower extremity
## 18369 Connective tissue and disc stenosis of intervertebral foramina of upper extremity
## 18370 Connective tissue and disc stenosis of intervertebral foramina of rib cage
## 18371 Connective tissue and disc stenosis of intervertebral foramina of abdomen and other regions
## 18372 Other biomechanical lesions of head region
## 18373 Other biomechanical lesions of cervical region
## 18374 Other biomechanical lesions of thoracic region
## 18375 Other biomechanical lesions of lumbar region
## 18376 Other biomechanical lesions of sacral region
## 18377 Other biomechanical lesions of pelvic region
## 18378 Other biomechanical lesions of lower extremity
## 18379 Other biomechanical lesions of upper extremity
## 18380 Other biomechanical lesions of rib cage
## 18381 Other biomechanical lesions of abdomen and other regions
## 18382 Biomechanical lesion, unspecified
## 18383 Acute nephritic syndrome with minor glomerular abnormality
## 18384 Acute nephritic syndrome with focal and segmental glomerular lesions
## 18385 Acute nephritic syndrome with diffuse membranous glomerulonephritis
## 18386 Acute nephritic syndrome with diffuse mesangial proliferative glomerulonephritis
## 18387 Acute nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis
## 18388 Acute nephritic syndrome with diffuse mesangiocapillary glomerulonephritis
## 18389 Acute nephritic syndrome with dense deposit disease
## 18390 Acute nephritic syndrome with diffuse crescentic glomerulonephritis
## 18391 Acute nephritic syndrome with other morphologic changes
## 18392 Acute nephritic syndrome with unspecified morphologic changes
## 18393 Rapidly progressive nephritic syndrome with minor glomerular abnormality
## 18394 Rapidly progressive nephritic syndrome with focal and segmental glomerular lesions
## 18395 Rapidly progressive nephritic syndrome with diffuse membranous glomerulonephritis
## 18396 Rapidly progressive nephritic syndrome with diffuse mesangial proliferative glomerulonephritis
## 18397 Rapidly progressive nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis
## 18398 Rapidly progressive nephritic syndrome with diffuse mesangiocapillary glomerulonephritis
## 18399 Rapidly progressive nephritic syndrome with dense deposit disease
## 18400 Rapidly progressive nephritic syndrome with diffuse crescentic glomerulonephritis
## 18401 Rapidly progressive nephritic syndrome with other morphologic changes
## 18402 Rapidly progressive nephritic syndrome with unspecified morphologic changes
## 18403 Recurrent and persistent hematuria with minor glomerular abnormality
## 18404 Recurrent and persistent hematuria with focal and segmental glomerular lesions
## 18405 Recurrent and persistent hematuria with diffuse membranous glomerulonephritis
## 18406 Recurrent and persistent hematuria with diffuse mesangial proliferative glomerulonephritis
## 18407 Recurrent and persistent hematuria with diffuse endocapillary proliferative glomerulonephritis
## 18408 Recurrent and persistent hematuria with diffuse mesangiocapillary glomerulonephritis
## 18409 Recurrent and persistent hematuria with dense deposit disease
## 18410 Recurrent and persistent hematuria with diffuse crescentic glomerulonephritis
## 18411 Recurrent and persistent hematuria with other morphologic changes
## 18412 Recurrent and persistent hematuria with unspecified morphologic changes
## 18413 Chronic nephritic syndrome with minor glomerular abnormality
## 18414 Chronic nephritic syndrome with focal and segmental glomerular lesions
## 18415 Chronic nephritic syndrome with diffuse membranous glomerulonephritis
## 18416 Chronic nephritic syndrome with diffuse mesangial proliferative glomerulonephritis
## 18417 Chronic nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis
## 18418 Chronic nephritic syndrome with diffuse mesangiocapillary glomerulonephritis
## 18419 Chronic nephritic syndrome with dense deposit disease
## 18420 Chronic nephritic syndrome with diffuse crescentic glomerulonephritis
## 18421 Chronic nephritic syndrome with other morphologic changes
## 18422 Chronic nephritic syndrome with unspecified morphologic changes
## 18423 Nephrotic syndrome with minor glomerular abnormality
## 18424 Nephrotic syndrome with focal and segmental glomerular lesions
## 18425 Nephrotic syndrome with diffuse membranous glomerulonephritis
## 18426 Nephrotic syndrome with diffuse mesangial proliferative glomerulonephritis
## 18427 Nephrotic syndrome with diffuse endocapillary proliferative glomerulonephritis
## 18428 Nephrotic syndrome with diffuse mesangiocapillary glomerulonephritis
## 18429 Nephrotic syndrome with dense deposit disease
## 18430 Nephrotic syndrome with diffuse crescentic glomerulonephritis
## 18431 Nephrotic syndrome with other morphologic changes
## 18432 Nephrotic syndrome with unspecified morphologic changes
## 18433 Unspecified nephritic syndrome with minor glomerular abnormality
## 18434 Unspecified nephritic syndrome with focal and segmental glomerular lesions
## 18435 Unspecified nephritic syndrome with diffuse membranous glomerulonephritis
## 18436 Unspecified nephritic syndrome with diffuse mesangial proliferative glomerulonephritis
## 18437 Unspecified nephritic syndrome with diffuse endocapillary proliferative glomerulonephritis
## 18438 Unspecified nephritic syndrome with diffuse mesangiocapillary glomerulonephritis
## 18439 Unspecified nephritic syndrome with dense deposit disease
## 18440 Unspecified nephritic syndrome with diffuse crescentic glomerulonephritis
## 18441 Unspecified nephritic syndrome with other morphologic changes
## 18442 Unspecified nephritic syndrome with unspecified morphologic changes
## 18443 Isolated proteinuria with minor glomerular abnormality
## 18444 Isolated proteinuria with focal and segmental glomerular lesions
## 18445 Isolated proteinuria with diffuse membranous glomerulonephritis
## 18446 Isolated proteinuria with diffuse mesangial proliferative glomerulonephritis
## 18447 Isolated proteinuria with diffuse endocapillary proliferative glomerulonephritis
## 18448 Isolated proteinuria with diffuse mesangiocapillary glomerulonephritis
## 18449 Isolated proteinuria with dense deposit disease
## 18450 Isolated proteinuria with diffuse crescentic glomerulonephritis
## 18451 Isolated proteinuria with other morphologic lesion
## 18452 Isolated proteinuria with unspecified morphologic lesion
## 18453 Hereditary nephropathy, not elsewhere classified with minor glomerular abnormality
## 18454 Hereditary nephropathy, not elsewhere classified with focal and segmental glomerular lesions
## 18455 Hereditary nephropathy, not elsewhere classified with diffuse membranous glomerulonephritis
## 18456 Hereditary nephropathy, not elsewhere classified with diffuse mesangial proliferative glomerulonephritis
## 18457 Hereditary nephropathy, not elsewhere classified with diffuse endocapillary proliferative glomerulonephritis
## 18458 Hereditary nephropathy, not elsewhere classified with diffuse mesangiocapillary glomerulonephritis
## 18459 Hereditary nephropathy, not elsewhere classified with dense deposit disease
## 18460 Hereditary nephropathy, not elsewhere classified with diffuse crescentic glomerulonephritis
## 18461 Hereditary nephropathy, not elsewhere classified with other morphologic lesions
## 18462 Hereditary nephropathy, not elsewhere classified with unspecified morphologic lesions
## 18463 Glomerular disorders in diseases classified elsewhere
## 18464 Acute pyelonephritis
## 18465 Nonobstructive reflux-associated chronic pyelonephritis
## 18466 Chronic obstructive pyelonephritis
## 18467 Other chronic tubulo-interstitial nephritis
## 18468 Chronic tubulo-interstitial nephritis, unspecified
## 18469 Tubulo-interstitial nephritis, not specified as acute or chronic
## 18470 Hydronephrosis with ureteropelvic junction obstruction
## 18471 Hydronephrosis with ureteral stricture, not elsewhere classified
## 18472 Hydronephrosis with renal and ureteral calculous obstruction
## 18473 Unspecified hydronephrosis
## 18474 Other hydronephrosis
## 18475 Hydroureter
## 18476 Crossing vessel and stricture of ureter without hydronephrosis
## 18477 Pyonephrosis
## 18478 Vesicoureteral-reflux, unspecified
## 18479 Vesicoureteral-reflux without reflux nephropathy
## 18480 Vesicoureteral-reflux with reflux nephropathy without hydroureter, unilateral
## 18481 Vesicoureteral-reflux with reflux nephropathy without hydroureter, bilateral
## 18482 Vesicoureteral-reflux with reflux nephropathy without hydroureter, unspecified
## 18483 Vesicoureteral-reflux with reflux nephropathy with hydroureter, unilateral
## 18484 Vesicoureteral-reflux with reflux nephropathy with hydroureter, bilateral
## 18485 Vesicoureteral-reflux with reflux nephropathy with hydroureter, unspecified
## 18486 Other obstructive and reflux uropathy
## 18487 Obstructive and reflux uropathy, unspecified
## 18488 Analgesic nephropathy
## 18489 Nephropathy induced by other drugs, medicaments and biological substances
## 18490 Nephropathy induced by unspecified drug, medicament or biological substance
## 18491 Nephropathy induced by heavy metals
## 18492 Toxic nephropathy, not elsewhere classified
## 18493 Balkan nephropathy
## 18494 Renal and perinephric abscess
## 18495 Other specified renal tubulo-interstitial diseases
## 18496 Renal tubulo-interstitial disease, unspecified
## 18497 Renal tubulo-interstitial disorders in diseases classified elsewhere
## 18498 Acute kidney failure with tubular necrosis
## 18499 Acute kidney failure with acute cortical necrosis
## 18500 Acute kidney failure with medullary necrosis
## 18501 Other acute kidney failure
## 18502 Acute kidney failure, unspecified
## 18503 Chronic kidney disease, stage 1
## 18504 Chronic kidney disease, stage 2 (mild)
## 18505 Chronic kidney disease, stage 3 (moderate)
## 18506 Chronic kidney disease, stage 4 (severe)
## 18507 Chronic kidney disease, stage 5
## 18508 End stage renal disease
## 18509 Chronic kidney disease, unspecified
## 18510 Unspecified kidney failure
## 18511 Calculus of kidney
## 18512 Calculus of ureter
## 18513 Calculus of kidney with calculus of ureter
## 18514 Urinary calculus, unspecified
## 18515 Calculus in bladder
## 18516 Calculus in urethra
## 18517 Other lower urinary tract calculus
## 18518 Calculus of lower urinary tract, unspecified
## 18519 Calculus of urinary tract in diseases classified elsewhere
## 18520 Unspecified renal colic
## 18521 Renal osteodystrophy
## 18522 Nephrogenic diabetes insipidus
## 18523 Secondary hyperparathyroidism of renal origin
## 18524 Other disorders resulting from impaired renal tubular function
## 18525 Disorder resulting from impaired renal tubular function, unspecified
## 18526 Atrophy of kidney (terminal)
## 18527 Page kidney
## 18528 Renal sclerosis, unspecified
## 18529 Small kidney, unilateral
## 18530 Small kidney, bilateral
## 18531 Small kidney, unspecified
## 18532 Ischemia and infarction of kidney
## 18533 Cyst of kidney, acquired
## 18534 Hypertrophy of kidney
## 18535 Megaloureter
## 18536 Nephroptosis
## 18537 Pyelitis cystica
## 18538 Pyeloureteritis cystica
## 18539 Ureteritis cystica
## 18540 Other specified disorders of kidney and ureter
## 18541 Disorder of kidney and ureter, unspecified
## 18542 Other disorders of kidney and ureter in diseases classified elsewhere
## 18543 Acute cystitis without hematuria
## 18544 Acute cystitis with hematuria
## 18545 Interstitial cystitis (chronic) without hematuria
## 18546 Interstitial cystitis (chronic) with hematuria
## 18547 Other chronic cystitis without hematuria
## 18548 Other chronic cystitis with hematuria
## 18549 Trigonitis without hematuria
## 18550 Trigonitis with hematuria
## 18551 Irradiation cystitis without hematuria
## 18552 Irradiation cystitis with hematuria
## 18553 Other cystitis without hematuria
## 18554 Other cystitis with hematuria
## 18555 Cystitis, unspecified without hematuria
## 18556 Cystitis, unspecified with hematuria
## 18557 Uninhibited neuropathic bladder, not elsewhere classified
## 18558 Reflex neuropathic bladder, not elsewhere classified
## 18559 Flaccid neuropathic bladder, not elsewhere classified
## 18560 Other neuromuscular dysfunction of bladder
## 18561 Neuromuscular dysfunction of bladder, unspecified
## 18562 Bladder-neck obstruction
## 18563 Vesicointestinal fistula
## 18564 Vesical fistula, not elsewhere classified
## 18565 Diverticulum of bladder
## 18566 Overactive bladder
## 18567 Other specified disorders of bladder
## 18568 Bladder disorder, unspecified
## 18569 Bladder disorders in diseases classified elsewhere
## 18570 Urethral abscess
## 18571 Nonspecific urethritis
## 18572 Other urethritis
## 18573 Urethral syndrome, unspecified
## 18574 Post-traumatic urethral stricture, male, meatal
## 18575 Post-traumatic bulbous urethral stricture
## 18576 Post-traumatic membranous urethral stricture
## 18577 Post-traumatic anterior urethral stricture
## 18578 Post-traumatic urethral stricture, male, unspecified
## 18579 Post-traumatic urethral stricture, male, overlapping sites
## 18580 Urethral stricture due to childbirth
## 18581 Other post-traumatic urethral stricture, female
## 18582 Postinfective urethral stricture, not elsewhere classified, male, meatal
## 18583 Postinfective bulbous urethral stricture, not elsewhere classified, male
## 18584 Postinfective membranous urethral stricture, not elsewhere classified, male
## 18585 Postinfective anterior urethral stricture, not elsewhere classified, male
## 18586 Postinfective urethral stricture, not elsewhere classified, male, overlapping sites
## 18587 Postinfective urethral stricture, not elsewhere classified, male, unspecified
## 18588 Postinfective urethral stricture, not elsewhere classified, female
## 18589 Other urethral stricture, male, meatal
## 18590 Other urethral bulbous stricture, male
## 18591 Other membranous urethral stricture, male
## 18592 Other anterior urethral stricture, male
## 18593 Other urethral stricture, male, overlapping sites
## 18594 Other urethral stricture, male, unspecified site
## 18595 Other urethral stricture, female
## 18596 Unspecified urethral stricture, male, meatal
## 18597 Unspecified bulbous urethral stricture, male
## 18598 Unspecified membranous urethral stricture, male
## 18599 Unspecified anterior urethral stricture, male
## 18600 Unspecified urethral stricture, male, overlapping sites
## 18601 Unspecified urethral stricture, male, unspecified site
## 18602 Unspecified urethral stricture, female
## 18603 Urethral fistula
## 18604 Urethral diverticulum
## 18605 Urethral caruncle
## 18606 Hypermobility of urethra
## 18607 Intrinsic sphincter deficiency (ISD)
## 18608 Combined hypermobility of urethra and intrinsic sphincter deficiency
## 18609 Muscular disorders of urethra
## 18610 Urethral false passage
## 18611 Other specified disorders of urethra
## 18612 Urethral disorder, unspecified
## 18613 Urethral disorders in diseases classified elsewhere
## 18614 Urinary tract infection, site not specified
## 18615 Stress incontinence (female) (male)
## 18616 Urge incontinence
## 18617 Incontinence without sensory awareness
## 18618 Post-void dribbling
## 18619 Nocturnal enuresis
## 18620 Continuous leakage
## 18621 Mixed incontinence
## 18622 Overflow incontinence
## 18623 Coital incontinence
## 18624 Postural (urinary) incontinence
## 18625 Other specified urinary incontinence
## 18626 Other specified disorders of urinary system
## 18627 Disorder of urinary system, unspecified
## 18628 Benign prostatic hyperplasia without lower urinary tract symptoms
## 18629 Benign prostatic hyperplasia with lower urinary tract symptoms
## 18630 Nodular prostate without lower urinary tract symptoms
## 18631 Nodular prostate with lower urinary tract symptoms
## 18632 Acute prostatitis
## 18633 Chronic prostatitis
## 18634 Abscess of prostate
## 18635 Prostatocystitis
## 18636 Granulomatous prostatitis
## 18637 Other inflammatory diseases of prostate
## 18638 Inflammatory disease of prostate, unspecified
## 18639 Calculus of prostate
## 18640 Congestion and hemorrhage of prostate
## 18641 Unspecified dysplasia of prostate
## 18642 Prostatic intraepithelial neoplasia
## 18643 Atypical small acinar proliferation of prostate
## 18644 Other dysplasia of prostate
## 18645 Prostatodynia syndrome
## 18646 Prostatosis syndrome
## 18647 Cyst of prostate
## 18648 Other specified disorders of prostate
## 18649 Disorder of prostate, unspecified
## 18650 Encysted hydrocele
## 18651 Infected hydrocele
## 18652 Other hydrocele
## 18653 Hydrocele, unspecified
## 18654 Spermatocele of epididymis, unspecified
## 18655 Spermatocele of epididymis, single
## 18656 Spermatocele of epididymis, multiple
## 18657 Torsion of testis, unspecified
## 18658 Extravaginal torsion of spermatic cord
## 18659 Intravaginal torsion of spermatic cord
## 18660 Torsion of appendix testis
## 18661 Torsion of appendix epididymis
## 18662 Cyst of tunica albuginea testis
## 18663 Benign cyst of testis
## 18664 Other noninflammatory disorders of the testis
## 18665 Epididymitis
## 18666 Orchitis
## 18667 Epididymo-orchitis
## 18668 Abscess of epididymis or testis
## 18669 Organic azoospermia
## 18670 Azoospermia due to drug therapy
## 18671 Azoospermia due to infection
## 18672 Azoospermia due to obstruction of efferent ducts
## 18673 Azoospermia due to radiation
## 18674 Azoospermia due to systemic disease
## 18675 Azoospermia due to other extratesticular causes
## 18676 Organic oligospermia
## 18677 Oligospermia due to drug therapy
## 18678 Oligospermia due to infection
## 18679 Oligospermia due to obstruction of efferent ducts
## 18680 Oligospermia due to radiation
## 18681 Oligospermia due to systemic disease
## 18682 Oligospermia due to other extratesticular causes
## 18683 Other male infertility
## 18684 Male infertility, unspecified
## 18685 Adherent prepuce, newborn
## 18686 Phimosis
## 18687 Paraphimosis
## 18688 Deficient foreskin
## 18689 Benign cyst of prepuce
## 18690 Adhesions of prepuce and glans penis
## 18691 Balanoposthitis
## 18692 Other inflammatory diseases of prepuce
## 18693 Other disorders of prepuce
## 18694 Leukoplakia of penis
## 18695 Balanitis
## 18696 Abscess of corpus cavernosum and penis
## 18697 Cellulitis of corpus cavernosum and penis
## 18698 Other inflammatory disorders of penis
## 18699 Priapism, unspecified
## 18700 Priapism due to trauma
## 18701 Priapism due to disease classified elsewhere
## 18702 Priapism, drug-induced
## 18703 Other priapism
## 18704 Ulcer of penis
## 18705 Induration penis plastica
## 18706 Thrombosis of superficial vein of penis
## 18707 Acquired torsion of penis
## 18708 Acquired buried penis
## 18709 Other specified disorders of penis
## 18710 Disorder of penis, unspecified
## 18711 Inflammatory disorders of seminal vesicle
## 18712 Inflammatory disorders of spermatic cord, tunica vaginalis and vas deferens
## 18713 Inflammatory disorders of scrotum
## 18714 Fournier gangrene
## 18715 Inflammatory disorders of other specified male genital organs
## 18716 Inflammatory disorder of unspecified male genital organ
## 18717 Atrophy of testis
## 18718 Vascular disorders of male genital organs
## 18719 Cyst of epididymis
## 18720 Right testicular pain
## 18721 Left testicular pain
## 18722 Testicular pain, unspecified
## 18723 Scrotal pain
## 18724 Other specified disorders of the male genital organs
## 18725 Disorder of male genital organs, unspecified
## 18726 Disorders of male genital organs in diseases classified elsewhere
## 18727 Erectile dysfunction due to arterial insufficiency
## 18728 Corporo-venous occlusive erectile dysfunction
## 18729 Combined arterial insufficiency and corporo-venous occlusive erectile dysfunction
## 18730 Erectile dysfunction due to diseases classified elsewhere
## 18731 Drug-induced erectile dysfunction
## 18732 Erectile dysfunction following radical prostatectomy
## 18733 Erectile dysfunction following radical cystectomy
## 18734 Erectile dysfunction following urethral surgery
## 18735 Erectile dysfunction following simple prostatectomy
## 18736 Erectile dysfunction following radiation therapy
## 18737 Erectile dysfunction following interstitial seed therapy
## 18738 Erectile dysfunction following prostate ablative therapy
## 18739 Other and unspecified postprocedural erectile dysfunction
## 18740 Other male erectile dysfunction
## 18741 Male erectile dysfunction, unspecified
## 18742 Retarded ejaculation
## 18743 Painful ejaculation
## 18744 Anejaculatory orgasm
## 18745 Retrograde ejaculation
## 18746 Other ejaculatory dysfunction
## 18747 Other male sexual dysfunction
## 18748 Unspecified male sexual dysfunction
## 18749 Solitary cyst of right breast
## 18750 Solitary cyst of left breast
## 18751 Solitary cyst of unspecified breast
## 18752 Diffuse cystic mastopathy of right breast
## 18753 Diffuse cystic mastopathy of left breast
## 18754 Diffuse cystic mastopathy of unspecified breast
## 18755 Fibroadenosis of right breast
## 18756 Fibroadenosis of left breast
## 18757 Fibroadenosis of unspecified breast
## 18758 Fibrosclerosis of right breast
## 18759 Fibrosclerosis of left breast
## 18760 Fibrosclerosis of unspecified breast
## 18761 Mammary duct ectasia of right breast
## 18762 Mammary duct ectasia of left breast
## 18763 Mammary duct ectasia of unspecified breast
## 18764 Other benign mammary dysplasias of right breast
## 18765 Other benign mammary dysplasias of left breast
## 18766 Other benign mammary dysplasias of unspecified breast
## 18767 Unspecified benign mammary dysplasia of right breast
## 18768 Unspecified benign mammary dysplasia of left breast
## 18769 Unspecified benign mammary dysplasia of unspecified breast
## 18770 Mastitis without abscess
## 18771 Abscess of the breast and nipple
## 18772 Hypertrophy of breast
## 18773 Unspecified lump in unspecified breast
## 18774 Unspecified lump in the right breast, unspecified quadrant
## 18775 Unspecified lump in the right breast, upper outer quadrant
## 18776 Unspecified lump in the right breast, upper inner quadrant
## 18777 Unspecified lump in the right breast, lower outer quadrant
## 18778 Unspecified lump in the right breast, lower inner quadrant
## 18779 Unspecified lump in the right breast, overlapping quadrants
## 18780 Unspecified lump in the left breast, unspecified quadrant
## 18781 Unspecified lump in the left breast, upper outer quadrant
## 18782 Unspecified lump in the left breast, upper inner quadrant
## 18783 Unspecified lump in the left breast, lower outer quadrant
## 18784 Unspecified lump in the left breast, lower inner quadrant
## 18785 Unspecified lump in the left breast, overlapping quadrants
## 18786 Unspecified lump in axillary tail of the right breast
## 18787 Unspecified lump in axillary tail of the left breast
## 18788 Unspecified lump in right breast, subareolar
## 18789 Unspecified lump in left breast, subareolar
## 18790 Fissure and fistula of nipple
## 18791 Fat necrosis of breast
## 18792 Atrophy of breast
## 18793 Galactorrhea not associated with childbirth
## 18794 Mastodynia
## 18795 Induration of breast
## 18796 Nipple discharge
## 18797 Retraction of nipple
## 18798 Other signs and symptoms in breast
## 18799 Ptosis of breast
## 18800 Hypoplasia of breast
## 18801 Other specified disorders of breast
## 18802 Disorder of breast, unspecified
## 18803 Deformity of reconstructed breast
## 18804 Disproportion of reconstructed breast
## 18805 Acute salpingitis
## 18806 Acute oophoritis
## 18807 Acute salpingitis and oophoritis
## 18808 Chronic salpingitis
## 18809 Chronic oophoritis
## 18810 Chronic salpingitis and oophoritis
## 18811 Salpingitis, unspecified
## 18812 Oophoritis, unspecified
## 18813 Salpingitis and oophoritis, unspecified
## 18814 Acute inflammatory disease of uterus
## 18815 Chronic inflammatory disease of uterus
## 18816 Inflammatory disease of uterus, unspecified
## 18817 Inflammatory disease of cervix uteri
## 18818 Acute parametritis and pelvic cellulitis
## 18819 Chronic parametritis and pelvic cellulitis
## 18820 Unspecified parametritis and pelvic cellulitis
## 18821 Female acute pelvic peritonitis
## 18822 Female chronic pelvic peritonitis
## 18823 Female pelvic peritonitis, unspecified
## 18824 Female pelvic peritoneal adhesions (postinfective)
## 18825 Other specified female pelvic inflammatory diseases
## 18826 Female pelvic inflammatory disease, unspecified
## 18827 Female pelvic inflammatory disorders in diseases classified elsewhere
## 18828 Cyst of Bartholin's gland
## 18829 Abscess of Bartholin's gland
## 18830 Other diseases of Bartholin's gland
## 18831 Disease of Bartholin's gland, unspecified
## 18832 Acute vaginitis
## 18833 Subacute and chronic vaginitis
## 18834 Acute vulvitis
## 18835 Subacute and chronic vulvitis
## 18836 Abscess of vulva
## 18837 Ulceration of vagina
## 18838 Ulceration of vulva
## 18839 Mucositis (ulcerative) of vagina and vulva
## 18840 Other specified inflammation of vagina and vulva
## 18841 Ulceration of vulva in diseases classified elsewhere
## 18842 Vaginitis, vulvitis and vulvovaginitis in diseases classified elsewhere
## 18843 Endometriosis of uterus
## 18844 Endometriosis of ovary
## 18845 Endometriosis of fallopian tube
## 18846 Endometriosis of pelvic peritoneum
## 18847 Endometriosis of rectovaginal septum and vagina
## 18848 Endometriosis of intestine
## 18849 Endometriosis in cutaneous scar
## 18850 Other endometriosis
## 18851 Endometriosis, unspecified
## 18852 Urethrocele
## 18853 Cystocele, unspecified
## 18854 Cystocele, midline
## 18855 Cystocele, lateral
## 18856 Incomplete uterovaginal prolapse
## 18857 Complete uterovaginal prolapse
## 18858 Uterovaginal prolapse, unspecified
## 18859 Vaginal enterocele
## 18860 Rectocele
## 18861 Perineocele
## 18862 Incompetence or weakening of pubocervical tissue
## 18863 Incompetence or weakening of rectovaginal tissue
## 18864 Pelvic muscle wasting
## 18865 Cervical stump prolapse
## 18866 Other female genital prolapse
## 18867 Female genital prolapse, unspecified
## 18868 Vesicovaginal fistula
## 18869 Other female urinary-genital tract fistulae
## 18870 Fistula of vagina to small intestine
## 18871 Fistula of vagina to large intestine
## 18872 Other female intestinal-genital tract fistulae
## 18873 Female genital tract-skin fistulae
## 18874 Other female genital tract fistulae
## 18875 Female genital tract fistula, unspecified
## 18876 Follicular cyst of ovary, unspecified side
## 18877 Follicular cyst of right ovary
## 18878 Follicular cyst of left ovary
## 18879 Corpus luteum cyst of ovary, unspecified side
## 18880 Corpus luteum cyst of right ovary
## 18881 Corpus luteum cyst of left ovary
## 18882 Unspecified ovarian cyst, right side
## 18883 Unspecified ovarian cyst, left side
## 18884 Unspecified ovarian cyst, unspecified side
## 18885 Other ovarian cyst, right side
## 18886 Other ovarian cyst, left side
## 18887 Other ovarian cyst, unspecified side
## 18888 Acquired atrophy of right ovary
## 18889 Acquired atrophy of left ovary
## 18890 Acquired atrophy of ovary, unspecified side
## 18891 Acquired atrophy of right fallopian tube
## 18892 Acquired atrophy of left fallopian tube
## 18893 Acquired atrophy of fallopian tube, unspecified side
## 18894 Acquired atrophy of right ovary and fallopian tube
## 18895 Acquired atrophy of left ovary and fallopian tube
## 18896 Acquired atrophy of ovary and fallopian tube, unspecified side
## 18897 Prolapse and hernia of ovary and fallopian tube, unspecified side
## 18898 Prolapse and hernia of right ovary and fallopian tube
## 18899 Prolapse and hernia of left ovary and fallopian tube
## 18900 Torsion of right ovary and ovarian pedicle
## 18901 Torsion of left ovary and ovarian pedicle
## 18902 Torsion of ovary and ovarian pedicle, unspecified side
## 18903 Torsion of right fallopian tube
## 18904 Torsion of left fallopian tube
## 18905 Torsion of fallopian tube, unspecified side
## 18906 Torsion of ovary, ovarian pedicle and fallopian tube
## 18907 Hematosalpinx
## 18908 Hematoma of broad ligament
## 18909 Other noninflammatory disorders of ovary, fallopian tube and broad ligament
## 18910 Noninflammatory disorder of ovary, fallopian tube and broad ligament, unspecified
## 18911 Polyp of corpus uteri
## 18912 Polyp of cervix uteri
## 18913 Polyp of vagina
## 18914 Polyp of vulva
## 18915 Polyp of other parts of female genital tract
## 18916 Polyp of female genital tract, unspecified
## 18917 Endometrial hyperplasia, unspecified
## 18918 Benign endometrial hyperplasia
## 18919 Endometrial intraepithelial neoplasia [EIN]
## 18920 Hypertrophy of uterus
## 18921 Subinvolution of uterus
## 18922 Malposition of uterus
## 18923 Inversion of uterus
## 18924 Intrauterine synechiae
## 18925 Hematometra
## 18926 Other specified noninflammatory disorders of uterus
## 18927 Noninflammatory disorder of uterus, unspecified
## 18928 Erosion and ectropion of cervix uteri
## 18929 Mild cervical dysplasia
## 18930 Moderate cervical dysplasia
## 18931 Dysplasia of cervix uteri, unspecified
## 18932 Leukoplakia of cervix uteri
## 18933 Old laceration of cervix uteri
## 18934 Stricture and stenosis of cervix uteri
## 18935 Incompetence of cervix uteri
## 18936 Hypertrophic elongation of cervix uteri
## 18937 Other specified noninflammatory disorders of cervix uteri
## 18938 Noninflammatory disorder of cervix uteri, unspecified
## 18939 Mild vaginal dysplasia
## 18940 Moderate vaginal dysplasia
## 18941 Dysplasia of vagina, unspecified
## 18942 Leukoplakia of vagina
## 18943 Stricture and atresia of vagina
## 18944 Tight hymenal ring
## 18945 Hematocolpos
## 18946 Other specified noninflammatory disorders of vagina
## 18947 Noninflammatory disorder of vagina, unspecified
## 18948 Mild vulvar dysplasia
## 18949 Moderate vulvar dysplasia
## 18950 Dysplasia of vulva, unspecified
## 18951 Leukoplakia of vulva
## 18952 Atrophy of vulva
## 18953 Unspecified hypertrophy of vulva
## 18954 Childhood asymmetric labium majus enlargement
## 18955 Other specified hypertrophy of vulva
## 18956 Vulvar cyst
## 18957 Female genital mutilation status, unspecified
## 18958 Female genital mutilation Type I status
## 18959 Female genital mutilation Type II status
## 18960 Female genital mutilation Type III status
## 18961 Other female genital mutilation status
## 18962 Other specified noninflammatory disorders of vulva and perineum
## 18963 Noninflammatory disorder of vulva and perineum, unspecified
## 18964 Primary amenorrhea
## 18965 Secondary amenorrhea
## 18966 Amenorrhea, unspecified
## 18967 Primary oligomenorrhea
## 18968 Secondary oligomenorrhea
## 18969 Oligomenorrhea, unspecified
## 18970 Excessive and frequent menstruation with regular cycle
## 18971 Excessive and frequent menstruation with irregular cycle
## 18972 Excessive menstruation at puberty
## 18973 Ovulation bleeding
## 18974 Excessive bleeding in the premenopausal period
## 18975 Other specified irregular menstruation
## 18976 Irregular menstruation, unspecified
## 18977 Postcoital and contact bleeding
## 18978 Pre-pubertal vaginal bleeding
## 18979 Other specified abnormal uterine and vaginal bleeding
## 18980 Abnormal uterine and vaginal bleeding, unspecified
## 18981 Mittelschmerz
## 18982 Unspecified dyspareunia
## 18983 Superficial (introital) dyspareunia
## 18984 Deep dyspareunia
## 18985 Other specified dyspareunia
## 18986 Vaginismus
## 18987 Premenstrual tension syndrome
## 18988 Primary dysmenorrhea
## 18989 Secondary dysmenorrhea
## 18990 Dysmenorrhea, unspecified
## 18991 Vulvar vestibulitis
## 18992 Other vulvodynia
## 18993 Vulvodynia, unspecified
## 18994 Other specified conditions associated with female genital organs and menstrual cycle
## 18995 Unspecified condition associated with female genital organs and menstrual cycle
## 18996 Postmenopausal bleeding
## 18997 Menopausal and female climacteric states
## 18998 Postmenopausal atrophic vaginitis
## 18999 Other specified menopausal and perimenopausal disorders
## 19000 Unspecified menopausal and perimenopausal disorder
## 19001 Recurrent pregnancy loss
## 19002 Female infertility associated with anovulation
## 19003 Female infertility of tubal origin
## 19004 Female infertility of uterine origin
## 19005 Female infertility of other origin
## 19006 Female infertility, unspecified
## 19007 Infection associated with artificial insemination
## 19008 Hyperstimulation of ovaries
## 19009 Complications of attempted introduction of fertilized ovum following in vitro fertilization
## 19010 Complications of attempted introduction of embryo in embryo transfer
## 19011 Other complications associated with artificial fertilization
## 19012 Complication associated with artificial fertilization, unspecified
## 19013 Postprocedural (acute) (chronic) kidney failure
## 19014 Postprocedural urethral stricture, male, meatal
## 19015 Postprocedural bulbous urethral stricture, male
## 19016 Postprocedural membranous urethral stricture, male
## 19017 Postprocedural anterior bulbous urethral stricture, male
## 19018 Postprocedural urethral stricture, male, unspecified
## 19019 Postprocedural fossa navicularis urethral stricture
## 19020 Postprocedural urethral stricture, male, overlapping sites
## 19021 Postprocedural urethral stricture, female
## 19022 Postprocedural adhesions of vagina
## 19023 Prolapse of vaginal vault after hysterectomy
## 19024 Postprocedural pelvic peritoneal adhesions
## 19025 Cystostomy hemorrhage
## 19026 Cystostomy infection
## 19027 Cystostomy malfunction
## 19028 Other cystostomy complication
## 19029 Hemorrhage of incontinent external stoma of urinary tract
## 19030 Infection of incontinent external stoma of urinary tract
## 19031 Malfunction of incontinent external stoma of urinary tract
## 19032 Herniation of incontinent stoma of urinary tract
## 19033 Stenosis of incontinent stoma of urinary tract
## 19034 Other complication of incontinent external stoma of urinary tract
## 19035 Hemorrhage of continent stoma of urinary tract
## 19036 Infection of continent stoma of urinary tract
## 19037 Malfunction of continent stoma of urinary tract
## 19038 Herniation of continent stoma of urinary tract
## 19039 Stenosis of continent stoma of urinary tract
## 19040 Other complication of continent stoma of urinary tract
## 19041 Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating a genitourinary system procedure
## 19042 Intraoperative hemorrhage and hematoma of a genitourinary system organ or structure complicating other procedure
## 19043 Accidental puncture and laceration of a genitourinary system organ or structure during a genitourinary system procedure
## 19044 Accidental puncture and laceration of a genitourinary system organ or structure during other procedure
## 19045 Other intraoperative complications of genitourinary system
## 19046 Postprocedural hemorrhage of a genitourinary system organ or structure following a genitourinary system procedure
## 19047 Postprocedural hemorrhage of a genitourinary system organ or structure following other procedure
## 19048 Residual ovary syndrome
## 19049 Postprocedural hematoma of a genitourinary system organ or structure following a genitourinary system procedure
## 19050 Postprocedural hematoma of a genitourinary system organ or structure following other procedure
## 19051 Postprocedural seroma of a genitourinary system organ or structure following a genitourinary system procedure
## 19052 Postprocedural seroma of a genitourinary system organ or structure following other procedure
## 19053 Post endometrial ablation syndrome
## 19054 Other postprocedural complications and disorders of genitourinary system
## 19055 Abdominal pregnancy without intrauterine pregnancy
## 19056 Abdominal pregnancy with intrauterine pregnancy
## 19057 Right tubal pregnancy without intrauterine pregnancy
## 19058 Left tubal pregnancy without intrauterine pregnancy
## 19059 Unspecified tubal pregnancy without intrauterine pregnancy
## 19060 Right tubal pregnancy with intrauterine pregnancy
## 19061 Left tubal pregnancy with intrauterine pregnancy
## 19062 Unspecified tubal pregnancy with intrauterine pregnancy
## 19063 Right ovarian pregnancy without intrauterine pregnancy
## 19064 Left ovarian pregnancy without intrauterine pregnancy
## 19065 Unspecified ovarian pregnancy without intrauterine pregnancy
## 19066 Right ovarian pregnancy with intrauterine pregnancy
## 19067 Left ovarian pregnancy with intrauterine pregnancy
## 19068 Unspecified ovarian pregnancy with intrauterine pregnancy
## 19069 Other ectopic pregnancy without intrauterine pregnancy
## 19070 Other ectopic pregnancy with intrauterine pregnancy
## 19071 Unspecified ectopic pregnancy without intrauterine pregnancy
## 19072 Unspecified ectopic pregnancy with intrauterine pregnancy
## 19073 Classical hydatidiform mole
## 19074 Incomplete and partial hydatidiform mole
## 19075 Hydatidiform mole, unspecified
## 19076 Blighted ovum and nonhydatidiform mole
## 19077 Missed abortion
## 19078 Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy
## 19079 Other abnormal products of conception
## 19080 Abnormal product of conception, unspecified
## 19081 Genital tract and pelvic infection following incomplete spontaneous abortion
## 19082 Delayed or excessive hemorrhage following incomplete spontaneous abortion
## 19083 Embolism following incomplete spontaneous abortion
## 19084 Unspecified complication following incomplete spontaneous abortion
## 19085 Shock following incomplete spontaneous abortion
## 19086 Renal failure following incomplete spontaneous abortion
## 19087 Metabolic disorder following incomplete spontaneous abortion
## 19088 Damage to pelvic organs following incomplete spontaneous abortion
## 19089 Other venous complications following incomplete spontaneous abortion
## 19090 Cardiac arrest following incomplete spontaneous abortion
## 19091 Sepsis following incomplete spontaneous abortion
## 19092 Urinary tract infection following incomplete spontaneous abortion
## 19093 Incomplete spontaneous abortion with other complications
## 19094 Incomplete spontaneous abortion without complication
## 19095 Genital tract and pelvic infection following complete or unspecified spontaneous abortion
## 19096 Delayed or excessive hemorrhage following complete or unspecified spontaneous abortion
## 19097 Embolism following complete or unspecified spontaneous abortion
## 19098 Unspecified complication following complete or unspecified spontaneous abortion
## 19099 Shock following complete or unspecified spontaneous abortion
## 19100 Renal failure following complete or unspecified spontaneous abortion
## 19101 Metabolic disorder following complete or unspecified spontaneous abortion
## 19102 Damage to pelvic organs following complete or unspecified spontaneous abortion
## 19103 Other venous complications following complete or unspecified spontaneous abortion
## 19104 Cardiac arrest following complete or unspecified spontaneous abortion
## 19105 Sepsis following complete or unspecified spontaneous abortion
## 19106 Urinary tract infection following complete or unspecified spontaneous abortion
## 19107 Complete or unspecified spontaneous abortion with other complications
## 19108 Complete or unspecified spontaneous abortion without complication
## 19109 Genital tract and pelvic infection following (induced) termination of pregnancy
## 19110 Delayed or excessive hemorrhage following (induced) termination of pregnancy
## 19111 Embolism following (induced) termination of pregnancy
## 19112 (Induced) termination of pregnancy with unspecified complications
## 19113 Shock following (induced) termination of pregnancy
## 19114 Renal failure following (induced) termination of pregnancy
## 19115 Metabolic disorder following (induced) termination of pregnancy
## 19116 Damage to pelvic organs following (induced) termination of pregnancy
## 19117 Other venous complications following (induced) termination of pregnancy
## 19118 Cardiac arrest following (induced) termination of pregnancy
## 19119 Sepsis following (induced) termination of pregnancy
## 19120 Urinary tract infection following (induced) termination of pregnancy
## 19121 (Induced) termination of pregnancy with other complications
## 19122 Genital tract and pelvic infection following failed attempted termination of pregnancy
## 19123 Delayed or excessive hemorrhage following failed attempted termination of pregnancy
## 19124 Embolism following failed attempted termination of pregnancy
## 19125 Failed attempted termination of pregnancy with unspecified complications
## 19126 Shock following failed attempted termination of pregnancy
## 19127 Renal failure following failed attempted termination of pregnancy
## 19128 Metabolic disorder following failed attempted termination of pregnancy
## 19129 Damage to pelvic organs following failed attempted termination of pregnancy
## 19130 Other venous complications following failed attempted termination of pregnancy
## 19131 Cardiac arrest following failed attempted termination of pregnancy
## 19132 Sepsis following failed attempted termination of pregnancy
## 19133 Urinary tract infection following failed attempted termination of pregnancy
## 19134 Failed attempted termination of pregnancy with other complications
## 19135 Failed attempted termination of pregnancy without complication
## 19136 Genital tract and pelvic infection following ectopic and molar pregnancy
## 19137 Delayed or excessive hemorrhage following ectopic and molar pregnancy
## 19138 Embolism following ectopic and molar pregnancy
## 19139 Shock following ectopic and molar pregnancy
## 19140 Renal failure following ectopic and molar pregnancy
## 19141 Metabolic disorders following an ectopic and molar pregnancy
## 19142 Damage to pelvic organs and tissues following an ectopic and molar pregnancy
## 19143 Other venous complications following an ectopic and molar pregnancy
## 19144 Cardiac arrest following an ectopic and molar pregnancy
## 19145 Sepsis following ectopic and molar pregnancy
## 19146 Urinary tract infection following an ectopic and molar pregnancy
## 19147 Other complications following an ectopic and molar pregnancy
## 19148 Unspecified complication following an ectopic and molar pregnancy
## 19149 Supervision of pregnancy with history of infertility, unspecified trimester
## 19150 Supervision of pregnancy with history of infertility, first trimester
## 19151 Supervision of pregnancy with history of infertility, second trimester
## 19152 Supervision of pregnancy with history of infertility, third trimester
## 19153 Supervision of pregnancy with history of ectopic pregnancy, unspecified trimester
## 19154 Supervision of pregnancy with history of ectopic pregnancy, first trimester
## 19155 Supervision of pregnancy with history of ectopic pregnancy, second trimester
## 19156 Supervision of pregnancy with history of ectopic pregnancy, third trimester
## 19157 Supervision of pregnancy with history of molar pregnancy, unspecified trimester
## 19158 Supervision of pregnancy with history of molar pregnancy, first trimester
## 19159 Supervision of pregnancy with history of molar pregnancy, second trimester
## 19160 Supervision of pregnancy with history of molar pregnancy, third trimester
## 19161 Supervision of pregnancy with history of pre-term labor, first trimester
## 19162 Supervision of pregnancy with history of pre-term labor, second trimester
## 19163 Supervision of pregnancy with history of pre-term labor, third trimester
## 19164 Supervision of pregnancy with history of pre-term labor, unspecified trimester
## 19165 Supervision of pregnancy with other poor reproductive or obstetric history, first trimester
## 19166 Supervision of pregnancy with other poor reproductive or obstetric history, second trimester
## 19167 Supervision of pregnancy with other poor reproductive or obstetric history, third trimester
## 19168 Supervision of pregnancy with other poor reproductive or obstetric history, unspecified trimester
## 19169 Supervision of pregnancy with insufficient antenatal care, unspecified trimester
## 19170 Supervision of pregnancy with insufficient antenatal care, first trimester
## 19171 Supervision of pregnancy with insufficient antenatal care, second trimester
## 19172 Supervision of pregnancy with insufficient antenatal care, third trimester
## 19173 Supervision of pregnancy with grand multiparity, unspecified trimester
## 19174 Supervision of pregnancy with grand multiparity, first trimester
## 19175 Supervision of pregnancy with grand multiparity, second trimester
## 19176 Supervision of pregnancy with grand multiparity, third trimester
## 19177 Supervision of elderly primigravida, first trimester
## 19178 Supervision of elderly primigravida, second trimester
## 19179 Supervision of elderly primigravida, third trimester
## 19180 Supervision of elderly primigravida, unspecified trimester
## 19181 Supervision of elderly multigravida, first trimester
## 19182 Supervision of elderly multigravida, second trimester
## 19183 Supervision of elderly multigravida, third trimester
## 19184 Supervision of elderly multigravida, unspecified trimester
## 19185 Supervision of young primigravida, first trimester
## 19186 Supervision of young primigravida, second trimester
## 19187 Supervision of young primigravida, third trimester
## 19188 Supervision of young primigravida, unspecified trimester
## 19189 Supervision of young multigravida, first trimester
## 19190 Supervision of young multigravida, second trimester
## 19191 Supervision of young multigravida, third trimester
## 19192 Supervision of young multigravida, unspecified trimester
## 19193 Supervision of high risk pregnancy due to social problems, unspecified trimester
## 19194 Supervision of high risk pregnancy due to social problems, first trimester
## 19195 Supervision of high risk pregnancy due to social problems, second trimester
## 19196 Supervision of high risk pregnancy due to social problems, third trimester
## 19197 Supervision of pregnancy resulting from assisted reproductive technology, first trimester
## 19198 Supervision of pregnancy resulting from assisted reproductive technology, second trimester
## 19199 Supervision of pregnancy resulting from assisted reproductive technology, third trimester
## 19200 Supervision of pregnancy resulting from assisted reproductive technology, unspecified trimester
## 19201 Supervision of pregnancy with history of in utero procedure during previous pregnancy, first trimester
## 19202 Supervision of pregnancy with history of in utero procedure during previous pregnancy, second trimester
## 19203 Supervision of pregnancy with history of in utero procedure during previous pregnancy, third trimester
## 19204 Supervision of pregnancy with history of in utero procedure during previous pregnancy, unspecified trimester
## 19205 Supervision of other high risk pregnancies, first trimester
## 19206 Supervision of other high risk pregnancies, second trimester
## 19207 Supervision of other high risk pregnancies, third trimester
## 19208 Supervision of other high risk pregnancies, unspecified trimester
## 19209 Supervision of high risk pregnancy, unspecified, unspecified trimester
## 19210 Supervision of high risk pregnancy, unspecified, first trimester
## 19211 Supervision of high risk pregnancy, unspecified, second trimester
## 19212 Supervision of high risk pregnancy, unspecified, third trimester
## 19213 Pre-existing essential hypertension complicating pregnancy, first trimester
## 19214 Pre-existing essential hypertension complicating pregnancy, second trimester
## 19215 Pre-existing essential hypertension complicating pregnancy, third trimester
## 19216 Pre-existing essential hypertension complicating pregnancy, unspecified trimester
## 19217 Pre-existing essential hypertension complicating childbirth
## 19218 Pre-existing essential hypertension complicating the puerperium
## 19219 Pre-existing hypertensive heart disease complicating pregnancy, first trimester
## 19220 Pre-existing hypertensive heart disease complicating pregnancy, second trimester
## 19221 Pre-existing hypertensive heart disease complicating pregnancy, third trimester
## 19222 Pre-existing hypertensive heart disease complicating pregnancy, unspecified trimester
## 19223 Pre-existing hypertensive heart disease complicating childbirth
## 19224 Pre-existing hypertensive heart disease complicating the puerperium
## 19225 Pre-existing hypertensive chronic kidney disease complicating pregnancy, first trimester
## 19226 Pre-existing hypertensive chronic kidney disease complicating pregnancy, second trimester
## 19227 Pre-existing hypertensive chronic kidney disease complicating pregnancy, third trimester
## 19228 Pre-existing hypertensive chronic kidney disease complicating pregnancy, unspecified trimester
## 19229 Pre-existing hypertensive chronic kidney disease complicating childbirth
## 19230 Pre-existing hypertensive chronic kidney disease complicating the puerperium
## 19231 Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, first trimester
## 19232 Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, second trimester
## 19233 Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, third trimester
## 19234 Pre-existing hypertensive heart and chronic kidney disease complicating pregnancy, unspecified trimester
## 19235 Pre-existing hypertensive heart and chronic kidney disease complicating childbirth
## 19236 Pre-existing hypertensive heart and chronic kidney disease complicating the puerperium
## 19237 Pre-existing secondary hypertension complicating pregnancy, first trimester
## 19238 Pre-existing secondary hypertension complicating pregnancy, second trimester
## 19239 Pre-existing secondary hypertension complicating pregnancy, third trimester
## 19240 Pre-existing secondary hypertension complicating pregnancy, unspecified trimester
## 19241 Pre-existing secondary hypertension complicating childbirth
## 19242 Pre-existing secondary hypertension complicating the puerperium
## 19243 Unspecified pre-existing hypertension complicating pregnancy, first trimester
## 19244 Unspecified pre-existing hypertension complicating pregnancy, second trimester
## 19245 Unspecified pre-existing hypertension complicating pregnancy, third trimester
## 19246 Unspecified pre-existing hypertension complicating pregnancy, unspecified trimester
## 19247 Unspecified pre-existing hypertension complicating childbirth
## 19248 Unspecified pre-existing hypertension complicating the puerperium
## 19249 Pre-existing hypertension with pre-eclampsia, first trimester
## 19250 Pre-existing hypertension with pre-eclampsia, second trimester
## 19251 Pre-existing hypertension with pre-eclampsia, third trimester
## 19252 Pre-existing hypertension with pre-eclampsia, complicating childbirth
## 19253 Pre-existing hypertension with pre-eclampsia, complicating the puerperium
## 19254 Pre-existing hypertension with pre-eclampsia, unspecified trimester
## 19255 Gestational edema, unspecified trimester
## 19256 Gestational edema, first trimester
## 19257 Gestational edema, second trimester
## 19258 Gestational edema, third trimester
## 19259 Gestational edema, complicating childbirth
## 19260 Gestational edema, complicating the puerperium
## 19261 Gestational proteinuria, unspecified trimester
## 19262 Gestational proteinuria, first trimester
## 19263 Gestational proteinuria, second trimester
## 19264 Gestational proteinuria, third trimester
## 19265 Gestational proteinuria, complicating childbirth
## 19266 Gestational proteinuria, complicating the puerperium
## 19267 Gestational edema with proteinuria, unspecified trimester
## 19268 Gestational edema with proteinuria, first trimester
## 19269 Gestational edema with proteinuria, second trimester
## 19270 Gestational edema with proteinuria, third trimester
## 19271 Gestational edema with proteinuria, complicating childbirth
## 19272 Gestational edema with proteinuria, complicating the puerperium
## 19273 Gestational [pregnancy-induced] hypertension without significant proteinuria, first trimester
## 19274 Gestational [pregnancy-induced] hypertension without significant proteinuria, second trimester
## 19275 Gestational [pregnancy-induced] hypertension without significant proteinuria, third trimester
## 19276 Gestational [pregnancy-induced] hypertension without significant proteinuria, complicating childbirth
## 19277 Gestational [pregnancy-induced] hypertension without significant proteinuria, complicating the puerperium
## 19278 Gestational [pregnancy-induced] hypertension without significant proteinuria, unspecified trimester
## 19279 Mild to moderate pre-eclampsia, unspecified trimester
## 19280 Mild to moderate pre-eclampsia, second trimester
## 19281 Mild to moderate pre-eclampsia, third trimester
## 19282 Mild to moderate pre-eclampsia, complicating childbirth
## 19283 Mild to moderate pre-eclampsia, complicating the puerperium
## 19284 Severe pre-eclampsia, unspecified trimester
## 19285 Severe pre-eclampsia, second trimester
## 19286 Severe pre-eclampsia, third trimester
## 19287 Severe pre-eclampsia complicating childbirth
## 19288 Severe pre-eclampsia, complicating the puerperium
## 19289 HELLP syndrome (HELLP), unspecified trimester
## 19290 HELLP syndrome (HELLP), second trimester
## 19291 HELLP syndrome (HELLP), third trimester
## 19292 HELLP syndrome, complicating childbirth
## 19293 HELLP syndrome, complicating the puerperium
## 19294 Unspecified pre-eclampsia, unspecified trimester
## 19295 Unspecified pre-eclampsia, second trimester
## 19296 Unspecified pre-eclampsia, third trimester
## 19297 Unspecified pre-eclampsia, complicating childbirth
## 19298 Unspecified pre-eclampsia, complicating the puerperium
## 19299 Eclampsia complicating pregnancy, unspecified trimester
## 19300 Eclampsia complicating pregnancy, second trimester
## 19301 Eclampsia complicating pregnancy, third trimester
## 19302 Eclampsia complicating labor
## 19303 Eclampsia complicating the puerperium
## 19304 Eclampsia, unspecified as to time period
## 19305 Unspecified maternal hypertension, first trimester
## 19306 Unspecified maternal hypertension, second trimester
## 19307 Unspecified maternal hypertension, third trimester
## 19308 Unspecified maternal hypertension, complicating childbirth
## 19309 Unspecified maternal hypertension, complicating the puerperium
## 19310 Unspecified maternal hypertension, unspecified trimester
## 19311 Threatened abortion
## 19312 Other hemorrhage in early pregnancy
## 19313 Hemorrhage in early pregnancy, unspecified
## 19314 Mild hyperemesis gravidarum
## 19315 Hyperemesis gravidarum with metabolic disturbance
## 19316 Late vomiting of pregnancy
## 19317 Other vomiting complicating pregnancy
## 19318 Vomiting of pregnancy, unspecified
## 19319 Varicose veins of lower extremity in pregnancy, unspecified trimester
## 19320 Varicose veins of lower extremity in pregnancy, first trimester
## 19321 Varicose veins of lower extremity in pregnancy, second trimester
## 19322 Varicose veins of lower extremity in pregnancy, third trimester
## 19323 Genital varices in pregnancy, unspecified trimester
## 19324 Genital varices in pregnancy, first trimester
## 19325 Genital varices in pregnancy, second trimester
## 19326 Genital varices in pregnancy, third trimester
## 19327 Superficial thrombophlebitis in pregnancy, unspecified trimester
## 19328 Superficial thrombophlebitis in pregnancy, first trimester
## 19329 Superficial thrombophlebitis in pregnancy, second trimester
## 19330 Superficial thrombophlebitis in pregnancy, third trimester
## 19331 Deep phlebothrombosis in pregnancy, unspecified trimester
## 19332 Deep phlebothrombosis in pregnancy, first trimester
## 19333 Deep phlebothrombosis in pregnancy, second trimester
## 19334 Deep phlebothrombosis in pregnancy, third trimester
## 19335 Hemorrhoids in pregnancy, unspecified trimester
## 19336 Hemorrhoids in pregnancy, first trimester
## 19337 Hemorrhoids in pregnancy, second trimester
## 19338 Hemorrhoids in pregnancy, third trimester
## 19339 Cerebral venous thrombosis in pregnancy, unspecified trimester
## 19340 Cerebral venous thrombosis in pregnancy, first trimester
## 19341 Cerebral venous thrombosis in pregnancy, second trimester
## 19342 Cerebral venous thrombosis in pregnancy, third trimester
## 19343 Other venous complications in pregnancy, first trimester
## 19344 Other venous complications in pregnancy, second trimester
## 19345 Other venous complications in pregnancy, third trimester
## 19346 Other venous complications in pregnancy, unspecified trimester
## 19347 Venous complication in pregnancy, unspecified, unspecified trimester
## 19348 Venous complication in pregnancy, unspecified, first trimester
## 19349 Venous complication in pregnancy, unspecified, second trimester
## 19350 Venous complication in pregnancy, unspecified, third trimester
## 19351 Infections of kidney in pregnancy, unspecified trimester
## 19352 Infections of kidney in pregnancy, first trimester
## 19353 Infections of kidney in pregnancy, second trimester
## 19354 Infections of kidney in pregnancy, third trimester
## 19355 Infections of bladder in pregnancy, unspecified trimester
## 19356 Infections of bladder in pregnancy, first trimester
## 19357 Infections of bladder in pregnancy, second trimester
## 19358 Infections of bladder in pregnancy, third trimester
## 19359 Infections of urethra in pregnancy, unspecified trimester
## 19360 Infections of urethra in pregnancy, first trimester
## 19361 Infections of urethra in pregnancy, second trimester
## 19362 Infections of urethra in pregnancy, third trimester
## 19363 Infections of other parts of urinary tract in pregnancy, unspecified trimester
## 19364 Infections of other parts of urinary tract in pregnancy, first trimester
## 19365 Infections of other parts of urinary tract in pregnancy, second trimester
## 19366 Infections of other parts of urinary tract in pregnancy, third trimester
## 19367 Unspecified infection of urinary tract in pregnancy, unspecified trimester
## 19368 Unspecified infection of urinary tract in pregnancy, first trimester
## 19369 Unspecified infection of urinary tract in pregnancy, second trimester
## 19370 Unspecified infection of urinary tract in pregnancy, third trimester
## 19371 Infections of cervix in pregnancy, first trimester
## 19372 Infections of cervix in pregnancy, second trimester
## 19373 Infections of cervix in pregnancy, third trimester
## 19374 Infections of cervix in pregnancy, unspecified trimester
## 19375 Salpingo-oophoritis in pregnancy, first trimester
## 19376 Salpingo-oophoritis in pregnancy, second trimester
## 19377 Salpingo-oophoritis in pregnancy, third trimester
## 19378 Salpingo-oophoritis in pregnancy, unspecified trimester
## 19379 Infection of other part of genital tract in pregnancy, first trimester
## 19380 Infection of other part of genital tract in pregnancy, second trimester
## 19381 Infection of other part of genital tract in pregnancy, third trimester
## 19382 Infection of other part of genital tract in pregnancy, unspecified trimester
## 19383 Unspecified genitourinary tract infection in pregnancy, unspecified trimester
## 19384 Unspecified genitourinary tract infection in pregnancy, first trimester
## 19385 Unspecified genitourinary tract infection in pregnancy, second trimester
## 19386 Unspecified genitourinary tract infection in pregnancy, third trimester
## 19387 Pre-existing type 1 diabetes mellitus, in pregnancy, first trimester
## 19388 Pre-existing type 1 diabetes mellitus, in pregnancy, second trimester
## 19389 Pre-existing type 1 diabetes mellitus, in pregnancy, third trimester
## 19390 Pre-existing type 1 diabetes mellitus, in pregnancy, unspecified trimester
## 19391 Pre-existing type 1 diabetes mellitus, in childbirth
## 19392 Pre-existing type 1 diabetes mellitus, in the puerperium
## 19393 Pre-existing type 2 diabetes mellitus, in pregnancy, first trimester
## 19394 Pre-existing type 2 diabetes mellitus, in pregnancy, second trimester
## 19395 Pre-existing type 2 diabetes mellitus, in pregnancy, third trimester
## 19396 Pre-existing type 2 diabetes mellitus, in pregnancy, unspecified trimester
## 19397 Pre-existing type 2 diabetes mellitus, in childbirth
## 19398 Pre-existing type 2 diabetes mellitus, in the puerperium
## 19399 Unspecified pre-existing diabetes mellitus in pregnancy, first trimester
## 19400 Unspecified pre-existing diabetes mellitus in pregnancy, second trimester
## 19401 Unspecified pre-existing diabetes mellitus in pregnancy, third trimester
## 19402 Unspecified pre-existing diabetes mellitus in pregnancy, unspecified trimester
## 19403 Unspecified pre-existing diabetes mellitus in childbirth
## 19404 Unspecified pre-existing diabetes mellitus in the puerperium
## 19405 Gestational diabetes mellitus in pregnancy, diet controlled
## 19406 Gestational diabetes mellitus in pregnancy, insulin controlled
## 19407 Gestational diabetes mellitus in pregnancy, controlled by oral hypoglycemic drugs
## 19408 Gestational diabetes mellitus in pregnancy, unspecified control
## 19409 Gestational diabetes mellitus in childbirth, diet controlled
## 19410 Gestational diabetes mellitus in childbirth, insulin controlled
## 19411 Gestational diabetes mellitus in childbirth, controlled by oral hypoglycemic drugs
## 19412 Gestational diabetes mellitus in childbirth, unspecified control
## 19413 Gestational diabetes mellitus in the puerperium, diet controlled
## 19414 Gestational diabetes mellitus in the puerperium, insulin controlled
## 19415 Gestational diabetes mellitus in puerperium, controlled by oral hypoglycemic drugs
## 19416 Gestational diabetes mellitus in the puerperium, unspecified control
## 19417 Other pre-existing diabetes mellitus in pregnancy, first trimester
## 19418 Other pre-existing diabetes mellitus in pregnancy, second trimester
## 19419 Other pre-existing diabetes mellitus in pregnancy, third trimester
## 19420 Other pre-existing diabetes mellitus in pregnancy, unspecified trimester
## 19421 Other pre-existing diabetes mellitus in childbirth
## 19422 Other pre-existing diabetes mellitus in the puerperium
## 19423 Unspecified diabetes mellitus in pregnancy, first trimester
## 19424 Unspecified diabetes mellitus in pregnancy, second trimester
## 19425 Unspecified diabetes mellitus in pregnancy, third trimester
## 19426 Unspecified diabetes mellitus in pregnancy, unspecified trimester
## 19427 Unspecified diabetes mellitus in childbirth
## 19428 Unspecified diabetes mellitus in the puerperium
## 19429 Malnutrition in pregnancy, unspecified trimester
## 19430 Malnutrition in pregnancy, first trimester
## 19431 Malnutrition in pregnancy, second trimester
## 19432 Malnutrition in pregnancy, third trimester
## 19433 Malnutrition in childbirth
## 19434 Malnutrition in the puerperium
## 19435 Excessive weight gain in pregnancy, unspecified trimester
## 19436 Excessive weight gain in pregnancy, first trimester
## 19437 Excessive weight gain in pregnancy, second trimester
## 19438 Excessive weight gain in pregnancy, third trimester
## 19439 Low weight gain in pregnancy, unspecified trimester
## 19440 Low weight gain in pregnancy, first trimester
## 19441 Low weight gain in pregnancy, second trimester
## 19442 Low weight gain in pregnancy, third trimester
## 19443 Pregnancy care for patient with recurrent pregnancy loss, unspecified trimester
## 19444 Pregnancy care for patient with recurrent pregnancy loss, first trimester
## 19445 Pregnancy care for patient with recurrent pregnancy loss, second trimester
## 19446 Pregnancy care for patient with recurrent pregnancy loss, third trimester
## 19447 Retained intrauterine contraceptive device in pregnancy, unspecified trimester
## 19448 Retained intrauterine contraceptive device in pregnancy, first trimester
## 19449 Retained intrauterine contraceptive device in pregnancy, second trimester
## 19450 Retained intrauterine contraceptive device in pregnancy, third trimester
## 19451 Herpes gestationis, unspecified trimester
## 19452 Herpes gestationis, first trimester
## 19453 Herpes gestationis, second trimester
## 19454 Herpes gestationis, third trimester
## 19455 Maternal hypotension syndrome, unspecified trimester
## 19456 Maternal hypotension syndrome, first trimester
## 19457 Maternal hypotension syndrome, second trimester
## 19458 Maternal hypotension syndrome, third trimester
## 19459 Liver and biliary tract disorders in pregnancy, first trimester
## 19460 Liver and biliary tract disorders in pregnancy, second trimester
## 19461 Liver and biliary tract disorders in pregnancy, third trimester
## 19462 Liver and biliary tract disorders in pregnancy, unspecified trimester
## 19463 Liver and biliary tract disorders in childbirth
## 19464 Liver and biliary tract disorders in the puerperium
## 19465 Subluxation of symphysis (pubis) in pregnancy, first trimester
## 19466 Subluxation of symphysis (pubis) in pregnancy, second trimester
## 19467 Subluxation of symphysis (pubis) in pregnancy, third trimester
## 19468 Subluxation of symphysis (pubis) in pregnancy, unspecified trimester
## 19469 Subluxation of symphysis (pubis) in childbirth
## 19470 Subluxation of symphysis (pubis) in the puerperium
## 19471 Pregnancy related exhaustion and fatigue, first trimester
## 19472 Pregnancy related exhaustion and fatigue, second trimester
## 19473 Pregnancy related exhaustion and fatigue, third trimester
## 19474 Pregnancy related exhaustion and fatigue, unspecified trimester
## 19475 Pregnancy related peripheral neuritis, first trimester
## 19476 Pregnancy related peripheral neuritis, second trimester
## 19477 Pregnancy related peripheral neuritis, third trimester
## 19478 Pregnancy related peripheral neuritis, unspecified trimester
## 19479 Pregnancy related renal disease, first trimester
## 19480 Pregnancy related renal disease, second trimester
## 19481 Pregnancy related renal disease, third trimester
## 19482 Pregnancy related renal disease, unspecified trimester
## 19483 Uterine size-date discrepancy, first trimester
## 19484 Uterine size-date discrepancy, second trimester
## 19485 Uterine size-date discrepancy, third trimester
## 19486 Uterine size-date discrepancy, unspecified trimester
## 19487 Spotting complicating pregnancy, first trimester
## 19488 Spotting complicating pregnancy, second trimester
## 19489 Spotting complicating pregnancy, third trimester
## 19490 Spotting complicating pregnancy, unspecified trimester
## 19491 Pruritic urticarial papules and plaques of pregnancy (PUPPP)
## 19492 Cervical shortening, second trimester
## 19493 Cervical shortening, third trimester
## 19494 Cervical shortening, unspecified trimester
## 19495 Other specified pregnancy related conditions, first trimester
## 19496 Other specified pregnancy related conditions, second trimester
## 19497 Other specified pregnancy related conditions, third trimester
## 19498 Other specified pregnancy related conditions, unspecified trimester
## 19499 Pregnancy related conditions, unspecified, unspecified trimester
## 19500 Pregnancy related conditions, unspecified, first trimester
## 19501 Pregnancy related conditions, unspecified, second trimester
## 19502 Pregnancy related conditions, unspecified, third trimester
## 19503 Abnormal hematological finding on antenatal screening of mother
## 19504 Abnormal biochemical finding on antenatal screening of mother
## 19505 Abnormal cytological finding on antenatal screening of mother
## 19506 Abnormal ultrasonic finding on antenatal screening of mother
## 19507 Abnormal radiological finding on antenatal screening of mother
## 19508 Abnormal chromosomal and genetic finding on antenatal screening of mother
## 19509 Other abnormal findings on antenatal screening of mother
## 19510 Unspecified abnormal findings on antenatal screening of mother
## 19511 Aspiration pneumonitis due to anesthesia during pregnancy, first trimester
## 19512 Aspiration pneumonitis due to anesthesia during pregnancy, second trimester
## 19513 Aspiration pneumonitis due to anesthesia during pregnancy, third trimester
## 19514 Aspiration pneumonitis due to anesthesia during pregnancy, unspecified trimester
## 19515 Pressure collapse of lung due to anesthesia during pregnancy, first trimester
## 19516 Pressure collapse of lung due to anesthesia during pregnancy, second trimester
## 19517 Pressure collapse of lung due to anesthesia during pregnancy, third trimester
## 19518 Pressure collapse of lung due to anesthesia during pregnancy, unspecified trimester
## 19519 Other pulmonary complications of anesthesia during pregnancy, first trimester
## 19520 Other pulmonary complications of anesthesia during pregnancy, second trimester
## 19521 Other pulmonary complications of anesthesia during pregnancy, third trimester
## 19522 Other pulmonary complications of anesthesia during pregnancy, unspecified trimester
## 19523 Cardiac arrest due to anesthesia during pregnancy, first trimester
## 19524 Cardiac arrest due to anesthesia during pregnancy, second trimester
## 19525 Cardiac arrest due to anesthesia during pregnancy, third trimester
## 19526 Cardiac arrest due to anesthesia during pregnancy, unspecified trimester
## 19527 Cardiac failure due to anesthesia during pregnancy, first trimester
## 19528 Cardiac failure due to anesthesia during pregnancy, second trimester
## 19529 Cardiac failure due to anesthesia during pregnancy, third trimester
## 19530 Cardiac failure due to anesthesia during pregnancy, unspecified trimester
## 19531 Other cardiac complications of anesthesia during pregnancy, first trimester
## 19532 Other cardiac complications of anesthesia during pregnancy, second trimester
## 19533 Other cardiac complications of anesthesia during pregnancy, third trimester
## 19534 Other cardiac complications of anesthesia during pregnancy, unspecified trimester
## 19535 Cerebral anoxia due to anesthesia during pregnancy, first trimester
## 19536 Cerebral anoxia due to anesthesia during pregnancy, second trimester
## 19537 Cerebral anoxia due to anesthesia during pregnancy, third trimester
## 19538 Cerebral anoxia due to anesthesia during pregnancy, unspecified trimester
## 19539 Other central nervous system complications of anesthesia during pregnancy, first trimester
## 19540 Other central nervous system complications of anesthesia during pregnancy, second trimester
## 19541 Other central nervous system complications of anesthesia during pregnancy, third trimester
## 19542 Other central nervous system complications of anesthesia during pregnancy, unspecified trimester
## 19543 Toxic reaction to local anesthesia during pregnancy, first trimester
## 19544 Toxic reaction to local anesthesia during pregnancy, second trimester
## 19545 Toxic reaction to local anesthesia during pregnancy, third trimester
## 19546 Toxic reaction to local anesthesia during pregnancy, unspecified trimester
## 19547 Spinal and epidural anesthesia induced headache during pregnancy, unspecified trimester
## 19548 Spinal and epidural anesthesia induced headache during pregnancy, first trimester
## 19549 Spinal and epidural anesthesia induced headache during pregnancy, second trimester
## 19550 Spinal and epidural anesthesia induced headache during pregnancy, third trimester
## 19551 Other complications of spinal and epidural anesthesia during pregnancy, first trimester
## 19552 Other complications of spinal and epidural anesthesia during pregnancy, second trimester
## 19553 Other complications of spinal and epidural anesthesia during pregnancy, third trimester
## 19554 Other complications of spinal and epidural anesthesia during pregnancy, unspecified trimester
## 19555 Failed or difficult intubation for anesthesia during pregnancy, unspecified trimester
## 19556 Failed or difficult intubation for anesthesia during pregnancy, first trimester
## 19557 Failed or difficult intubation for anesthesia during pregnancy, second trimester
## 19558 Failed or difficult intubation for anesthesia during pregnancy, third trimester
## 19559 Other complications of anesthesia during pregnancy, first trimester
## 19560 Other complications of anesthesia during pregnancy, second trimester
## 19561 Other complications of anesthesia during pregnancy, third trimester
## 19562 Other complications of anesthesia during pregnancy, unspecified trimester
## 19563 Unspecified complication of anesthesia during pregnancy, unspecified trimester
## 19564 Unspecified complication of anesthesia during pregnancy, first trimester
## 19565 Unspecified complication of anesthesia during pregnancy, second trimester
## 19566 Unspecified complication of anesthesia during pregnancy, third trimester
## 19567 Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester
## 19568 Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester
## 19569 Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester
## 19570 Twin pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester
## 19571 Twin pregnancy, monochorionic/monoamniotic, first trimester
## 19572 Twin pregnancy, monochorionic/monoamniotic, second trimester
## 19573 Twin pregnancy, monochorionic/monoamniotic, third trimester
## 19574 Twin pregnancy, monochorionic/monoamniotic, unspecified trimester
## 19575 Conjoined twin pregnancy, first trimester
## 19576 Conjoined twin pregnancy, second trimester
## 19577 Conjoined twin pregnancy, third trimester
## 19578 Conjoined twin pregnancy, unspecified trimester
## 19579 Twin pregnancy, monochorionic/diamniotic, first trimester
## 19580 Twin pregnancy, monochorionic/diamniotic, second trimester
## 19581 Twin pregnancy, monochorionic/diamniotic, third trimester
## 19582 Twin pregnancy, monochorionic/diamniotic, unspecified trimester
## 19583 Twin pregnancy, dichorionic/diamniotic, first trimester
## 19584 Twin pregnancy, dichorionic/diamniotic, second trimester
## 19585 Twin pregnancy, dichorionic/diamniotic, third trimester
## 19586 Twin pregnancy, dichorionic/diamniotic, unspecified trimester
## 19587 Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester
## 19588 Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester
## 19589 Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester
## 19590 Twin pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester
## 19591 Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester
## 19592 Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester
## 19593 Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester
## 19594 Triplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester
## 19595 Triplet pregnancy with two or more monochorionic fetuses, first trimester
## 19596 Triplet pregnancy with two or more monochorionic fetuses, second trimester
## 19597 Triplet pregnancy with two or more monochorionic fetuses, third trimester
## 19598 Triplet pregnancy with two or more monochorionic fetuses, unspecified trimester
## 19599 Triplet pregnancy with two or more monoamniotic fetuses, first trimester
## 19600 Triplet pregnancy with two or more monoamniotic fetuses, second trimester
## 19601 Triplet pregnancy with two or more monoamniotic fetuses, third trimester
## 19602 Triplet pregnancy with two or more monoamniotic fetuses, unspecified trimester
## 19603 Triplet pregnancy, trichorionic/triamniotic, first trimester
## 19604 Triplet pregnancy, trichorionic/triamniotic, second trimester
## 19605 Triplet pregnancy, trichorionic/triamniotic, third trimester
## 19606 Triplet pregnancy, trichorionic/triamniotic, unspecified trimester
## 19607 Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester
## 19608 Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester
## 19609 Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester
## 19610 Triplet pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester
## 19611 Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, first trimester
## 19612 Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, second trimester
## 19613 Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, third trimester
## 19614 Quadruplet pregnancy, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester
## 19615 Quadruplet pregnancy with two or more monochorionic fetuses, first trimester
## 19616 Quadruplet pregnancy with two or more monochorionic fetuses, second trimester
## 19617 Quadruplet pregnancy with two or more monochorionic fetuses, third trimester
## 19618 Quadruplet pregnancy with two or more monochorionic fetuses, unspecified trimester
## 19619 Quadruplet pregnancy with two or more monoamniotic fetuses, first trimester
## 19620 Quadruplet pregnancy with two or more monoamniotic fetuses, second trimester
## 19621 Quadruplet pregnancy with two or more monoamniotic fetuses, third trimester
## 19622 Quadruplet pregnancy with two or more monoamniotic fetuses, unspecified trimester
## 19623 Quadruplet pregnancy, quadrachorionic/quadra-amniotic, first trimester
## 19624 Quadruplet pregnancy, quadrachorionic/quadra-amniotic, second trimester
## 19625 Quadruplet pregnancy, quadrachorionic/quadra-amniotic, third trimester
## 19626 Quadruplet pregnancy, quadrachorionic/quadra-amniotic, unspecified trimester
## 19627 Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, first trimester
## 19628 Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, second trimester
## 19629 Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, third trimester
## 19630 Quadruplet pregnancy, unable to determine number of placenta and number of amniotic sacs, unspecified trimester
## 19631 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, first trimester
## 19632 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, second trimester
## 19633 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, third trimester
## 19634 Other specified multiple gestation, unspecified number of placenta and unspecified number of amniotic sacs, unspecified trimester
## 19635 Other specified multiple gestation with two or more monochorionic fetuses, first trimester
## 19636 Other specified multiple gestation with two or more monochorionic fetuses, second trimester
## 19637 Other specified multiple gestation with two or more monochorionic fetuses, third trimester
## 19638 Other specified multiple gestation with two or more monochorionic fetuses, unspecified trimester
## 19639 Other specified multiple gestation with two or more monoamniotic fetuses, first trimester
## 19640 Other specified multiple gestation with two or more monoamniotic fetuses, second trimester
## 19641 Other specified multiple gestation with two or more monoamniotic fetuses, third trimester
## 19642 Other specified multiple gestation with two or more monoamniotic fetuses, unspecified trimester
## 19643 Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, first trimester
## 19644 Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, second trimester
## 19645 Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, third trimester
## 19646 Other specified multiple gestation, number of chorions and amnions are both equal to the number of fetuses, unspecified trimester
## 19647 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, first trimester
## 19648 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, second trimester
## 19649 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, third trimester
## 19650 Other specified multiple gestation, unable to determine number of placenta and number of amniotic sacs, unspecified trimester
## 19651 Multiple gestation, unspecified, unspecified trimester
## 19652 Multiple gestation, unspecified, first trimester
## 19653 Multiple gestation, unspecified, second trimester
## 19654 Multiple gestation, unspecified, third trimester
## 19655 Papyraceous fetus, unspecified trimester, not applicable or unspecified
## 19656 Papyraceous fetus, unspecified trimester, fetus 1
## 19657 Papyraceous fetus, unspecified trimester, fetus 2
## 19658 Papyraceous fetus, unspecified trimester, fetus 3
## 19659 Papyraceous fetus, unspecified trimester, fetus 4
## 19660 Papyraceous fetus, unspecified trimester, fetus 5
## 19661 Papyraceous fetus, unspecified trimester, other fetus
## 19662 Papyraceous fetus, first trimester, not applicable or unspecified
## 19663 Papyraceous fetus, first trimester, fetus 1
## 19664 Papyraceous fetus, first trimester, fetus 2
## 19665 Papyraceous fetus, first trimester, fetus 3
## 19666 Papyraceous fetus, first trimester, fetus 4
## 19667 Papyraceous fetus, first trimester, fetus 5
## 19668 Papyraceous fetus, first trimester, other fetus
## 19669 Papyraceous fetus, second trimester, not applicable or unspecified
## 19670 Papyraceous fetus, second trimester, fetus 1
## 19671 Papyraceous fetus, second trimester, fetus 2
## 19672 Papyraceous fetus, second trimester, fetus 3
## 19673 Papyraceous fetus, second trimester, fetus 4
## 19674 Papyraceous fetus, second trimester, fetus 5
## 19675 Papyraceous fetus, second trimester, other fetus
## 19676 Papyraceous fetus, third trimester, not applicable or unspecified
## 19677 Papyraceous fetus, third trimester, fetus 1
## 19678 Papyraceous fetus, third trimester, fetus 2
## 19679 Papyraceous fetus, third trimester, fetus 3
## 19680 Papyraceous fetus, third trimester, fetus 4
## 19681 Papyraceous fetus, third trimester, fetus 5
## 19682 Papyraceous fetus, third trimester, other fetus
## 19683 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, not applicable or unspecified
## 19684 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 1
## 19685 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 2
## 19686 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 3
## 19687 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 4
## 19688 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, fetus 5
## 19689 Continuing pregnancy after spontaneous abortion of one fetus or more, unspecified trimester, other fetus
## 19690 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, not applicable or unspecified
## 19691 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 1
## 19692 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 2
## 19693 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 3
## 19694 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 4
## 19695 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, fetus 5
## 19696 Continuing pregnancy after spontaneous abortion of one fetus or more, first trimester, other fetus
## 19697 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, not applicable or unspecified
## 19698 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 1
## 19699 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 2
## 19700 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 3
## 19701 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 4
## 19702 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, fetus 5
## 19703 Continuing pregnancy after spontaneous abortion of one fetus or more, second trimester, other fetus
## 19704 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, not applicable or unspecified
## 19705 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 1
## 19706 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 2
## 19707 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 3
## 19708 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 4
## 19709 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, fetus 5
## 19710 Continuing pregnancy after spontaneous abortion of one fetus or more, third trimester, other fetus
## 19711 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, not applicable or unspecified
## 19712 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 1
## 19713 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 2
## 19714 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 3
## 19715 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 4
## 19716 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, fetus 5
## 19717 Continuing pregnancy after intrauterine death of one fetus or more, unspecified trimester, other fetus
## 19718 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, not applicable or unspecified
## 19719 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 1
## 19720 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 2
## 19721 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 3
## 19722 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 4
## 19723 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, fetus 5
## 19724 Continuing pregnancy after intrauterine death of one fetus or more, first trimester, other fetus
## 19725 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, not applicable or unspecified
## 19726 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 1
## 19727 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 2
## 19728 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 3
## 19729 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 4
## 19730 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, fetus 5
## 19731 Continuing pregnancy after intrauterine death of one fetus or more, second trimester, other fetus
## 19732 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, not applicable or unspecified
## 19733 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 1
## 19734 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 2
## 19735 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 3
## 19736 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 4
## 19737 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, fetus 5
## 19738 Continuing pregnancy after intrauterine death of one fetus or more, third trimester, other fetus
## 19739 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, not applicable or unspecified
## 19740 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 1
## 19741 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 2
## 19742 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 3
## 19743 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 4
## 19744 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, fetus 5
## 19745 Continuing pregnancy after elective fetal reduction of one fetus or more, unspecified trimester, other fetus
## 19746 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, not applicable or unspecified
## 19747 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 1
## 19748 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 2
## 19749 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 3
## 19750 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 4
## 19751 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, fetus 5
## 19752 Continuing pregnancy after elective fetal reduction of one fetus or more, first trimester, other fetus
## 19753 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, not applicable or unspecified
## 19754 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 1
## 19755 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 2
## 19756 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 3
## 19757 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 4
## 19758 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, fetus 5
## 19759 Continuing pregnancy after elective fetal reduction of one fetus or more, second trimester, other fetus
## 19760 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, not applicable or unspecified
## 19761 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 1
## 19762 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 2
## 19763 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 3
## 19764 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 4
## 19765 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, fetus 5
## 19766 Continuing pregnancy after elective fetal reduction of one fetus or more, third trimester, other fetus
## 19767 Other complications specific to multiple gestation, first trimester, not applicable or unspecified
## 19768 Other complications specific to multiple gestation, first trimester, fetus 1
## 19769 Other complications specific to multiple gestation, first trimester, fetus 2
## 19770 Other complications specific to multiple gestation, first trimester, fetus 3
## 19771 Other complications specific to multiple gestation, first trimester, fetus 4
## 19772 Other complications specific to multiple gestation, first trimester, fetus 5
## 19773 Other complications specific to multiple gestation, first trimester, other fetus
## 19774 Other complications specific to multiple gestation, second trimester, not applicable or unspecified
## 19775 Other complications specific to multiple gestation, second trimester, fetus 1
## 19776 Other complications specific to multiple gestation, second trimester, fetus 2
## 19777 Other complications specific to multiple gestation, second trimester, fetus 3
## 19778 Other complications specific to multiple gestation, second trimester, fetus 4
## 19779 Other complications specific to multiple gestation, second trimester, fetus 5
## 19780 Other complications specific to multiple gestation, second trimester, other fetus
## 19781 Other complications specific to multiple gestation, third trimester, not applicable or unspecified
## 19782 Other complications specific to multiple gestation, third trimester, fetus 1
## 19783 Other complications specific to multiple gestation, third trimester, fetus 2
## 19784 Other complications specific to multiple gestation, third trimester, fetus 3
## 19785 Other complications specific to multiple gestation, third trimester, fetus 4
## 19786 Other complications specific to multiple gestation, third trimester, fetus 5
## 19787 Other complications specific to multiple gestation, third trimester, other fetus
## 19788 Other complications specific to multiple gestation, unspecified trimester, not applicable or unspecified
## 19789 Other complications specific to multiple gestation, unspecified trimester, fetus 1
## 19790 Other complications specific to multiple gestation, unspecified trimester, fetus 2
## 19791 Other complications specific to multiple gestation, unspecified trimester, fetus 3
## 19792 Other complications specific to multiple gestation, unspecified trimester, fetus 4
## 19793 Other complications specific to multiple gestation, unspecified trimester, fetus 5
## 19794 Other complications specific to multiple gestation, unspecified trimester, other fetus
## 19795 Maternal care for unstable lie, not applicable or unspecified
## 19796 Maternal care for unstable lie, fetus 1
## 19797 Maternal care for unstable lie, fetus 2
## 19798 Maternal care for unstable lie, fetus 3
## 19799 Maternal care for unstable lie, fetus 4
## 19800 Maternal care for unstable lie, fetus 5
## 19801 Maternal care for unstable lie, other fetus
## 19802 Maternal care for breech presentation, not applicable or unspecified
## 19803 Maternal care for breech presentation, fetus 1
## 19804 Maternal care for breech presentation, fetus 2
## 19805 Maternal care for breech presentation, fetus 3
## 19806 Maternal care for breech presentation, fetus 4
## 19807 Maternal care for breech presentation, fetus 5
## 19808 Maternal care for breech presentation, other fetus
## 19809 Maternal care for transverse and oblique lie, not applicable or unspecified
## 19810 Maternal care for transverse and oblique lie, fetus 1
## 19811 Maternal care for transverse and oblique lie, fetus 2
## 19812 Maternal care for transverse and oblique lie, fetus 3
## 19813 Maternal care for transverse and oblique lie, fetus 4
## 19814 Maternal care for transverse and oblique lie, fetus 5
## 19815 Maternal care for transverse and oblique lie, other fetus
## 19816 Maternal care for face, brow and chin presentation, not applicable or unspecified
## 19817 Maternal care for face, brow and chin presentation, fetus 1
## 19818 Maternal care for face, brow and chin presentation, fetus 2
## 19819 Maternal care for face, brow and chin presentation, fetus 3
## 19820 Maternal care for face, brow and chin presentation, fetus 4
## 19821 Maternal care for face, brow and chin presentation, fetus 5
## 19822 Maternal care for face, brow and chin presentation, other fetus
## 19823 Maternal care for high head at term, not applicable or unspecified
## 19824 Maternal care for high head at term, fetus 1
## 19825 Maternal care for high head at term, fetus 2
## 19826 Maternal care for high head at term, fetus 3
## 19827 Maternal care for high head at term, fetus 4
## 19828 Maternal care for high head at term, fetus 5
## 19829 Maternal care for high head at term, other fetus
## 19830 Maternal care for compound presentation, not applicable or unspecified
## 19831 Maternal care for compound presentation, fetus 1
## 19832 Maternal care for compound presentation, fetus 2
## 19833 Maternal care for compound presentation, fetus 3
## 19834 Maternal care for compound presentation, fetus 4
## 19835 Maternal care for compound presentation, fetus 5
## 19836 Maternal care for compound presentation, other fetus
## 19837 Maternal care for other malpresentation of fetus, not applicable or unspecified
## 19838 Maternal care for other malpresentation of fetus, fetus 1
## 19839 Maternal care for other malpresentation of fetus, fetus 2
## 19840 Maternal care for other malpresentation of fetus, fetus 3
## 19841 Maternal care for other malpresentation of fetus, fetus 4
## 19842 Maternal care for other malpresentation of fetus, fetus 5
## 19843 Maternal care for other malpresentation of fetus, other fetus
## 19844 Maternal care for malpresentation of fetus, unspecified, not applicable or unspecified
## 19845 Maternal care for malpresentation of fetus, unspecified, fetus 1
## 19846 Maternal care for malpresentation of fetus, unspecified, fetus 2
## 19847 Maternal care for malpresentation of fetus, unspecified, fetus 3
## 19848 Maternal care for malpresentation of fetus, unspecified, fetus 4
## 19849 Maternal care for malpresentation of fetus, unspecified, fetus 5
## 19850 Maternal care for malpresentation of fetus, unspecified, other fetus
## 19851 Maternal care for disproportion due to deformity of maternal pelvic bones
## 19852 Maternal care for disproportion due to generally contracted pelvis
## 19853 Maternal care for disproportion due to inlet contraction of pelvis
## 19854 Maternal care for disproportion due to outlet contraction of pelvis, not applicable or unspecified
## 19855 Maternal care for disproportion due to outlet contraction of pelvis, fetus 1
## 19856 Maternal care for disproportion due to outlet contraction of pelvis, fetus 2
## 19857 Maternal care for disproportion due to outlet contraction of pelvis, fetus 3
## 19858 Maternal care for disproportion due to outlet contraction of pelvis, fetus 4
## 19859 Maternal care for disproportion due to outlet contraction of pelvis, fetus 5
## 19860 Maternal care for disproportion due to outlet contraction of pelvis, other fetus
## 19861 Maternal care for disproportion of mixed maternal and fetal origin, not applicable or unspecified
## 19862 Maternal care for disproportion of mixed maternal and fetal origin, fetus 1
## 19863 Maternal care for disproportion of mixed maternal and fetal origin, fetus 2
## 19864 Maternal care for disproportion of mixed maternal and fetal origin, fetus 3
## 19865 Maternal care for disproportion of mixed maternal and fetal origin, fetus 4
## 19866 Maternal care for disproportion of mixed maternal and fetal origin, fetus 5
## 19867 Maternal care for disproportion of mixed maternal and fetal origin, other fetus
## 19868 Maternal care for disproportion due to unusually large fetus, not applicable or unspecified
## 19869 Maternal care for disproportion due to unusually large fetus, fetus 1
## 19870 Maternal care for disproportion due to unusually large fetus, fetus 2
## 19871 Maternal care for disproportion due to unusually large fetus, fetus 3
## 19872 Maternal care for disproportion due to unusually large fetus, fetus 4
## 19873 Maternal care for disproportion due to unusually large fetus, fetus 5
## 19874 Maternal care for disproportion due to unusually large fetus, other fetus
## 19875 Maternal care for disproportion due to hydrocephalic fetus, not applicable or unspecified
## 19876 Maternal care for disproportion due to hydrocephalic fetus, fetus 1
## 19877 Maternal care for disproportion due to hydrocephalic fetus, fetus 2
## 19878 Maternal care for disproportion due to hydrocephalic fetus, fetus 3
## 19879 Maternal care for disproportion due to hydrocephalic fetus, fetus 4
## 19880 Maternal care for disproportion due to hydrocephalic fetus, fetus 5
## 19881 Maternal care for disproportion due to hydrocephalic fetus, other fetus
## 19882 Maternal care for disproportion due to other fetal deformities, not applicable or unspecified
## 19883 Maternal care for disproportion due to other fetal deformities, fetus 1
## 19884 Maternal care for disproportion due to other fetal deformities, fetus 2
## 19885 Maternal care for disproportion due to other fetal deformities, fetus 3
## 19886 Maternal care for disproportion due to other fetal deformities, fetus 4
## 19887 Maternal care for disproportion due to other fetal deformities, fetus 5
## 19888 Maternal care for disproportion due to other fetal deformities, other fetus
## 19889 Maternal care for disproportion of other origin
## 19890 Maternal care for disproportion, unspecified
## 19891 Maternal care for unspecified congenital malformation of uterus, unspecified trimester
## 19892 Maternal care for unspecified congenital malformation of uterus, first trimester
## 19893 Maternal care for unspecified congenital malformation of uterus, second trimester
## 19894 Maternal care for unspecified congenital malformation of uterus, third trimester
## 19895 Maternal care for benign tumor of corpus uteri, unspecified trimester
## 19896 Maternal care for benign tumor of corpus uteri, first trimester
## 19897 Maternal care for benign tumor of corpus uteri, second trimester
## 19898 Maternal care for benign tumor of corpus uteri, third trimester
## 19899 Maternal care for low transverse scar from previous cesarean delivery
## 19900 Maternal care for vertical scar from previous cesarean delivery
## 19901 Maternal care for unspecified type scar from previous cesarean delivery
## 19902 Maternal care due to uterine scar from other previous surgery
## 19903 Maternal care for cervical incompetence, unspecified trimester
## 19904 Maternal care for cervical incompetence, first trimester
## 19905 Maternal care for cervical incompetence, second trimester
## 19906 Maternal care for cervical incompetence, third trimester
## 19907 Maternal care for other abnormalities of cervix, unspecified trimester
## 19908 Maternal care for other abnormalities of cervix, first trimester
## 19909 Maternal care for other abnormalities of cervix, second trimester
## 19910 Maternal care for other abnormalities of cervix, third trimester
## 19911 Maternal care for incarceration of gravid uterus, first trimester
## 19912 Maternal care for incarceration of gravid uterus, second trimester
## 19913 Maternal care for incarceration of gravid uterus, third trimester
## 19914 Maternal care for incarceration of gravid uterus, unspecified trimester
## 19915 Maternal care for prolapse of gravid uterus, first trimester
## 19916 Maternal care for prolapse of gravid uterus, second trimester
## 19917 Maternal care for prolapse of gravid uterus, third trimester
## 19918 Maternal care for prolapse of gravid uterus, unspecified trimester
## 19919 Maternal care for retroversion of gravid uterus, first trimester
## 19920 Maternal care for retroversion of gravid uterus, second trimester
## 19921 Maternal care for retroversion of gravid uterus, third trimester
## 19922 Maternal care for retroversion of gravid uterus, unspecified trimester
## 19923 Maternal care for other abnormalities of gravid uterus, first trimester
## 19924 Maternal care for other abnormalities of gravid uterus, second trimester
## 19925 Maternal care for other abnormalities of gravid uterus, third trimester
## 19926 Maternal care for other abnormalities of gravid uterus, unspecified trimester
## 19927 Maternal care for abnormality of vagina, unspecified trimester
## 19928 Maternal care for abnormality of vagina, first trimester
## 19929 Maternal care for abnormality of vagina, second trimester
## 19930 Maternal care for abnormality of vagina, third trimester
## 19931 Maternal care for abnormality of vulva and perineum, unspecified trimester
## 19932 Maternal care for abnormality of vulva and perineum, first trimester
## 19933 Maternal care for abnormality of vulva and perineum, second trimester
## 19934 Maternal care for abnormality of vulva and perineum, third trimester
## 19935 Maternal care for other abnormalities of pelvic organs, unspecified trimester
## 19936 Maternal care for other abnormalities of pelvic organs, first trimester
## 19937 Maternal care for other abnormalities of pelvic organs, second trimester
## 19938 Maternal care for other abnormalities of pelvic organs, third trimester
## 19939 Maternal care for abnormality of pelvic organ, unspecified, unspecified trimester
## 19940 Maternal care for abnormality of pelvic organ, unspecified, first trimester
## 19941 Maternal care for abnormality of pelvic organ, unspecified, second trimester
## 19942 Maternal care for abnormality of pelvic organ, unspecified, third trimester
## 19943 Maternal care for (suspected) central nervous system malformation in fetus, not applicable or unspecified
## 19944 Maternal care for (suspected) central nervous system malformation in fetus, fetus 1
## 19945 Maternal care for (suspected) central nervous system malformation in fetus, fetus 2
## 19946 Maternal care for (suspected) central nervous system malformation in fetus, fetus 3
## 19947 Maternal care for (suspected) central nervous system malformation in fetus, fetus 4
## 19948 Maternal care for (suspected) central nervous system malformation in fetus, fetus 5
## 19949 Maternal care for (suspected) central nervous system malformation in fetus, other fetus
## 19950 Maternal care for (suspected) chromosomal abnormality in fetus, not applicable or unspecified
## 19951 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 1
## 19952 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 2
## 19953 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 3
## 19954 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 4
## 19955 Maternal care for (suspected) chromosomal abnormality in fetus, fetus 5
## 19956 Maternal care for (suspected) chromosomal abnormality in fetus, other fetus
## 19957 Maternal care for (suspected) hereditary disease in fetus, not applicable or unspecified
## 19958 Maternal care for (suspected) hereditary disease in fetus, fetus 1
## 19959 Maternal care for (suspected) hereditary disease in fetus, fetus 2
## 19960 Maternal care for (suspected) hereditary disease in fetus, fetus 3
## 19961 Maternal care for (suspected) hereditary disease in fetus, fetus 4
## 19962 Maternal care for (suspected) hereditary disease in fetus, fetus 5
## 19963 Maternal care for (suspected) hereditary disease in fetus, other fetus
## 19964 Maternal care for (suspected) damage to fetus from viral disease in mother, not applicable or unspecified
## 19965 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 1
## 19966 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 2
## 19967 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 3
## 19968 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 4
## 19969 Maternal care for (suspected) damage to fetus from viral disease in mother, fetus 5
## 19970 Maternal care for (suspected) damage to fetus from viral disease in mother, other fetus
## 19971 Maternal care for (suspected) damage to fetus from alcohol, not applicable or unspecified
## 19972 Maternal care for (suspected) damage to fetus from alcohol, fetus 1
## 19973 Maternal care for (suspected) damage to fetus from alcohol, fetus 2
## 19974 Maternal care for (suspected) damage to fetus from alcohol, fetus 3
## 19975 Maternal care for (suspected) damage to fetus from alcohol, fetus 4
## 19976 Maternal care for (suspected) damage to fetus from alcohol, fetus 5
## 19977 Maternal care for (suspected) damage to fetus from alcohol, other fetus
## 19978 Maternal care for (suspected) damage to fetus by drugs, not applicable or unspecified
## 19979 Maternal care for (suspected) damage to fetus by drugs, fetus 1
## 19980 Maternal care for (suspected) damage to fetus by drugs, fetus 2
## 19981 Maternal care for (suspected) damage to fetus by drugs, fetus 3
## 19982 Maternal care for (suspected) damage to fetus by drugs, fetus 4
## 19983 Maternal care for (suspected) damage to fetus by drugs, fetus 5
## 19984 Maternal care for (suspected) damage to fetus by drugs, other fetus
## 19985 Maternal care for (suspected) damage to fetus by radiation, not applicable or unspecified
## 19986 Maternal care for (suspected) damage to fetus by radiation, fetus 1
## 19987 Maternal care for (suspected) damage to fetus by radiation, fetus 2
## 19988 Maternal care for (suspected) damage to fetus by radiation, fetus 3
## 19989 Maternal care for (suspected) damage to fetus by radiation, fetus 4
## 19990 Maternal care for (suspected) damage to fetus by radiation, fetus 5
## 19991 Maternal care for (suspected) damage to fetus by radiation, other fetus
## 19992 Maternal care for (suspected) damage to fetus by other medical procedures, not applicable or unspecified
## 19993 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 1
## 19994 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 2
## 19995 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 3
## 19996 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 4
## 19997 Maternal care for (suspected) damage to fetus by other medical procedures, fetus 5
## 19998 Maternal care for (suspected) damage to fetus by other medical procedures, other fetus
## 19999 Maternal care for other (suspected) fetal abnormality and damage, not applicable or unspecified
## 20000 Maternal care for other (suspected) fetal abnormality and damage, fetus 1
## 20001 Maternal care for other (suspected) fetal abnormality and damage, fetus 2
## 20002 Maternal care for other (suspected) fetal abnormality and damage, fetus 3
## 20003 Maternal care for other (suspected) fetal abnormality and damage, fetus 4
## 20004 Maternal care for other (suspected) fetal abnormality and damage, fetus 5
## 20005 Maternal care for other (suspected) fetal abnormality and damage, other fetus
## 20006 Maternal care for (suspected) fetal abnormality and damage, unspecified, not applicable or unspecified
## 20007 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 1
## 20008 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 2
## 20009 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 3
## 20010 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 4
## 20011 Maternal care for (suspected) fetal abnormality and damage, unspecified, fetus 5
## 20012 Maternal care for (suspected) fetal abnormality and damage, unspecified, other fetus
## 20013 Maternal care for anti-D [Rh] antibodies, first trimester, not applicable or unspecified
## 20014 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 1
## 20015 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 2
## 20016 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 3
## 20017 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 4
## 20018 Maternal care for anti-D [Rh] antibodies, first trimester, fetus 5
## 20019 Maternal care for anti-D [Rh] antibodies, first trimester, other fetus
## 20020 Maternal care for anti-D [Rh] antibodies, second trimester, not applicable or unspecified
## 20021 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 1
## 20022 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 2
## 20023 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 3
## 20024 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 4
## 20025 Maternal care for anti-D [Rh] antibodies, second trimester, fetus 5
## 20026 Maternal care for anti-D [Rh] antibodies, second trimester, other fetus
## 20027 Maternal care for anti-D [Rh] antibodies, third trimester, not applicable or unspecified
## 20028 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 1
## 20029 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 2
## 20030 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 3
## 20031 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 4
## 20032 Maternal care for anti-D [Rh] antibodies, third trimester, fetus 5
## 20033 Maternal care for anti-D [Rh] antibodies, third trimester, other fetus
## 20034 Maternal care for anti-D [Rh] antibodies, unspecified trimester, not applicable or unspecified
## 20035 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 1
## 20036 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 2
## 20037 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 3
## 20038 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 4
## 20039 Maternal care for anti-D [Rh] antibodies, unspecified trimester, fetus 5
## 20040 Maternal care for anti-D [Rh] antibodies, unspecified trimester, other fetus
## 20041 Maternal care for other rhesus isoimmunization, first trimester, not applicable or unspecified
## 20042 Maternal care for other rhesus isoimmunization, first trimester, fetus 1
## 20043 Maternal care for other rhesus isoimmunization, first trimester, fetus 2
## 20044 Maternal care for other rhesus isoimmunization, first trimester, fetus 3
## 20045 Maternal care for other rhesus isoimmunization, first trimester, fetus 4
## 20046 Maternal care for other rhesus isoimmunization, first trimester, fetus 5
## 20047 Maternal care for other rhesus isoimmunization, first trimester, other fetus
## 20048 Maternal care for other rhesus isoimmunization, second trimester, not applicable or unspecified
## 20049 Maternal care for other rhesus isoimmunization, second trimester, fetus 1
## 20050 Maternal care for other rhesus isoimmunization, second trimester, fetus 2
## 20051 Maternal care for other rhesus isoimmunization, second trimester, fetus 3
## 20052 Maternal care for other rhesus isoimmunization, second trimester, fetus 4
## 20053 Maternal care for other rhesus isoimmunization, second trimester, fetus 5
## 20054 Maternal care for other rhesus isoimmunization, second trimester, other fetus
## 20055 Maternal care for other rhesus isoimmunization, third trimester, not applicable or unspecified
## 20056 Maternal care for other rhesus isoimmunization, third trimester, fetus 1
## 20057 Maternal care for other rhesus isoimmunization, third trimester, fetus 2
## 20058 Maternal care for other rhesus isoimmunization, third trimester, fetus 3
## 20059 Maternal care for other rhesus isoimmunization, third trimester, fetus 4
## 20060 Maternal care for other rhesus isoimmunization, third trimester, fetus 5
## 20061 Maternal care for other rhesus isoimmunization, third trimester, other fetus
## 20062 Maternal care for other rhesus isoimmunization, unspecified trimester, not applicable or unspecified
## 20063 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 1
## 20064 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 2
## 20065 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 3
## 20066 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 4
## 20067 Maternal care for other rhesus isoimmunization, unspecified trimester, fetus 5
## 20068 Maternal care for other rhesus isoimmunization, unspecified trimester, other fetus
## 20069 Maternal care for Anti-A sensitization, first trimester, not applicable or unspecified
## 20070 Maternal care for Anti-A sensitization, first trimester, fetus 1
## 20071 Maternal care for Anti-A sensitization, first trimester, fetus 2
## 20072 Maternal care for Anti-A sensitization, first trimester, fetus 3
## 20073 Maternal care for Anti-A sensitization, first trimester, fetus 4
## 20074 Maternal care for Anti-A sensitization, first trimester, fetus 5
## 20075 Maternal care for Anti-A sensitization, first trimester, other fetus
## 20076 Maternal care for Anti-A sensitization, second trimester, not applicable or unspecified
## 20077 Maternal care for Anti-A sensitization, second trimester, fetus 1
## 20078 Maternal care for Anti-A sensitization, second trimester, fetus 2
## 20079 Maternal care for Anti-A sensitization, second trimester, fetus 3
## 20080 Maternal care for Anti-A sensitization, second trimester, fetus 4
## 20081 Maternal care for Anti-A sensitization, second trimester, fetus 5
## 20082 Maternal care for Anti-A sensitization, second trimester, other fetus
## 20083 Maternal care for Anti-A sensitization, third trimester, not applicable or unspecified
## 20084 Maternal care for Anti-A sensitization, third trimester, fetus 1
## 20085 Maternal care for Anti-A sensitization, third trimester, fetus 2
## 20086 Maternal care for Anti-A sensitization, third trimester, fetus 3
## 20087 Maternal care for Anti-A sensitization, third trimester, fetus 4
## 20088 Maternal care for Anti-A sensitization, third trimester, fetus 5
## 20089 Maternal care for Anti-A sensitization, third trimester, other fetus
## 20090 Maternal care for Anti-A sensitization, unspecified trimester, not applicable or unspecified
## 20091 Maternal care for Anti-A sensitization, unspecified trimester, fetus 1
## 20092 Maternal care for Anti-A sensitization, unspecified trimester, fetus 2
## 20093 Maternal care for Anti-A sensitization, unspecified trimester, fetus 3
## 20094 Maternal care for Anti-A sensitization, unspecified trimester, fetus 4
## 20095 Maternal care for Anti-A sensitization, unspecified trimester, fetus 5
## 20096 Maternal care for Anti-A sensitization, unspecified trimester, other fetus
## 20097 Maternal care for other isoimmunization, first trimester, not applicable or unspecified
## 20098 Maternal care for other isoimmunization, first trimester, fetus 1
## 20099 Maternal care for other isoimmunization, first trimester, fetus 2
## 20100 Maternal care for other isoimmunization, first trimester, fetus 3
## 20101 Maternal care for other isoimmunization, first trimester, fetus 4
## 20102 Maternal care for other isoimmunization, first trimester, fetus 5
## 20103 Maternal care for other isoimmunization, first trimester, other fetus
## 20104 Maternal care for other isoimmunization, second trimester, not applicable or unspecified
## 20105 Maternal care for other isoimmunization, second trimester, fetus 1
## 20106 Maternal care for other isoimmunization, second trimester, fetus 2
## 20107 Maternal care for other isoimmunization, second trimester, fetus 3
## 20108 Maternal care for other isoimmunization, second trimester, fetus 4
## 20109 Maternal care for other isoimmunization, second trimester, fetus 5
## 20110 Maternal care for other isoimmunization, second trimester, other fetus
## 20111 Maternal care for other isoimmunization, third trimester, not applicable or unspecified
## 20112 Maternal care for other isoimmunization, third trimester, fetus 1
## 20113 Maternal care for other isoimmunization, third trimester, fetus 2
## 20114 Maternal care for other isoimmunization, third trimester, fetus 3
## 20115 Maternal care for other isoimmunization, third trimester, fetus 4
## 20116 Maternal care for other isoimmunization, third trimester, fetus 5
## 20117 Maternal care for other isoimmunization, third trimester, other fetus
## 20118 Maternal care for other isoimmunization, unspecified trimester, not applicable or unspecified
## 20119 Maternal care for other isoimmunization, unspecified trimester, fetus 1
## 20120 Maternal care for other isoimmunization, unspecified trimester, fetus 2
## 20121 Maternal care for other isoimmunization, unspecified trimester, fetus 3
## 20122 Maternal care for other isoimmunization, unspecified trimester, fetus 4
## 20123 Maternal care for other isoimmunization, unspecified trimester, fetus 5
## 20124 Maternal care for other isoimmunization, unspecified trimester, other fetus
## 20125 Maternal care for hydrops fetalis, unspecified trimester, not applicable or unspecified
## 20126 Maternal care for hydrops fetalis, unspecified trimester, fetus 1
## 20127 Maternal care for hydrops fetalis, unspecified trimester, fetus 2
## 20128 Maternal care for hydrops fetalis, unspecified trimester, fetus 3
## 20129 Maternal care for hydrops fetalis, unspecified trimester, fetus 4
## 20130 Maternal care for hydrops fetalis, unspecified trimester, fetus 5
## 20131 Maternal care for hydrops fetalis, unspecified trimester, other fetus
## 20132 Maternal care for hydrops fetalis, first trimester, not applicable or unspecified
## 20133 Maternal care for hydrops fetalis, first trimester, fetus 1
## 20134 Maternal care for hydrops fetalis, first trimester, fetus 2
## 20135 Maternal care for hydrops fetalis, first trimester, fetus 3
## 20136 Maternal care for hydrops fetalis, first trimester, fetus 4
## 20137 Maternal care for hydrops fetalis, first trimester, fetus 5
## 20138 Maternal care for hydrops fetalis, first trimester, other fetus
## 20139 Maternal care for hydrops fetalis, second trimester, not applicable or unspecified
## 20140 Maternal care for hydrops fetalis, second trimester, fetus 1
## 20141 Maternal care for hydrops fetalis, second trimester, fetus 2
## 20142 Maternal care for hydrops fetalis, second trimester, fetus 3
## 20143 Maternal care for hydrops fetalis, second trimester, fetus 4
## 20144 Maternal care for hydrops fetalis, second trimester, fetus 5
## 20145 Maternal care for hydrops fetalis, second trimester, other fetus
## 20146 Maternal care for hydrops fetalis, third trimester, not applicable or unspecified
## 20147 Maternal care for hydrops fetalis, third trimester, fetus 1
## 20148 Maternal care for hydrops fetalis, third trimester, fetus 2
## 20149 Maternal care for hydrops fetalis, third trimester, fetus 3
## 20150 Maternal care for hydrops fetalis, third trimester, fetus 4
## 20151 Maternal care for hydrops fetalis, third trimester, fetus 5
## 20152 Maternal care for hydrops fetalis, third trimester, other fetus
## 20153 Maternal care for intrauterine death, not applicable or unspecified
## 20154 Maternal care for intrauterine death, fetus 1
## 20155 Maternal care for intrauterine death, fetus 2
## 20156 Maternal care for intrauterine death, fetus 3
## 20157 Maternal care for intrauterine death, fetus 4
## 20158 Maternal care for intrauterine death, fetus 5
## 20159 Maternal care for intrauterine death, other fetus
## 20160 Maternal care for known or suspected placental insufficiency, first trimester, not applicable or unspecified
## 20161 Maternal care for known or suspected placental insufficiency, first trimester, fetus 1
## 20162 Maternal care for known or suspected placental insufficiency, first trimester, fetus 2
## 20163 Maternal care for known or suspected placental insufficiency, first trimester, fetus 3
## 20164 Maternal care for known or suspected placental insufficiency, first trimester, fetus 4
## 20165 Maternal care for known or suspected placental insufficiency, first trimester, fetus 5
## 20166 Maternal care for known or suspected placental insufficiency, first trimester, other fetus
## 20167 Maternal care for known or suspected placental insufficiency, second trimester, not applicable or unspecified
## 20168 Maternal care for known or suspected placental insufficiency, second trimester, fetus 1
## 20169 Maternal care for known or suspected placental insufficiency, second trimester, fetus 2
## 20170 Maternal care for known or suspected placental insufficiency, second trimester, fetus 3
## 20171 Maternal care for known or suspected placental insufficiency, second trimester, fetus 4
## 20172 Maternal care for known or suspected placental insufficiency, second trimester, fetus 5
## 20173 Maternal care for known or suspected placental insufficiency, second trimester, other fetus
## 20174 Maternal care for known or suspected placental insufficiency, third trimester, not applicable or unspecified
## 20175 Maternal care for known or suspected placental insufficiency, third trimester, fetus 1
## 20176 Maternal care for known or suspected placental insufficiency, third trimester, fetus 2
## 20177 Maternal care for known or suspected placental insufficiency, third trimester, fetus 3
## 20178 Maternal care for known or suspected placental insufficiency, third trimester, fetus 4
## 20179 Maternal care for known or suspected placental insufficiency, third trimester, fetus 5
## 20180 Maternal care for known or suspected placental insufficiency, third trimester, other fetus
## 20181 Maternal care for known or suspected placental insufficiency, unspecified trimester, not applicable or unspecified
## 20182 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 1
## 20183 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 2
## 20184 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 3
## 20185 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 4
## 20186 Maternal care for known or suspected placental insufficiency, unspecified trimester, fetus 5
## 20187 Maternal care for known or suspected placental insufficiency, unspecified trimester, other fetus
## 20188 Maternal care for other known or suspected poor fetal growth, first trimester, not applicable or unspecified
## 20189 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 1
## 20190 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 2
## 20191 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 3
## 20192 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 4
## 20193 Maternal care for other known or suspected poor fetal growth, first trimester, fetus 5
## 20194 Maternal care for other known or suspected poor fetal growth, first trimester, other fetus
## 20195 Maternal care for other known or suspected poor fetal growth, second trimester, not applicable or unspecified
## 20196 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 1
## 20197 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 2
## 20198 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 3
## 20199 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 4
## 20200 Maternal care for other known or suspected poor fetal growth, second trimester, fetus 5
## 20201 Maternal care for other known or suspected poor fetal growth, second trimester, other fetus
## 20202 Maternal care for other known or suspected poor fetal growth, third trimester, not applicable or unspecified
## 20203 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 1
## 20204 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 2
## 20205 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 3
## 20206 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 4
## 20207 Maternal care for other known or suspected poor fetal growth, third trimester, fetus 5
## 20208 Maternal care for other known or suspected poor fetal growth, third trimester, other fetus
## 20209 Maternal care for other known or suspected poor fetal growth, unspecified trimester, not applicable or unspecified
## 20210 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 1
## 20211 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 2
## 20212 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 3
## 20213 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 4
## 20214 Maternal care for other known or suspected poor fetal growth, unspecified trimester, fetus 5
## 20215 Maternal care for other known or suspected poor fetal growth, unspecified trimester, other fetus
## 20216 Maternal care for excessive fetal growth, unspecified trimester, not applicable or unspecified
## 20217 Maternal care for excessive fetal growth, unspecified trimester, fetus 1
## 20218 Maternal care for excessive fetal growth, unspecified trimester, fetus 2
## 20219 Maternal care for excessive fetal growth, unspecified trimester, fetus 3
## 20220 Maternal care for excessive fetal growth, unspecified trimester, fetus 4
## 20221 Maternal care for excessive fetal growth, unspecified trimester, fetus 5
## 20222 Maternal care for excessive fetal growth, unspecified trimester, other fetus
## 20223 Maternal care for excessive fetal growth, first trimester, not applicable or unspecified
## 20224 Maternal care for excessive fetal growth, first trimester, fetus 1
## 20225 Maternal care for excessive fetal growth, first trimester, fetus 2
## 20226 Maternal care for excessive fetal growth, first trimester, fetus 3
## 20227 Maternal care for excessive fetal growth, first trimester, fetus 4
## 20228 Maternal care for excessive fetal growth, first trimester, fetus 5
## 20229 Maternal care for excessive fetal growth, first trimester, other fetus
## 20230 Maternal care for excessive fetal growth, second trimester, not applicable or unspecified
## 20231 Maternal care for excessive fetal growth, second trimester, fetus 1
## 20232 Maternal care for excessive fetal growth, second trimester, fetus 2
## 20233 Maternal care for excessive fetal growth, second trimester, fetus 3
## 20234 Maternal care for excessive fetal growth, second trimester, fetus 4
## 20235 Maternal care for excessive fetal growth, second trimester, fetus 5
## 20236 Maternal care for excessive fetal growth, second trimester, other fetus
## 20237 Maternal care for excessive fetal growth, third trimester, not applicable or unspecified
## 20238 Maternal care for excessive fetal growth, third trimester, fetus 1
## 20239 Maternal care for excessive fetal growth, third trimester, fetus 2
## 20240 Maternal care for excessive fetal growth, third trimester, fetus 3
## 20241 Maternal care for excessive fetal growth, third trimester, fetus 4
## 20242 Maternal care for excessive fetal growth, third trimester, fetus 5
## 20243 Maternal care for excessive fetal growth, third trimester, other fetus
## 20244 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, not applicable or unspecified
## 20245 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 1
## 20246 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 2
## 20247 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 3
## 20248 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 4
## 20249 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, fetus 5
## 20250 Maternal care for viable fetus in abdominal pregnancy, unspecified trimester, other fetus
## 20251 Maternal care for viable fetus in abdominal pregnancy, first trimester, not applicable or unspecified
## 20252 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 1
## 20253 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 2
## 20254 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 3
## 20255 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 4
## 20256 Maternal care for viable fetus in abdominal pregnancy, first trimester, fetus 5
## 20257 Maternal care for viable fetus in abdominal pregnancy, first trimester, other fetus
## 20258 Maternal care for viable fetus in abdominal pregnancy, second trimester, not applicable or unspecified
## 20259 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 1
## 20260 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 2
## 20261 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 3
## 20262 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 4
## 20263 Maternal care for viable fetus in abdominal pregnancy, second trimester, fetus 5
## 20264 Maternal care for viable fetus in abdominal pregnancy, second trimester, other fetus
## 20265 Maternal care for viable fetus in abdominal pregnancy, third trimester, not applicable or unspecified
## 20266 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 1
## 20267 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 2
## 20268 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 3
## 20269 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 4
## 20270 Maternal care for viable fetus in abdominal pregnancy, third trimester, fetus 5
## 20271 Maternal care for viable fetus in abdominal pregnancy, third trimester, other fetus
## 20272 Pregnancy with inconclusive fetal viability, not applicable or unspecified
## 20273 Pregnancy with inconclusive fetal viability, fetus 1
## 20274 Pregnancy with inconclusive fetal viability, fetus 2
## 20275 Pregnancy with inconclusive fetal viability, fetus 3
## 20276 Pregnancy with inconclusive fetal viability, fetus 4
## 20277 Pregnancy with inconclusive fetal viability, fetus 5
## 20278 Pregnancy with inconclusive fetal viability, other fetus
## 20279 Decreased fetal movements, second trimester, not applicable or unspecified
## 20280 Decreased fetal movements, second trimester, fetus 1
## 20281 Decreased fetal movements, second trimester, fetus 2
## 20282 Decreased fetal movements, second trimester, fetus 3
## 20283 Decreased fetal movements, second trimester, fetus 4
## 20284 Decreased fetal movements, second trimester, fetus 5
## 20285 Decreased fetal movements, second trimester, other fetus
## 20286 Decreased fetal movements, third trimester, not applicable or unspecified
## 20287 Decreased fetal movements, third trimester, fetus 1
## 20288 Decreased fetal movements, third trimester, fetus 2
## 20289 Decreased fetal movements, third trimester, fetus 3
## 20290 Decreased fetal movements, third trimester, fetus 4
## 20291 Decreased fetal movements, third trimester, fetus 5
## 20292 Decreased fetal movements, third trimester, other fetus
## 20293 Decreased fetal movements, unspecified trimester, not applicable or unspecified
## 20294 Decreased fetal movements, unspecified trimester, fetus 1
## 20295 Decreased fetal movements, unspecified trimester, fetus 2
## 20296 Decreased fetal movements, unspecified trimester, fetus 3
## 20297 Decreased fetal movements, unspecified trimester, fetus 4
## 20298 Decreased fetal movements, unspecified trimester, fetus 5
## 20299 Decreased fetal movements, unspecified trimester, other fetus
## 20300 Fetal anemia and thrombocytopenia, first trimester, not applicable or unspecified
## 20301 Fetal anemia and thrombocytopenia, first trimester, fetus 1
## 20302 Fetal anemia and thrombocytopenia, first trimester, fetus 2
## 20303 Fetal anemia and thrombocytopenia, first trimester, fetus 3
## 20304 Fetal anemia and thrombocytopenia, first trimester, fetus 4
## 20305 Fetal anemia and thrombocytopenia, first trimester, fetus 5
## 20306 Fetal anemia and thrombocytopenia, first trimester, other fetus
## 20307 Fetal anemia and thrombocytopenia, second trimester, not applicable or unspecified
## 20308 Fetal anemia and thrombocytopenia, second trimester, fetus 1
## 20309 Fetal anemia and thrombocytopenia, second trimester, fetus 2
## 20310 Fetal anemia and thrombocytopenia, second trimester, fetus 3
## 20311 Fetal anemia and thrombocytopenia, second trimester, fetus 4
## 20312 Fetal anemia and thrombocytopenia, second trimester, fetus 5
## 20313 Fetal anemia and thrombocytopenia, second trimester, other fetus
## 20314 Fetal anemia and thrombocytopenia, third trimester, not applicable or unspecified
## 20315 Fetal anemia and thrombocytopenia, third trimester, fetus 1
## 20316 Fetal anemia and thrombocytopenia, third trimester, fetus 2
## 20317 Fetal anemia and thrombocytopenia, third trimester, fetus 3
## 20318 Fetal anemia and thrombocytopenia, third trimester, fetus 4
## 20319 Fetal anemia and thrombocytopenia, third trimester, fetus 5
## 20320 Fetal anemia and thrombocytopenia, third trimester, other fetus
## 20321 Fetal anemia and thrombocytopenia, unspecified trimester, not applicable or unspecified
## 20322 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 1
## 20323 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 2
## 20324 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 3
## 20325 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 4
## 20326 Fetal anemia and thrombocytopenia, unspecified trimester, fetus 5
## 20327 Fetal anemia and thrombocytopenia, unspecified trimester, other fetus
## 20328 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, not applicable or unspecified
## 20329 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 1
## 20330 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 2
## 20331 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 3
## 20332 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 4
## 20333 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, fetus 5
## 20334 Maternal care for abnormalities of the fetal heart rate or rhythm, first trimester, other fetus
## 20335 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, not applicable or unspecified
## 20336 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 1
## 20337 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 2
## 20338 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 3
## 20339 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 4
## 20340 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, fetus 5
## 20341 Maternal care for abnormalities of the fetal heart rate or rhythm, second trimester, other fetus
## 20342 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, not applicable or unspecified
## 20343 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 1
## 20344 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 2
## 20345 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 3
## 20346 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 4
## 20347 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, fetus 5
## 20348 Maternal care for abnormalities of the fetal heart rate or rhythm, third trimester, other fetus
## 20349 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, not applicable or unspecified
## 20350 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 1
## 20351 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 2
## 20352 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 3
## 20353 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 4
## 20354 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, fetus 5
## 20355 Maternal care for abnormalities of the fetal heart rate or rhythm, unspecified trimester, other fetus
## 20356 Maternal care for other specified fetal problems, first trimester, not applicable or unspecified
## 20357 Maternal care for other specified fetal problems, first trimester, fetus 1
## 20358 Maternal care for other specified fetal problems, first trimester, fetus 2
## 20359 Maternal care for other specified fetal problems, first trimester, fetus 3
## 20360 Maternal care for other specified fetal problems, first trimester, fetus 4
## 20361 Maternal care for other specified fetal problems, first trimester, fetus 5
## 20362 Maternal care for other specified fetal problems, first trimester, other fetus
## 20363 Maternal care for other specified fetal problems, second trimester, not applicable or unspecified
## 20364 Maternal care for other specified fetal problems, second trimester, fetus 1
## 20365 Maternal care for other specified fetal problems, second trimester, fetus 2
## 20366 Maternal care for other specified fetal problems, second trimester, fetus 3
## 20367 Maternal care for other specified fetal problems, second trimester, fetus 4
## 20368 Maternal care for other specified fetal problems, second trimester, fetus 5
## 20369 Maternal care for other specified fetal problems, second trimester, other fetus
## 20370 Maternal care for other specified fetal problems, third trimester, not applicable or unspecified
## 20371 Maternal care for other specified fetal problems, third trimester, fetus 1
## 20372 Maternal care for other specified fetal problems, third trimester, fetus 2
## 20373 Maternal care for other specified fetal problems, third trimester, fetus 3
## 20374 Maternal care for other specified fetal problems, third trimester, fetus 4
## 20375 Maternal care for other specified fetal problems, third trimester, fetus 5
## 20376 Maternal care for other specified fetal problems, third trimester, other fetus
## 20377 Maternal care for other specified fetal problems, unspecified trimester, not applicable or unspecified
## 20378 Maternal care for other specified fetal problems, unspecified trimester, fetus 1
## 20379 Maternal care for other specified fetal problems, unspecified trimester, fetus 2
## 20380 Maternal care for other specified fetal problems, unspecified trimester, fetus 3
## 20381 Maternal care for other specified fetal problems, unspecified trimester, fetus 4
## 20382 Maternal care for other specified fetal problems, unspecified trimester, fetus 5
## 20383 Maternal care for other specified fetal problems, unspecified trimester, other fetus
## 20384 Maternal care for fetal problem, unspecified, unspecified trimester, not applicable or unspecified
## 20385 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 1
## 20386 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 2
## 20387 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 3
## 20388 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 4
## 20389 Maternal care for fetal problem, unspecified, unspecified trimester, fetus 5
## 20390 Maternal care for fetal problem, unspecified, unspecified trimester, other fetus
## 20391 Maternal care for fetal problem, unspecified, first trimester, not applicable or unspecified
## 20392 Maternal care for fetal problem, unspecified, first trimester, fetus 1
## 20393 Maternal care for fetal problem, unspecified, first trimester, fetus 2
## 20394 Maternal care for fetal problem, unspecified, first trimester, fetus 3
## 20395 Maternal care for fetal problem, unspecified, first trimester, fetus 4
## 20396 Maternal care for fetal problem, unspecified, first trimester, fetus 5
## 20397 Maternal care for fetal problem, unspecified, first trimester, other fetus
## 20398 Maternal care for fetal problem, unspecified, second trimester, not applicable or unspecified
## 20399 Maternal care for fetal problem, unspecified, second trimester, fetus 1
## 20400 Maternal care for fetal problem, unspecified, second trimester, fetus 2
## 20401 Maternal care for fetal problem, unspecified, second trimester, fetus 3
## 20402 Maternal care for fetal problem, unspecified, second trimester, fetus 4
## 20403 Maternal care for fetal problem, unspecified, second trimester, fetus 5
## 20404 Maternal care for fetal problem, unspecified, second trimester, other fetus
## 20405 Maternal care for fetal problem, unspecified, third trimester, not applicable or unspecified
## 20406 Maternal care for fetal problem, unspecified, third trimester, fetus 1
## 20407 Maternal care for fetal problem, unspecified, third trimester, fetus 2
## 20408 Maternal care for fetal problem, unspecified, third trimester, fetus 3
## 20409 Maternal care for fetal problem, unspecified, third trimester, fetus 4
## 20410 Maternal care for fetal problem, unspecified, third trimester, fetus 5
## 20411 Maternal care for fetal problem, unspecified, third trimester, other fetus
## 20412 Polyhydramnios, first trimester, not applicable or unspecified
## 20413 Polyhydramnios, first trimester, fetus 1
## 20414 Polyhydramnios, first trimester, fetus 2
## 20415 Polyhydramnios, first trimester, fetus 3
## 20416 Polyhydramnios, first trimester, fetus 4
## 20417 Polyhydramnios, first trimester, fetus 5
## 20418 Polyhydramnios, first trimester, other fetus
## 20419 Polyhydramnios, second trimester, not applicable or unspecified
## 20420 Polyhydramnios, second trimester, fetus 1
## 20421 Polyhydramnios, second trimester, fetus 2
## 20422 Polyhydramnios, second trimester, fetus 3
## 20423 Polyhydramnios, second trimester, fetus 4
## 20424 Polyhydramnios, second trimester, fetus 5
## 20425 Polyhydramnios, second trimester, other fetus
## 20426 Polyhydramnios, third trimester, not applicable or unspecified
## 20427 Polyhydramnios, third trimester, fetus 1
## 20428 Polyhydramnios, third trimester, fetus 2
## 20429 Polyhydramnios, third trimester, fetus 3
## 20430 Polyhydramnios, third trimester, fetus 4
## 20431 Polyhydramnios, third trimester, fetus 5
## 20432 Polyhydramnios, third trimester, other fetus
## 20433 Polyhydramnios, unspecified trimester, not applicable or unspecified
## 20434 Polyhydramnios, unspecified trimester, fetus 1
## 20435 Polyhydramnios, unspecified trimester, fetus 2
## 20436 Polyhydramnios, unspecified trimester, fetus 3
## 20437 Polyhydramnios, unspecified trimester, fetus 4
## 20438 Polyhydramnios, unspecified trimester, fetus 5
## 20439 Polyhydramnios, unspecified trimester, other fetus
## 20440 Oligohydramnios, unspecified trimester, not applicable or unspecified
## 20441 Oligohydramnios, unspecified trimester, fetus 1
## 20442 Oligohydramnios, unspecified trimester, fetus 2
## 20443 Oligohydramnios, unspecified trimester, fetus 3
## 20444 Oligohydramnios, unspecified trimester, fetus 4
## 20445 Oligohydramnios, unspecified trimester, fetus 5
## 20446 Oligohydramnios, unspecified trimester, other fetus
## 20447 Oligohydramnios, first trimester, not applicable or unspecified
## 20448 Oligohydramnios, first trimester, fetus 1
## 20449 Oligohydramnios, first trimester, fetus 2
## 20450 Oligohydramnios, first trimester, fetus 3
## 20451 Oligohydramnios, first trimester, fetus 4
## 20452 Oligohydramnios, first trimester, fetus 5
## 20453 Oligohydramnios, first trimester, other fetus
## 20454 Oligohydramnios, second trimester, not applicable or unspecified
## 20455 Oligohydramnios, second trimester, fetus 1
## 20456 Oligohydramnios, second trimester, fetus 2
## 20457 Oligohydramnios, second trimester, fetus 3
## 20458 Oligohydramnios, second trimester, fetus 4
## 20459 Oligohydramnios, second trimester, fetus 5
## 20460 Oligohydramnios, second trimester, other fetus
## 20461 Oligohydramnios, third trimester, not applicable or unspecified
## 20462 Oligohydramnios, third trimester, fetus 1
## 20463 Oligohydramnios, third trimester, fetus 2
## 20464 Oligohydramnios, third trimester, fetus 3
## 20465 Oligohydramnios, third trimester, fetus 4
## 20466 Oligohydramnios, third trimester, fetus 5
## 20467 Oligohydramnios, third trimester, other fetus
## 20468 Infection of amniotic sac and membranes, unspecified, first trimester, not applicable or unspecified
## 20469 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 1
## 20470 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 2
## 20471 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 3
## 20472 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 4
## 20473 Infection of amniotic sac and membranes, unspecified, first trimester, fetus 5
## 20474 Infection of amniotic sac and membranes, unspecified, first trimester, other fetus
## 20475 Infection of amniotic sac and membranes, unspecified, second trimester, not applicable or unspecified
## 20476 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 1
## 20477 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 2
## 20478 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 3
## 20479 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 4
## 20480 Infection of amniotic sac and membranes, unspecified, second trimester, fetus 5
## 20481 Infection of amniotic sac and membranes, unspecified, second trimester, other fetus
## 20482 Infection of amniotic sac and membranes, unspecified, third trimester, not applicable or unspecified
## 20483 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 1
## 20484 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 2
## 20485 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 3
## 20486 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 4
## 20487 Infection of amniotic sac and membranes, unspecified, third trimester, fetus 5
## 20488 Infection of amniotic sac and membranes, unspecified, third trimester, other fetus
## 20489 Infection of amniotic sac and membranes, unspecified, unspecified trimester, not applicable or unspecified
## 20490 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 1
## 20491 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 2
## 20492 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 3
## 20493 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 4
## 20494 Infection of amniotic sac and membranes, unspecified, unspecified trimester, fetus 5
## 20495 Infection of amniotic sac and membranes, unspecified, unspecified trimester, other fetus
## 20496 Chorioamnionitis, first trimester, not applicable or unspecified
## 20497 Chorioamnionitis, first trimester, fetus 1
## 20498 Chorioamnionitis, first trimester, fetus 2
## 20499 Chorioamnionitis, first trimester, fetus 3
## 20500 Chorioamnionitis, first trimester, fetus 4
## 20501 Chorioamnionitis, first trimester, fetus 5
## 20502 Chorioamnionitis, first trimester, other fetus
## 20503 Chorioamnionitis, second trimester, not applicable or unspecified
## 20504 Chorioamnionitis, second trimester, fetus 1
## 20505 Chorioamnionitis, second trimester, fetus 2
## 20506 Chorioamnionitis, second trimester, fetus 3
## 20507 Chorioamnionitis, second trimester, fetus 4
## 20508 Chorioamnionitis, second trimester, fetus 5
## 20509 Chorioamnionitis, second trimester, other fetus
## 20510 Chorioamnionitis, third trimester, not applicable or unspecified
## 20511 Chorioamnionitis, third trimester, fetus 1
## 20512 Chorioamnionitis, third trimester, fetus 2
## 20513 Chorioamnionitis, third trimester, fetus 3
## 20514 Chorioamnionitis, third trimester, fetus 4
## 20515 Chorioamnionitis, third trimester, fetus 5
## 20516 Chorioamnionitis, third trimester, other fetus
## 20517 Chorioamnionitis, unspecified trimester, not applicable or unspecified
## 20518 Chorioamnionitis, unspecified trimester, fetus 1
## 20519 Chorioamnionitis, unspecified trimester, fetus 2
## 20520 Chorioamnionitis, unspecified trimester, fetus 3
## 20521 Chorioamnionitis, unspecified trimester, fetus 4
## 20522 Chorioamnionitis, unspecified trimester, fetus 5
## 20523 Chorioamnionitis, unspecified trimester, other fetus
## 20524 Placentitis, first trimester, not applicable or unspecified
## 20525 Placentitis, first trimester, fetus 1
## 20526 Placentitis, first trimester, fetus 2
## 20527 Placentitis, first trimester, fetus 3
## 20528 Placentitis, first trimester, fetus 4
## 20529 Placentitis, first trimester, fetus 5
## 20530 Placentitis, first trimester, other fetus
## 20531 Placentitis, second trimester, not applicable or unspecified
## 20532 Placentitis, second trimester, fetus 1
## 20533 Placentitis, second trimester, fetus 2
## 20534 Placentitis, second trimester, fetus 3
## 20535 Placentitis, second trimester, fetus 4
## 20536 Placentitis, second trimester, fetus 5
## 20537 Placentitis, second trimester, other fetus
## 20538 Placentitis, third trimester, not applicable or unspecified
## 20539 Placentitis, third trimester, fetus 1
## 20540 Placentitis, third trimester, fetus 2
## 20541 Placentitis, third trimester, fetus 3
## 20542 Placentitis, third trimester, fetus 4
## 20543 Placentitis, third trimester, fetus 5
## 20544 Placentitis, third trimester, other fetus
## 20545 Placentitis, unspecified trimester, not applicable or unspecified
## 20546 Placentitis, unspecified trimester, fetus 1
## 20547 Placentitis, unspecified trimester, fetus 2
## 20548 Placentitis, unspecified trimester, fetus 3
## 20549 Placentitis, unspecified trimester, fetus 4
## 20550 Placentitis, unspecified trimester, fetus 5
## 20551 Placentitis, unspecified trimester, other fetus
## 20552 Other specified disorders of amniotic fluid and membranes, first trimester, not applicable or unspecified
## 20553 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 1
## 20554 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 2
## 20555 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 3
## 20556 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 4
## 20557 Other specified disorders of amniotic fluid and membranes, first trimester, fetus 5
## 20558 Other specified disorders of amniotic fluid and membranes, first trimester, other fetus
## 20559 Other specified disorders of amniotic fluid and membranes, second trimester, not applicable or unspecified
## 20560 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 1
## 20561 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 2
## 20562 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 3
## 20563 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 4
## 20564 Other specified disorders of amniotic fluid and membranes, second trimester, fetus 5
## 20565 Other specified disorders of amniotic fluid and membranes, second trimester, other fetus
## 20566 Other specified disorders of amniotic fluid and membranes, third trimester, not applicable or unspecified
## 20567 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 1
## 20568 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 2
## 20569 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 3
## 20570 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 4
## 20571 Other specified disorders of amniotic fluid and membranes, third trimester, fetus 5
## 20572 Other specified disorders of amniotic fluid and membranes, third trimester, other fetus
## 20573 Other specified disorders of amniotic fluid and membranes, unspecified trimester, not applicable or unspecified
## 20574 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 1
## 20575 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 2
## 20576 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 3
## 20577 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 4
## 20578 Other specified disorders of amniotic fluid and membranes, unspecified trimester, fetus 5
## 20579 Other specified disorders of amniotic fluid and membranes, unspecified trimester, other fetus
## 20580 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, not applicable or unspecified
## 20581 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 1
## 20582 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 2
## 20583 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 3
## 20584 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 4
## 20585 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, fetus 5
## 20586 Disorder of amniotic fluid and membranes, unspecified, unspecified trimester, other fetus
## 20587 Disorder of amniotic fluid and membranes, unspecified, first trimester, not applicable or unspecified
## 20588 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 1
## 20589 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 2
## 20590 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 3
## 20591 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 4
## 20592 Disorder of amniotic fluid and membranes, unspecified, first trimester, fetus 5
## 20593 Disorder of amniotic fluid and membranes, unspecified, first trimester, other fetus
## 20594 Disorder of amniotic fluid and membranes, unspecified, second trimester, not applicable or unspecified
## 20595 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 1
## 20596 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 2
## 20597 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 3
## 20598 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 4
## 20599 Disorder of amniotic fluid and membranes, unspecified, second trimester, fetus 5
## 20600 Disorder of amniotic fluid and membranes, unspecified, second trimester, other fetus
## 20601 Disorder of amniotic fluid and membranes, unspecified, third trimester, not applicable or unspecified
## 20602 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 1
## 20603 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 2
## 20604 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 3
## 20605 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 4
## 20606 Disorder of amniotic fluid and membranes, unspecified, third trimester, fetus 5
## 20607 Disorder of amniotic fluid and membranes, unspecified, third trimester, other fetus
## 20608 Premature rupture of membranes, onset of labor within 24 hours of rupture, unspecified weeks of gestation
## 20609 Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, first trimester
## 20610 Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, second trimester
## 20611 Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, third trimester
## 20612 Preterm premature rupture of membranes, onset of labor within 24 hours of rupture, unspecified trimester
## 20613 Full-term premature rupture of membranes, onset of labor within 24 hours of rupture
## 20614 Premature rupture of membranes, onset of labor more than 24 hours following rupture, unspecified weeks of gestation
## 20615 Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, first trimester
## 20616 Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, second trimester
## 20617 Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, third trimester
## 20618 Preterm premature rupture of membranes, onset of labor more than 24 hours following rupture, unspecified trimester
## 20619 Full-term premature rupture of membranes, onset of labor more than 24 hours following rupture
## 20620 Premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, unspecified weeks of gestation
## 20621 Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, first trimester
## 20622 Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, second trimester
## 20623 Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, third trimester
## 20624 Preterm premature rupture of membranes, unspecified as to length of time between rupture and onset of labor, unspecified trimester
## 20625 Full-term premature rupture of membranes, unspecified as to length of time between rupture and onset of labor
## 20626 Fetomaternal placental transfusion syndrome, first trimester
## 20627 Fetomaternal placental transfusion syndrome, second trimester
## 20628 Fetomaternal placental transfusion syndrome, third trimester
## 20629 Fetomaternal placental transfusion syndrome, unspecified trimester
## 20630 Fetus-to-fetus placental transfusion syndrome, first trimester
## 20631 Fetus-to-fetus placental transfusion syndrome, second trimester
## 20632 Fetus-to-fetus placental transfusion syndrome, third trimester
## 20633 Fetus-to-fetus placental transfusion syndrome, unspecified trimester
## 20634 Malformation of placenta, unspecified, first trimester
## 20635 Malformation of placenta, unspecified, second trimester
## 20636 Malformation of placenta, unspecified, third trimester
## 20637 Malformation of placenta, unspecified, unspecified trimester
## 20638 Circumvallate placenta, first trimester
## 20639 Circumvallate placenta, second trimester
## 20640 Circumvallate placenta, third trimester
## 20641 Circumvallate placenta, unspecified trimester
## 20642 Velamentous insertion of umbilical cord, first trimester
## 20643 Velamentous insertion of umbilical cord, second trimester
## 20644 Velamentous insertion of umbilical cord, third trimester
## 20645 Velamentous insertion of umbilical cord, unspecified trimester
## 20646 Other malformation of placenta, first trimester
## 20647 Other malformation of placenta, second trimester
## 20648 Other malformation of placenta, third trimester
## 20649 Other malformation of placenta, unspecified trimester
## 20650 Placenta accreta, first trimester
## 20651 Placenta accreta, second trimester
## 20652 Placenta accreta, third trimester
## 20653 Placenta accreta, unspecified trimester
## 20654 Placenta increta, first trimester
## 20655 Placenta increta, second trimester
## 20656 Placenta increta, third trimester
## 20657 Placenta increta, unspecified trimester
## 20658 Placenta percreta, first trimester
## 20659 Placenta percreta, second trimester
## 20660 Placenta percreta, third trimester
## 20661 Placenta percreta, unspecified trimester
## 20662 Placental infarction, first trimester
## 20663 Placental infarction, second trimester
## 20664 Placental infarction, third trimester
## 20665 Placental infarction, unspecified trimester
## 20666 Other placental disorders, first trimester
## 20667 Other placental disorders, second trimester
## 20668 Other placental disorders, third trimester
## 20669 Other placental disorders, unspecified trimester
## 20670 Unspecified placental disorder, unspecified trimester
## 20671 Unspecified placental disorder, first trimester
## 20672 Unspecified placental disorder, second trimester
## 20673 Unspecified placental disorder, third trimester
## 20674 Complete placenta previa NOS or without hemorrhage, unspecified trimester
## 20675 Complete placenta previa NOS or without hemorrhage, first trimester
## 20676 Complete placenta previa NOS or without hemorrhage, second trimester
## 20677 Complete placenta previa NOS or without hemorrhage, third trimester
## 20678 Complete placenta previa with hemorrhage, unspecified trimester
## 20679 Complete placenta previa with hemorrhage, first trimester
## 20680 Complete placenta previa with hemorrhage, second trimester
## 20681 Complete placenta previa with hemorrhage, third trimester
## 20682 Partial placenta previa NOS or without hemorrhage, unspecified trimester
## 20683 Partial placenta previa NOS or without hemorrhage, first trimester
## 20684 Partial placenta previa NOS or without hemorrhage, second trimester
## 20685 Partial placenta previa NOS or without hemorrhage, third trimester
## 20686 Partial placenta previa with hemorrhage, unspecified trimester
## 20687 Partial placenta previa with hemorrhage, first trimester
## 20688 Partial placenta previa with hemorrhage, second trimester
## 20689 Partial placenta previa with hemorrhage, third trimester
## 20690 Low lying placenta NOS or without hemorrhage, unspecified trimester
## 20691 Low lying placenta NOS or without hemorrhage, first trimester
## 20692 Low lying placenta NOS or without hemorrhage, second trimester
## 20693 Low lying placenta NOS or without hemorrhage, third trimester
## 20694 Low lying placenta with hemorrhage, unspecified trimester
## 20695 Low lying placenta with hemorrhage, first trimester
## 20696 Low lying placenta with hemorrhage, second trimester
## 20697 Low lying placenta with hemorrhage, third trimester
## 20698 Premature separation of placenta with coagulation defect, unspecified, first trimester
## 20699 Premature separation of placenta with coagulation defect, unspecified, second trimester
## 20700 Premature separation of placenta with coagulation defect, unspecified, third trimester
## 20701 Premature separation of placenta with coagulation defect, unspecified, unspecified trimester
## 20702 Premature separation of placenta with afibrinogenemia, first trimester
## 20703 Premature separation of placenta with afibrinogenemia, second trimester
## 20704 Premature separation of placenta with afibrinogenemia, third trimester
## 20705 Premature separation of placenta with afibrinogenemia, unspecified trimester
## 20706 Premature separation of placenta with disseminated intravascular coagulation, first trimester
## 20707 Premature separation of placenta with disseminated intravascular coagulation, second trimester
## 20708 Premature separation of placenta with disseminated intravascular coagulation, third trimester
## 20709 Premature separation of placenta with disseminated intravascular coagulation, unspecified trimester
## 20710 Premature separation of placenta with other coagulation defect, first trimester
## 20711 Premature separation of placenta with other coagulation defect, second trimester
## 20712 Premature separation of placenta with other coagulation defect, third trimester
## 20713 Premature separation of placenta with other coagulation defect, unspecified trimester
## 20714 Other premature separation of placenta, first trimester
## 20715 Other premature separation of placenta, second trimester
## 20716 Other premature separation of placenta, third trimester
## 20717 Other premature separation of placenta, unspecified trimester
## 20718 Premature separation of placenta, unspecified, unspecified trimester
## 20719 Premature separation of placenta, unspecified, first trimester
## 20720 Premature separation of placenta, unspecified, second trimester
## 20721 Premature separation of placenta, unspecified, third trimester
## 20722 Antepartum hemorrhage with coagulation defect, unspecified, first trimester
## 20723 Antepartum hemorrhage with coagulation defect, unspecified, second trimester
## 20724 Antepartum hemorrhage with coagulation defect, unspecified, third trimester
## 20725 Antepartum hemorrhage with coagulation defect, unspecified, unspecified trimester
## 20726 Antepartum hemorrhage with afibrinogenemia, first trimester
## 20727 Antepartum hemorrhage with afibrinogenemia, second trimester
## 20728 Antepartum hemorrhage with afibrinogenemia, third trimester
## 20729 Antepartum hemorrhage with afibrinogenemia, unspecified trimester
## 20730 Antepartum hemorrhage with disseminated intravascular coagulation, first trimester
## 20731 Antepartum hemorrhage with disseminated intravascular coagulation, second trimester
## 20732 Antepartum hemorrhage with disseminated intravascular coagulation, third trimester
## 20733 Antepartum hemorrhage with disseminated intravascular coagulation, unspecified trimester
## 20734 Antepartum hemorrhage with other coagulation defect, first trimester
## 20735 Antepartum hemorrhage with other coagulation defect, second trimester
## 20736 Antepartum hemorrhage with other coagulation defect, third trimester
## 20737 Antepartum hemorrhage with other coagulation defect, unspecified trimester
## 20738 Other antepartum hemorrhage, first trimester
## 20739 Other antepartum hemorrhage, second trimester
## 20740 Other antepartum hemorrhage, third trimester
## 20741 Other antepartum hemorrhage, unspecified trimester
## 20742 Antepartum hemorrhage, unspecified, unspecified trimester
## 20743 Antepartum hemorrhage, unspecified, first trimester
## 20744 Antepartum hemorrhage, unspecified, second trimester
## 20745 Antepartum hemorrhage, unspecified, third trimester
## 20746 False labor before 37 completed weeks of gestation, unspecified trimester
## 20747 False labor before 37 completed weeks of gestation, second trimester
## 20748 False labor before 37 completed weeks of gestation, third trimester
## 20749 False labor at or after 37 completed weeks of gestation
## 20750 False labor, unspecified
## 20751 Post-term pregnancy
## 20752 Prolonged pregnancy
## 20753 Preterm labor without delivery, unspecified trimester
## 20754 Preterm labor without delivery, second trimester
## 20755 Preterm labor without delivery, third trimester
## 20756 Preterm labor with preterm delivery, unspecified trimester, not applicable or unspecified
## 20757 Preterm labor with preterm delivery, unspecified trimester, fetus 1
## 20758 Preterm labor with preterm delivery, unspecified trimester, fetus 2
## 20759 Preterm labor with preterm delivery, unspecified trimester, fetus 3
## 20760 Preterm labor with preterm delivery, unspecified trimester, fetus 4
## 20761 Preterm labor with preterm delivery, unspecified trimester, fetus 5
## 20762 Preterm labor with preterm delivery, unspecified trimester, other fetus
## 20763 Preterm labor second trimester with preterm delivery second trimester, not applicable or unspecified
## 20764 Preterm labor second trimester with preterm delivery second trimester, fetus 1
## 20765 Preterm labor second trimester with preterm delivery second trimester, fetus 2
## 20766 Preterm labor second trimester with preterm delivery second trimester, fetus 3
## 20767 Preterm labor second trimester with preterm delivery second trimester, fetus 4
## 20768 Preterm labor second trimester with preterm delivery second trimester, fetus 5
## 20769 Preterm labor second trimester with preterm delivery second trimester, other fetus
## 20770 Preterm labor second trimester with preterm delivery third trimester, not applicable or unspecified
## 20771 Preterm labor second trimester with preterm delivery third trimester, fetus 1
## 20772 Preterm labor second trimester with preterm delivery third trimester, fetus 2
## 20773 Preterm labor second trimester with preterm delivery third trimester, fetus 3
## 20774 Preterm labor second trimester with preterm delivery third trimester, fetus 4
## 20775 Preterm labor second trimester with preterm delivery third trimester, fetus 5
## 20776 Preterm labor second trimester with preterm delivery third trimester, other fetus
## 20777 Preterm labor third trimester with preterm delivery third trimester, not applicable or unspecified
## 20778 Preterm labor third trimester with preterm delivery third trimester, fetus 1
## 20779 Preterm labor third trimester with preterm delivery third trimester, fetus 2
## 20780 Preterm labor third trimester with preterm delivery third trimester, fetus 3
## 20781 Preterm labor third trimester with preterm delivery third trimester, fetus 4
## 20782 Preterm labor third trimester with preterm delivery third trimester, fetus 5
## 20783 Preterm labor third trimester with preterm delivery third trimester, other fetus
## 20784 Term delivery with preterm labor, unspecified trimester, not applicable or unspecified
## 20785 Term delivery with preterm labor, unspecified trimester, fetus 1
## 20786 Term delivery with preterm labor, unspecified trimester, fetus 2
## 20787 Term delivery with preterm labor, unspecified trimester, fetus 3
## 20788 Term delivery with preterm labor, unspecified trimester, fetus 4
## 20789 Term delivery with preterm labor, unspecified trimester, fetus 5
## 20790 Term delivery with preterm labor, unspecified trimester, other fetus
## 20791 Term delivery with preterm labor, second trimester, not applicable or unspecified
## 20792 Term delivery with preterm labor, second trimester, fetus 1
## 20793 Term delivery with preterm labor, second trimester, fetus 2
## 20794 Term delivery with preterm labor, second trimester, fetus 3
## 20795 Term delivery with preterm labor, second trimester, fetus 4
## 20796 Term delivery with preterm labor, second trimester, fetus 5
## 20797 Term delivery with preterm labor, second trimester, other fetus
## 20798 Term delivery with preterm labor, third trimester, not applicable or unspecified
## 20799 Term delivery with preterm labor, third trimester, fetus 1
## 20800 Term delivery with preterm labor, third trimester, fetus 2
## 20801 Term delivery with preterm labor, third trimester, fetus 3
## 20802 Term delivery with preterm labor, third trimester, fetus 4
## 20803 Term delivery with preterm labor, third trimester, fetus 5
## 20804 Term delivery with preterm labor, third trimester, other fetus
## 20805 Failed medical induction of labor
## 20806 Failed instrumental induction of labor
## 20807 Other failed induction of labor
## 20808 Failed induction of labor, unspecified
## 20809 Primary inadequate contractions
## 20810 Secondary uterine inertia
## 20811 Other uterine inertia
## 20812 Precipitate labor
## 20813 Hypertonic, incoordinate, and prolonged uterine contractions
## 20814 Other abnormalities of forces of labor
## 20815 Abnormality of forces of labor, unspecified
## 20816 Prolonged first stage (of labor)
## 20817 Prolonged second stage (of labor)
## 20818 Delayed delivery of second twin, triplet, etc.
## 20819 Long labor, unspecified
## 20820 Obstructed labor due to incomplete rotation of fetal head, not applicable or unspecified
## 20821 Obstructed labor due to incomplete rotation of fetal head, fetus 1
## 20822 Obstructed labor due to incomplete rotation of fetal head, fetus 2
## 20823 Obstructed labor due to incomplete rotation of fetal head, fetus 3
## 20824 Obstructed labor due to incomplete rotation of fetal head, fetus 4
## 20825 Obstructed labor due to incomplete rotation of fetal head, fetus 5
## 20826 Obstructed labor due to incomplete rotation of fetal head, other fetus
## 20827 Obstructed labor due to breech presentation, not applicable or unspecified
## 20828 Obstructed labor due to breech presentation, fetus 1
## 20829 Obstructed labor due to breech presentation, fetus 2
## 20830 Obstructed labor due to breech presentation, fetus 3
## 20831 Obstructed labor due to breech presentation, fetus 4
## 20832 Obstructed labor due to breech presentation, fetus 5
## 20833 Obstructed labor due to breech presentation, other fetus
## 20834 Obstructed labor due to face presentation, not applicable or unspecified
## 20835 Obstructed labor due to face presentation, fetus 1
## 20836 Obstructed labor due to face presentation, fetus 2
## 20837 Obstructed labor due to face presentation, fetus 3
## 20838 Obstructed labor due to face presentation, fetus 4
## 20839 Obstructed labor due to face presentation, fetus 5
## 20840 Obstructed labor due to face presentation, other fetus
## 20841 Obstructed labor due to brow presentation, not applicable or unspecified
## 20842 Obstructed labor due to brow presentation, fetus 1
## 20843 Obstructed labor due to brow presentation, fetus 2
## 20844 Obstructed labor due to brow presentation, fetus 3
## 20845 Obstructed labor due to brow presentation, fetus 4
## 20846 Obstructed labor due to brow presentation, fetus 5
## 20847 Obstructed labor due to brow presentation, other fetus
## 20848 Obstructed labor due to shoulder presentation, not applicable or unspecified
## 20849 Obstructed labor due to shoulder presentation, fetus 1
## 20850 Obstructed labor due to shoulder presentation, fetus 2
## 20851 Obstructed labor due to shoulder presentation, fetus 3
## 20852 Obstructed labor due to shoulder presentation, fetus 4
## 20853 Obstructed labor due to shoulder presentation, fetus 5
## 20854 Obstructed labor due to shoulder presentation, other fetus
## 20855 Obstructed labor due to compound presentation, not applicable or unspecified
## 20856 Obstructed labor due to compound presentation, fetus 1
## 20857 Obstructed labor due to compound presentation, fetus 2
## 20858 Obstructed labor due to compound presentation, fetus 3
## 20859 Obstructed labor due to compound presentation, fetus 4
## 20860 Obstructed labor due to compound presentation, fetus 5
## 20861 Obstructed labor due to compound presentation, other fetus
## 20862 Obstructed labor due to other malposition and malpresentation, not applicable or unspecified
## 20863 Obstructed labor due to other malposition and malpresentation, fetus 1
## 20864 Obstructed labor due to other malposition and malpresentation, fetus 2
## 20865 Obstructed labor due to other malposition and malpresentation, fetus 3
## 20866 Obstructed labor due to other malposition and malpresentation, fetus 4
## 20867 Obstructed labor due to other malposition and malpresentation, fetus 5
## 20868 Obstructed labor due to other malposition and malpresentation, other fetus
## 20869 Obstructed labor due to malposition and malpresentation, unspecified, not applicable or unspecified
## 20870 Obstructed labor due to malposition and malpresentation, unspecified, fetus 1
## 20871 Obstructed labor due to malposition and malpresentation, unspecified, fetus 2
## 20872 Obstructed labor due to malposition and malpresentation, unspecified, fetus 3
## 20873 Obstructed labor due to malposition and malpresentation, unspecified, fetus 4
## 20874 Obstructed labor due to malposition and malpresentation, unspecified, fetus 5
## 20875 Obstructed labor due to malposition and malpresentation, unspecified, other fetus
## 20876 Obstructed labor due to deformed pelvis
## 20877 Obstructed labor due to generally contracted pelvis
## 20878 Obstructed labor due to pelvic inlet contraction
## 20879 Obstructed labor due to pelvic outlet and mid-cavity contraction
## 20880 Obstructed labor due to fetopelvic disproportion, unspecified
## 20881 Obstructed labor due to abnormality of maternal pelvic organs
## 20882 Obstructed labor due to other maternal pelvic abnormalities
## 20883 Obstructed labor due to maternal pelvic abnormality, unspecified
## 20884 Obstructed labor due to shoulder dystocia
## 20885 Obstructed labor due to locked twins
## 20886 Obstructed labor due to unusually large fetus
## 20887 Obstructed labor due to other abnormalities of fetus
## 20888 Failed trial of labor, unspecified
## 20889 Failed attempted vaginal birth after previous cesarean delivery
## 20890 Attempted application of vacuum extractor and forceps
## 20891 Obstructed labor due to other multiple fetuses
## 20892 Other specified obstructed labor
## 20893 Obstructed labor, unspecified
## 20894 Intrapartum hemorrhage with coagulation defect
## 20895 Other intrapartum hemorrhage
## 20896 Intrapartum hemorrhage, unspecified
## 20897 Labor and delivery complicated by abnormality of fetal acid-base balance
## 20898 Labor and delivery complicated by prolapse of cord, not applicable or unspecified
## 20899 Labor and delivery complicated by prolapse of cord, fetus 1
## 20900 Labor and delivery complicated by prolapse of cord, fetus 2
## 20901 Labor and delivery complicated by prolapse of cord, fetus 3
## 20902 Labor and delivery complicated by prolapse of cord, fetus 4
## 20903 Labor and delivery complicated by prolapse of cord, fetus 5
## 20904 Labor and delivery complicated by prolapse of cord, other fetus
## 20905 Labor and delivery complicated by cord around neck, with compression, not applicable or unspecified
## 20906 Labor and delivery complicated by cord around neck, with compression, fetus 1
## 20907 Labor and delivery complicated by cord around neck, with compression, fetus 2
## 20908 Labor and delivery complicated by cord around neck, with compression, fetus 3
## 20909 Labor and delivery complicated by cord around neck, with compression, fetus 4
## 20910 Labor and delivery complicated by cord around neck, with compression, fetus 5
## 20911 Labor and delivery complicated by cord around neck, with compression, other fetus
## 20912 Labor and delivery complicated by other cord entanglement, with compression, not applicable or unspecified
## 20913 Labor and delivery complicated by other cord entanglement, with compression, fetus 1
## 20914 Labor and delivery complicated by other cord entanglement, with compression, fetus 2
## 20915 Labor and delivery complicated by other cord entanglement, with compression, fetus 3
## 20916 Labor and delivery complicated by other cord entanglement, with compression, fetus 4
## 20917 Labor and delivery complicated by other cord entanglement, with compression, fetus 5
## 20918 Labor and delivery complicated by other cord entanglement, with compression, other fetus
## 20919 Labor and delivery complicated by short cord, not applicable or unspecified
## 20920 Labor and delivery complicated by short cord, fetus 1
## 20921 Labor and delivery complicated by short cord, fetus 2
## 20922 Labor and delivery complicated by short cord, fetus 3
## 20923 Labor and delivery complicated by short cord, fetus 4
## 20924 Labor and delivery complicated by short cord, fetus 5
## 20925 Labor and delivery complicated by short cord, other fetus
## 20926 Labor and delivery complicated by vasa previa, not applicable or unspecified
## 20927 Labor and delivery complicated by vasa previa, fetus 1
## 20928 Labor and delivery complicated by vasa previa, fetus 2
## 20929 Labor and delivery complicated by vasa previa, fetus 3
## 20930 Labor and delivery complicated by vasa previa, fetus 4
## 20931 Labor and delivery complicated by vasa previa, fetus 5
## 20932 Labor and delivery complicated by vasa previa, other fetus
## 20933 Labor and delivery complicated by vascular lesion of cord, not applicable or unspecified
## 20934 Labor and delivery complicated by vascular lesion of cord, fetus 1
## 20935 Labor and delivery complicated by vascular lesion of cord, fetus 2
## 20936 Labor and delivery complicated by vascular lesion of cord, fetus 3
## 20937 Labor and delivery complicated by vascular lesion of cord, fetus 4
## 20938 Labor and delivery complicated by vascular lesion of cord, fetus 5
## 20939 Labor and delivery complicated by vascular lesion of cord, other fetus
## 20940 Labor and delivery complicated by cord around neck, without compression, not applicable or unspecified
## 20941 Labor and delivery complicated by cord around neck, without compression, fetus 1
## 20942 Labor and delivery complicated by cord around neck, without compression, fetus 2
## 20943 Labor and delivery complicated by cord around neck, without compression, fetus 3
## 20944 Labor and delivery complicated by cord around neck, without compression, fetus 4
## 20945 Labor and delivery complicated by cord around neck, without compression, fetus 5
## 20946 Labor and delivery complicated by cord around neck, without compression, other fetus
## 20947 Labor and delivery complicated by other cord entanglement, without compression, not applicable or unspecified
## 20948 Labor and delivery complicated by other cord entanglement, without compression, fetus 1
## 20949 Labor and delivery complicated by other cord entanglement, without compression, fetus 2
## 20950 Labor and delivery complicated by other cord entanglement, without compression, fetus 3
## 20951 Labor and delivery complicated by other cord entanglement, without compression, fetus 4
## 20952 Labor and delivery complicated by other cord entanglement, without compression, fetus 5
## 20953 Labor and delivery complicated by other cord entanglement, without compression, other fetus
## 20954 Labor and delivery complicated by other cord complications, not applicable or unspecified
## 20955 Labor and delivery complicated by other cord complications, fetus 1
## 20956 Labor and delivery complicated by other cord complications, fetus 2
## 20957 Labor and delivery complicated by other cord complications, fetus 3
## 20958 Labor and delivery complicated by other cord complications, fetus 4
## 20959 Labor and delivery complicated by other cord complications, fetus 5
## 20960 Labor and delivery complicated by other cord complications, other fetus
## 20961 Labor and delivery complicated by cord complication, unspecified, not applicable or unspecified
## 20962 Labor and delivery complicated by cord complication, unspecified, fetus 1
## 20963 Labor and delivery complicated by cord complication, unspecified, fetus 2
## 20964 Labor and delivery complicated by cord complication, unspecified, fetus 3
## 20965 Labor and delivery complicated by cord complication, unspecified, fetus 4
## 20966 Labor and delivery complicated by cord complication, unspecified, fetus 5
## 20967 Labor and delivery complicated by cord complication, unspecified, other fetus
## 20968 First degree perineal laceration during delivery
## 20969 Second degree perineal laceration during delivery
## 20970 Third degree perineal laceration during delivery, unspecified
## 20971 Third degree perineal laceration during delivery, IIIa
## 20972 Third degree perineal laceration during delivery, IIIb
## 20973 Third degree perineal laceration during delivery, IIIc
## 20974 Fourth degree perineal laceration during delivery
## 20975 Anal sphincter tear complicating delivery, not associated with third degree laceration
## 20976 Perineal laceration during delivery, unspecified
## 20977 Rupture of uterus before onset of labor, unspecified trimester
## 20978 Rupture of uterus before onset of labor, second trimester
## 20979 Rupture of uterus before onset of labor, third trimester
## 20980 Rupture of uterus during labor
## 20981 Postpartum inversion of uterus
## 20982 Obstetric laceration of cervix
## 20983 Obstetric high vaginal laceration alone
## 20984 Other obstetric injury to pelvic organs
## 20985 Obstetric damage to pelvic joints and ligaments
## 20986 Obstetric hematoma of pelvis
## 20987 Laceration of uterus, not elsewhere classified
## 20988 Other specified trauma to perineum and vulva
## 20989 Other specified obstetric trauma
## 20990 Obstetric trauma, unspecified
## 20991 Third-stage hemorrhage
## 20992 Other immediate postpartum hemorrhage
## 20993 Delayed and secondary postpartum hemorrhage
## 20994 Postpartum coagulation defects
## 20995 Retained placenta without hemorrhage
## 20996 Retained portions of placenta and membranes, without hemorrhage
## 20997 Aspiration pneumonitis due to anesthesia during labor and delivery
## 20998 Other pulmonary complications of anesthesia during labor and delivery
## 20999 Cardiac complications of anesthesia during labor and delivery
## 21000 Central nervous system complications of anesthesia during labor and delivery
## 21001 Toxic reaction to local anesthesia during labor and delivery
## 21002 Spinal and epidural anesthesia-induced headache during labor and delivery
## 21003 Other complications of spinal and epidural anesthesia during labor and delivery
## 21004 Failed or difficult intubation for anesthesia during labor and delivery
## 21005 Other complications of anesthesia during labor and delivery
## 21006 Complication of anesthesia during labor and delivery, unspecified
## 21007 Maternal distress during labor and delivery
## 21008 Shock during or following labor and delivery
## 21009 Pyrexia during labor, not elsewhere classified
## 21010 Other infection during labor
## 21011 Other complications of obstetric surgery and procedures
## 21012 Delayed delivery after artificial rupture of membranes
## 21013 Maternal exhaustion complicating labor and delivery
## 21014 Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section
## 21015 Other specified complications of labor and delivery
## 21016 Complication of labor and delivery, unspecified
## 21017 Abnormality in fetal heart rate and rhythm complicating labor and delivery
## 21018 Labor and delivery complicated by meconium in amniotic fluid
## 21019 Fetal stress in labor or delivery due to drug administration
## 21020 Labor and delivery complicated by other evidence of fetal stress
## 21021 Labor and delivery complicated by fetal stress, unspecified
## 21022 Encounter for full-term uncomplicated delivery
## 21023 Encounter for cesarean delivery without indication
## 21024 Puerperal sepsis
## 21025 Infection of obstetric surgical wound, unspecified
## 21026 Infection of obstetric surgical wound, superficial incisional site
## 21027 Infection of obstetric surgical wound, deep incisional site
## 21028 Infection of obstetric surgical wound, organ and space site
## 21029 Sepsis following an obstetrical procedure
## 21030 Infection of obstetric surgical wound, other surgical site
## 21031 Cervicitis following delivery
## 21032 Endometritis following delivery
## 21033 Vaginitis following delivery
## 21034 Other infection of genital tract following delivery
## 21035 Urinary tract infection following delivery, unspecified
## 21036 Infection of kidney following delivery
## 21037 Infection of bladder following delivery
## 21038 Other urinary tract infection following delivery
## 21039 Pyrexia of unknown origin following delivery
## 21040 Puerperal septic thrombophlebitis
## 21041 Other specified puerperal infections
## 21042 Superficial thrombophlebitis in the puerperium
## 21043 Deep phlebothrombosis in the puerperium
## 21044 Hemorrhoids in the puerperium
## 21045 Cerebral venous thrombosis in the puerperium
## 21046 Varicose veins of lower extremity in the puerperium
## 21047 Other venous complications in the puerperium
## 21048 Venous complication in the puerperium, unspecified
## 21049 Air embolism in pregnancy, first trimester
## 21050 Air embolism in pregnancy, second trimester
## 21051 Air embolism in pregnancy, third trimester
## 21052 Air embolism in pregnancy, unspecified trimester
## 21053 Air embolism in childbirth
## 21054 Air embolism in the puerperium
## 21055 Amniotic fluid embolism in pregnancy, first trimester
## 21056 Amniotic fluid embolism in pregnancy, second trimester
## 21057 Amniotic fluid embolism in pregnancy, third trimester
## 21058 Amniotic fluid embolism in pregnancy, unspecified trimester
## 21059 Amniotic fluid embolism in childbirth
## 21060 Amniotic fluid embolism in the puerperium
## 21061 Thromboembolism in pregnancy, first trimester
## 21062 Thromboembolism in pregnancy, second trimester
## 21063 Thromboembolism in pregnancy, third trimester
## 21064 Thromboembolism in pregnancy, unspecified trimester
## 21065 Thromboembolism in childbirth
## 21066 Thromboembolism in the puerperium
## 21067 Pyemic and septic embolism in pregnancy, first trimester
## 21068 Pyemic and septic embolism in pregnancy, second trimester
## 21069 Pyemic and septic embolism in pregnancy, third trimester
## 21070 Pyemic and septic embolism in pregnancy, unspecified trimester
## 21071 Pyemic and septic embolism in childbirth
## 21072 Pyemic and septic embolism in the puerperium
## 21073 Other embolism in pregnancy, first trimester
## 21074 Other embolism in pregnancy, second trimester
## 21075 Other embolism in pregnancy, third trimester
## 21076 Other embolism in pregnancy, unspecified trimester
## 21077 Other embolism in childbirth
## 21078 Other embolism in the puerperium
## 21079 Aspiration pneumonitis due to anesthesia during the puerperium
## 21080 Other pulmonary complications of anesthesia during the puerperium
## 21081 Cardiac complications of anesthesia during the puerperium
## 21082 Central nervous system complications of anesthesia during the puerperium
## 21083 Toxic reaction to local anesthesia during the puerperium
## 21084 Spinal and epidural anesthesia-induced headache during the puerperium
## 21085 Other complications of spinal and epidural anesthesia during the puerperium
## 21086 Failed or difficult intubation for anesthesia during the puerperium
## 21087 Other complications of anesthesia during the puerperium
## 21088 Complication of anesthesia during the puerperium, unspecified
## 21089 Disruption of cesarean delivery wound
## 21090 Disruption of perineal obstetric wound
## 21091 Hematoma of obstetric wound
## 21092 Peripartum cardiomyopathy
## 21093 Postpartum acute kidney failure
## 21094 Postpartum thyroiditis
## 21095 Postpartum mood disturbance
## 21096 Anemia of the puerperium
## 21097 Other complications of the puerperium, not elsewhere classified
## 21098 Complication of the puerperium, unspecified
## 21099 Infection of nipple associated with pregnancy, first trimester
## 21100 Infection of nipple associated with pregnancy, second trimester
## 21101 Infection of nipple associated with pregnancy, third trimester
## 21102 Infection of nipple associated with pregnancy, unspecified trimester
## 21103 Infection of nipple associated with the puerperium
## 21104 Infection of nipple associated with lactation
## 21105 Abscess of breast associated with pregnancy, first trimester
## 21106 Abscess of breast associated with pregnancy, second trimester
## 21107 Abscess of breast associated with pregnancy, third trimester
## 21108 Abscess of breast associated with pregnancy, unspecified trimester
## 21109 Abscess of breast associated with the puerperium
## 21110 Abscess of breast associated with lactation
## 21111 Nonpurulent mastitis associated with pregnancy, first trimester
## 21112 Nonpurulent mastitis associated with pregnancy, second trimester
## 21113 Nonpurulent mastitis associated with pregnancy, third trimester
## 21114 Nonpurulent mastitis associated with pregnancy, unspecified trimester
## 21115 Nonpurulent mastitis associated with the puerperium
## 21116 Nonpurulent mastitis associated with lactation
## 21117 Retracted nipple associated with pregnancy, first trimester
## 21118 Retracted nipple associated with pregnancy, second trimester
## 21119 Retracted nipple associated with pregnancy, third trimester
## 21120 Retracted nipple associated with pregnancy, unspecified trimester
## 21121 Retracted nipple associated with the puerperium
## 21122 Retracted nipple associated with lactation
## 21123 Cracked nipple associated with pregnancy, first trimester
## 21124 Cracked nipple associated with pregnancy, second trimester
## 21125 Cracked nipple associated with pregnancy, third trimester
## 21126 Cracked nipple associated with pregnancy, unspecified trimester
## 21127 Cracked nipple associated with the puerperium
## 21128 Cracked nipple associated with lactation
## 21129 Unspecified disorder of breast associated with pregnancy and the puerperium
## 21130 Other disorders of breast associated with pregnancy and the puerperium
## 21131 Agalactia
## 21132 Hypogalactia
## 21133 Suppressed lactation
## 21134 Galactorrhea
## 21135 Unspecified disorders of lactation
## 21136 Other disorders of lactation
## 21137 Sequelae of complication of pregnancy, childbirth, and the puerperium
## 21138 Tuberculosis complicating pregnancy, first trimester
## 21139 Tuberculosis complicating pregnancy, second trimester
## 21140 Tuberculosis complicating pregnancy, third trimester
## 21141 Tuberculosis complicating pregnancy, unspecified trimester
## 21142 Tuberculosis complicating childbirth
## 21143 Tuberculosis complicating the puerperium
## 21144 Syphilis complicating pregnancy, first trimester
## 21145 Syphilis complicating pregnancy, second trimester
## 21146 Syphilis complicating pregnancy, third trimester
## 21147 Syphilis complicating pregnancy, unspecified trimester
## 21148 Syphilis complicating childbirth
## 21149 Syphilis complicating the puerperium
## 21150 Gonorrhea complicating pregnancy, first trimester
## 21151 Gonorrhea complicating pregnancy, second trimester
## 21152 Gonorrhea complicating pregnancy, third trimester
## 21153 Gonorrhea complicating pregnancy, unspecified trimester
## 21154 Gonorrhea complicating childbirth
## 21155 Gonorrhea complicating the puerperium
## 21156 Other infections with a predominantly sexual mode of transmission complicating pregnancy, first trimester
## 21157 Other infections with a predominantly sexual mode of transmission complicating pregnancy, second trimester
## 21158 Other infections with a predominantly sexual mode of transmission complicating pregnancy, third trimester
## 21159 Other infections with a predominantly sexual mode of transmission complicating pregnancy, unspecified trimester
## 21160 Other infections with a predominantly sexual mode of transmission complicating childbirth
## 21161 Other infections with a predominantly sexual mode of transmission complicating the puerperium
## 21162 Viral hepatitis complicating pregnancy, first trimester
## 21163 Viral hepatitis complicating pregnancy, second trimester
## 21164 Viral hepatitis complicating pregnancy, third trimester
## 21165 Viral hepatitis complicating pregnancy, unspecified trimester
## 21166 Viral hepatitis complicating childbirth
## 21167 Viral hepatitis complicating the puerperium
## 21168 Other viral diseases complicating pregnancy, first trimester
## 21169 Other viral diseases complicating pregnancy, second trimester
## 21170 Other viral diseases complicating pregnancy, third trimester
## 21171 Other viral diseases complicating pregnancy, unspecified trimester
## 21172 Other viral diseases complicating childbirth
## 21173 Other viral diseases complicating the puerperium
## 21174 Protozoal diseases complicating pregnancy, first trimester
## 21175 Protozoal diseases complicating pregnancy, second trimester
## 21176 Protozoal diseases complicating pregnancy, third trimester
## 21177 Protozoal diseases complicating pregnancy, unspecified trimester
## 21178 Protozoal diseases complicating childbirth
## 21179 Protozoal diseases complicating the puerperium
## 21180 Human immunodeficiency virus [HIV] disease complicating pregnancy, first trimester
## 21181 Human immunodeficiency virus [HIV] disease complicating pregnancy, second trimester
## 21182 Human immunodeficiency virus [HIV] disease complicating pregnancy, third trimester
## 21183 Human immunodeficiency virus [HIV] disease complicating pregnancy, unspecified trimester
## 21184 Human immunodeficiency virus [HIV] disease complicating childbirth
## 21185 Human immunodeficiency virus [HIV] disease complicating the puerperium
## 21186 Other maternal infectious and parasitic diseases complicating pregnancy, first trimester
## 21187 Other maternal infectious and parasitic diseases complicating pregnancy, second trimester
## 21188 Other maternal infectious and parasitic diseases complicating pregnancy, third trimester
## 21189 Other maternal infectious and parasitic diseases complicating pregnancy, unspecified trimester
## 21190 Other maternal infectious and parasitic diseases complicating childbirth
## 21191 Other maternal infectious and parasitic diseases complicating the puerperium
## 21192 Unspecified maternal infectious and parasitic disease complicating pregnancy, first trimester
## 21193 Unspecified maternal infectious and parasitic disease complicating pregnancy, second trimester
## 21194 Unspecified maternal infectious and parasitic disease complicating pregnancy, third trimester
## 21195 Unspecified maternal infectious and parasitic disease complicating pregnancy, unspecified trimester
## 21196 Unspecified maternal infectious and parasitic disease complicating childbirth
## 21197 Unspecified maternal infectious and parasitic disease complicating the puerperium
## 21198 Anemia complicating pregnancy, first trimester
## 21199 Anemia complicating pregnancy, second trimester
## 21200 Anemia complicating pregnancy, third trimester
## 21201 Anemia complicating pregnancy, unspecified trimester
## 21202 Anemia complicating childbirth
## 21203 Anemia complicating the puerperium
## 21204 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, first trimester
## 21205 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, second trimester
## 21206 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, third trimester
## 21207 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating pregnancy, unspecified trimester
## 21208 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating childbirth
## 21209 Other diseases of the blood and blood-forming organs and certain disorders involving the immune mechanism complicating the puerperium
## 21210 Obesity complicating pregnancy, unspecified trimester
## 21211 Obesity complicating pregnancy, first trimester
## 21212 Obesity complicating pregnancy, second trimester
## 21213 Obesity complicating pregnancy, third trimester
## 21214 Obesity complicating childbirth
## 21215 Obesity complicating the puerperium
## 21216 Endocrine, nutritional and metabolic diseases complicating pregnancy, unspecified trimester
## 21217 Endocrine, nutritional and metabolic diseases complicating pregnancy, first trimester
## 21218 Endocrine, nutritional and metabolic diseases complicating pregnancy, second trimester
## 21219 Endocrine, nutritional and metabolic diseases complicating pregnancy, third trimester
## 21220 Endocrine, nutritional and metabolic diseases complicating childbirth
## 21221 Endocrine, nutritional and metabolic diseases complicating the puerperium
## 21222 Alcohol use complicating pregnancy, unspecified trimester
## 21223 Alcohol use complicating pregnancy, first trimester
## 21224 Alcohol use complicating pregnancy, second trimester
## 21225 Alcohol use complicating pregnancy, third trimester
## 21226 Alcohol use complicating childbirth
## 21227 Alcohol use complicating the puerperium
## 21228 Drug use complicating pregnancy, unspecified trimester
## 21229 Drug use complicating pregnancy, first trimester
## 21230 Drug use complicating pregnancy, second trimester
## 21231 Drug use complicating pregnancy, third trimester
## 21232 Drug use complicating childbirth
## 21233 Drug use complicating the puerperium
## 21234 Smoking (tobacco) complicating pregnancy, unspecified trimester
## 21235 Smoking (tobacco) complicating pregnancy, first trimester
## 21236 Smoking (tobacco) complicating pregnancy, second trimester
## 21237 Smoking (tobacco) complicating pregnancy, third trimester
## 21238 Smoking (tobacco) complicating childbirth
## 21239 Smoking (tobacco) complicating the puerperium
## 21240 Other mental disorders complicating pregnancy, unspecified trimester
## 21241 Other mental disorders complicating pregnancy, first trimester
## 21242 Other mental disorders complicating pregnancy, second trimester
## 21243 Other mental disorders complicating pregnancy, third trimester
## 21244 Other mental disorders complicating childbirth
## 21245 Other mental disorders complicating the puerperium
## 21246 Diseases of the nervous system complicating pregnancy, unspecified trimester
## 21247 Diseases of the nervous system complicating pregnancy, first trimester
## 21248 Diseases of the nervous system complicating pregnancy, second trimester
## 21249 Diseases of the nervous system complicating pregnancy, third trimester
## 21250 Diseases of the nervous system complicating childbirth
## 21251 Diseases of the nervous system complicating the puerperium
## 21252 Diseases of the circulatory system complicating pregnancy, first trimester
## 21253 Diseases of the circulatory system complicating pregnancy, second trimester
## 21254 Diseases of the circulatory system complicating pregnancy, third trimester
## 21255 Diseases of the circulatory system complicating pregnancy, unspecified trimester
## 21256 Diseases of the circulatory system complicating childbirth
## 21257 Diseases of the circulatory system complicating the puerperium
## 21258 Diseases of the respiratory system complicating pregnancy, first trimester
## 21259 Diseases of the respiratory system complicating pregnancy, second trimester
## 21260 Diseases of the respiratory system complicating pregnancy, third trimester
## 21261 Diseases of the respiratory system complicating pregnancy, unspecified trimester
## 21262 Diseases of the respiratory system complicating childbirth
## 21263 Diseases of the respiratory system complicating the puerperium
## 21264 Diseases of the digestive system complicating pregnancy, first trimester
## 21265 Diseases of the digestive system complicating pregnancy, second trimester
## 21266 Diseases of the digestive system complicating pregnancy, third trimester
## 21267 Diseases of the digestive system complicating pregnancy, unspecified trimester
## 21268 Diseases of the digestive system complicating childbirth
## 21269 Diseases of the digestive system complicating the puerperium
## 21270 Diseases of the skin and subcutaneous tissue complicating pregnancy, first trimester
## 21271 Diseases of the skin and subcutaneous tissue complicating pregnancy, second trimester
## 21272 Diseases of the skin and subcutaneous tissue complicating pregnancy, third trimester
## 21273 Diseases of the skin and subcutaneous tissue complicating pregnancy, unspecified trimester
## 21274 Diseases of the skin and subcutaneous tissue complicating childbirth
## 21275 Diseases of the skin and subcutaneous tissue complicating the puerperium
## 21276 Abnormal glucose complicating pregnancy
## 21277 Abnormal glucose complicating childbirth
## 21278 Abnormal glucose complicating the puerperium
## 21279 Streptococcus B carrier state complicating pregnancy
## 21280 Streptococcus B carrier state complicating childbirth
## 21281 Streptococcus B carrier state complicating the puerperium
## 21282 Other infection carrier state complicating pregnancy
## 21283 Other infection carrier state complicating childbirth
## 21284 Other infection carrier state complicating the puerperium
## 21285 Bariatric surgery status complicating pregnancy, unspecified trimester
## 21286 Bariatric surgery status complicating pregnancy, first trimester
## 21287 Bariatric surgery status complicating pregnancy, second trimester
## 21288 Bariatric surgery status complicating pregnancy, third trimester
## 21289 Bariatric surgery status complicating childbirth
## 21290 Bariatric surgery status complicating the puerperium
## 21291 Other specified diseases and conditions complicating pregnancy, childbirth and the puerperium
## 21292 Malignant neoplasm complicating pregnancy, first trimester
## 21293 Malignant neoplasm complicating pregnancy, second trimester
## 21294 Malignant neoplasm complicating pregnancy, third trimester
## 21295 Malignant neoplasm complicating pregnancy, unspecified trimester
## 21296 Malignant neoplasm complicating childbirth
## 21297 Malignant neoplasm complicating the puerperium
## 21298 Injury, poisoning and certain other consequences of external causes complicating pregnancy, first trimester
## 21299 Injury, poisoning and certain other consequences of external causes complicating pregnancy, second trimester
## 21300 Injury, poisoning and certain other consequences of external causes complicating pregnancy, third trimester
## 21301 Injury, poisoning and certain other consequences of external causes complicating pregnancy, unspecified trimester
## 21302 Injury, poisoning and certain other consequences of external causes complicating childbirth
## 21303 Injury, poisoning and certain other consequences of external causes complicating the puerperium
## 21304 Physical abuse complicating pregnancy, first trimester
## 21305 Physical abuse complicating pregnancy, second trimester
## 21306 Physical abuse complicating pregnancy, third trimester
## 21307 Physical abuse complicating pregnancy, unspecified trimester
## 21308 Physical abuse complicating childbirth
## 21309 Physical abuse complicating the puerperium
## 21310 Sexual abuse complicating pregnancy, first trimester
## 21311 Sexual abuse complicating pregnancy, second trimester
## 21312 Sexual abuse complicating pregnancy, third trimester
## 21313 Sexual abuse complicating pregnancy, unspecified trimester
## 21314 Sexual abuse complicating childbirth
## 21315 Sexual abuse complicating the puerperium
## 21316 Psychological abuse complicating pregnancy, first trimester
## 21317 Psychological abuse complicating pregnancy, second trimester
## 21318 Psychological abuse complicating pregnancy, third trimester
## 21319 Psychological abuse complicating pregnancy, unspecified trimester
## 21320 Psychological abuse complicating childbirth
## 21321 Psychological abuse complicating the puerperium
## 21322 Newborn affected by maternal hypertensive disorders
## 21323 Newborn affected by maternal renal and urinary tract diseases
## 21324 Newborn affected by maternal infectious and parasitic diseases
## 21325 Newborn affected by other maternal circulatory and respiratory diseases
## 21326 Newborn affected by maternal nutritional disorders
## 21327 Newborn affected by maternal injury
## 21328 Newborn affected by surgical procedure on mother
## 21329 Newborn affected by other medical procedures on mother, not elsewhere classified
## 21330 Newborn affected by periodontal disease in mother
## 21331 Newborn affected by other maternal conditions
## 21332 Newborn affected by unspecified maternal condition
## 21333 Newborn affected by incompetent cervix
## 21334 Newborn affected by premature rupture of membranes
## 21335 Newborn affected by oligohydramnios
## 21336 Newborn affected by polyhydramnios
## 21337 Newborn affected by ectopic pregnancy
## 21338 Newborn affected by multiple pregnancy
## 21339 Newborn affected by maternal death
## 21340 Newborn affected by malpresentation before labor
## 21341 Newborn affected by other maternal complications of pregnancy
## 21342 Newborn affected by maternal complication of pregnancy, unspecified
## 21343 Newborn affected by placenta previa
## 21344 Newborn affected by other forms of placental separation and hemorrhage
## 21345 Newborn affected by unspecified morphological and functional abnormalities of placenta
## 21346 Newborn affected by other morphological and functional abnormalities of placenta
## 21347 Newborn affected by placental transfusion syndromes
## 21348 Newborn affected by prolapsed cord
## 21349 Newborn affected by other compression of umbilical cord
## 21350 Newborn affected by unspecified conditions of umbilical cord
## 21351 Newborn affected by other conditions of umbilical cord
## 21352 Newborn affected by fetal inflammatory response syndrome
## 21353 Newborn affected by other conditions from chorioamnionitis
## 21354 Newborn affected by other abnormalities of membranes
## 21355 Newborn affected by abnormality of membranes, unspecified
## 21356 Newborn affected by breech delivery and extraction
## 21357 Newborn affected by other malpresentation, malposition and disproportion during labor and delivery
## 21358 Newborn affected by forceps delivery
## 21359 Newborn affected by delivery by vacuum extractor [ventouse]
## 21360 Newborn affected by Cesarean delivery
## 21361 Newborn affected by precipitate delivery
## 21362 Newborn affected by abnormal uterine contractions
## 21363 Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm before the onset of labor
## 21364 Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm during labor
## 21365 Newborn affected by abnormality in fetal (intrauterine) heart rate or rhythm, unspecified as to time of onset
## 21366 Meconium passage during delivery
## 21367 Newborn affected by other specified complications of labor and delivery
## 21368 Newborn affected by complication of labor and delivery, unspecified
## 21369 Newborn affected by maternal anesthesia and analgesia in pregnancy, labor and delivery
## 21370 Newborn affected by maternal antineoplastic chemotherapy
## 21371 Newborn affected by maternal cytotoxic drugs
## 21372 Newborn affected by maternal use of anticonvulsants
## 21373 Newborn affected by maternal use of opiates
## 21374 Newborn affected by maternal use of antidepressants
## 21375 Newborn affected by maternal use of amphetamines
## 21376 Newborn affected by maternal use of sedative-hypnotics
## 21377 Newborn affected by maternal use of anxiolytics
## 21378 Newborn affected by other maternal medication
## 21379 Newborn affected by maternal use of unspecified medication
## 21380 Newborn affected by maternal use of tobacco
## 21381 Newborn affected by maternal use of alcohol
## 21382 Newborn affected by maternal use of unspecified drugs of addiction
## 21383 Newborn affected by maternal use of cocaine
## 21384 Newborn affected by maternal use of hallucinogens
## 21385 Newborn affected by maternal use of other drugs of addiction
## 21386 Newborn affected by maternal use of nutritional chemical substances
## 21387 Newborn affected by maternal exposure to environmental chemical substances
## 21388 Newborn affected by maternal use of cannabis
## 21389 Newborn affected by other maternal noxious substances
## 21390 Newborn affected by maternal noxious substance, unspecified
## 21391 Newborn light for gestational age, unspecified weight
## 21392 Newborn light for gestational age, less than 500 grams
## 21393 Newborn light for gestational age, 500-749 grams
## 21394 Newborn light for gestational age, 750-999 grams
## 21395 Newborn light for gestational age, 1000-1249 grams
## 21396 Newborn light for gestational age, 1250-1499 grams
## 21397 Newborn light for gestational age, 1500-1749 grams
## 21398 Newborn light for gestational age, 1750-1999 grams
## 21399 Newborn light for gestational age, 2000-2499 grams
## 21400 Newborn light for gestational age, 2500 grams and over
## 21401 Newborn small for gestational age, unspecified weight
## 21402 Newborn small for gestational age, less than 500 grams
## 21403 Newborn small for gestational age, 500-749 grams
## 21404 Newborn small for gestational age, 750-999 grams
## 21405 Newborn small for gestational age, 1000-1249 grams
## 21406 Newborn small for gestational age, 1250-1499 grams
## 21407 Newborn small for gestational age, 1500-1749 grams
## 21408 Newborn small for gestational age, 1750-1999 grams
## 21409 Newborn small for gestational age, 2000-2499 grams
## 21410 Newborn small for gestational age, other
## 21411 Newborn affected by fetal (intrauterine) malnutrition not light or small for gestational age
## 21412 Newborn affected by slow intrauterine growth, unspecified
## 21413 Extremely low birth weight newborn, unspecified weight
## 21414 Extremely low birth weight newborn, less than 500 grams
## 21415 Extremely low birth weight newborn, 500-749 grams
## 21416 Extremely low birth weight newborn, 750-999 grams
## 21417 Other low birth weight newborn, unspecified weight
## 21418 Other low birth weight newborn, 1000-1249 grams
## 21419 Other low birth weight newborn, 1250-1499 grams
## 21420 Other low birth weight newborn, 1500-1749 grams
## 21421 Other low birth weight newborn, 1750-1999 grams
## 21422 Other low birth weight newborn, 2000-2499 grams
## 21423 Extreme immaturity of newborn, unspecified weeks of gestation
## 21424 Extreme immaturity of newborn, gestational age less than 23 completed weeks
## 21425 Extreme immaturity of newborn, gestational age 23 completed weeks
## 21426 Extreme immaturity of newborn, gestational age 24 completed weeks
## 21427 Extreme immaturity of newborn, gestational age 25 completed weeks
## 21428 Extreme immaturity of newborn, gestational age 26 completed weeks
## 21429 Extreme immaturity of newborn, gestational age 27 completed weeks
## 21430 Preterm newborn, unspecified weeks of gestation
## 21431 Preterm newborn, gestational age 28 completed weeks
## 21432 Preterm newborn, gestational age 29 completed weeks
## 21433 Preterm newborn, gestational age 30 completed weeks
## 21434 Preterm newborn, gestational age 31 completed weeks
## 21435 Preterm newborn, gestational age 32 completed weeks
## 21436 Preterm newborn, gestational age 33 completed weeks
## 21437 Preterm newborn, gestational age 34 completed weeks
## 21438 Preterm newborn, gestational age 35 completed weeks
## 21439 Preterm newborn, gestational age 36 completed weeks
## 21440 Exceptionally large newborn baby
## 21441 Other heavy for gestational age newborn
## 21442 Post-term newborn
## 21443 Prolonged gestation of newborn
## 21444 Abnormal findings on neonatal screening
## 21445 Subdural hemorrhage due to birth injury
## 21446 Cerebral hemorrhage due to birth injury
## 21447 Intraventricular hemorrhage due to birth injury
## 21448 Subarachnoid hemorrhage due to birth injury
## 21449 Tentorial tear due to birth injury
## 21450 Other intracranial lacerations and hemorrhages due to birth injury
## 21451 Unspecified intracranial laceration and hemorrhage due to birth injury
## 21452 Cerebral edema due to birth injury
## 21453 Other specified brain damage due to birth injury
## 21454 Unspecified brain damage due to birth injury
## 21455 Birth injury to facial nerve
## 21456 Birth injury to other cranial nerves
## 21457 Birth injury to spine and spinal cord
## 21458 Birth injury to central nervous system, unspecified
## 21459 Cephalhematoma due to birth injury
## 21460 Chignon (from vacuum extraction) due to birth injury
## 21461 Epicranial subaponeurotic hemorrhage due to birth injury
## 21462 Bruising of scalp due to birth injury
## 21463 Injury of scalp of newborn due to monitoring equipment
## 21464 Caput succedaneum
## 21465 Other birth injuries to scalp
## 21466 Birth injury to scalp, unspecified
## 21467 Fracture of skull due to birth injury
## 21468 Other birth injuries to skull
## 21469 Birth injury to femur
## 21470 Birth injury to other long bones
## 21471 Fracture of clavicle due to birth injury
## 21472 Birth injuries to other parts of skeleton
## 21473 Birth injury to skeleton, unspecified
## 21474 Erb's paralysis due to birth injury
## 21475 Klumpke's paralysis due to birth injury
## 21476 Phrenic nerve paralysis due to birth injury
## 21477 Other brachial plexus birth injuries
## 21478 Birth injuries to other parts of peripheral nervous system
## 21479 Birth injury to peripheral nervous system, unspecified
## 21480 Birth injury to liver
## 21481 Birth injury to spleen
## 21482 Sternomastoid injury due to birth injury
## 21483 Birth injury to eye
## 21484 Birth injury to face
## 21485 Birth injury to external genitalia
## 21486 Subcutaneous fat necrosis due to birth injury
## 21487 Other specified birth injuries
## 21488 Birth injury, unspecified
## 21489 Metabolic acidemia in newborn first noted before onset of labor
## 21490 Metabolic acidemia in newborn first noted during labor
## 21491 Metabolic acidemia noted at birth
## 21492 Metabolic acidemia, unspecified
## 21493 Respiratory distress syndrome of newborn
## 21494 Transient tachypnea of newborn
## 21495 Other respiratory distress of newborn
## 21496 Respiratory distress of newborn, unspecified
## 21497 Congenital pneumonia due to viral agent
## 21498 Congenital pneumonia due to Chlamydia
## 21499 Congenital pneumonia due to staphylococcus
## 21500 Congenital pneumonia due to streptococcus, group B
## 21501 Congenital pneumonia due to Escherichia coli
## 21502 Congenital pneumonia due to Pseudomonas
## 21503 Congenital pneumonia due to other bacterial agents
## 21504 Congenital pneumonia due to other organisms
## 21505 Congenital pneumonia, unspecified
## 21506 Meconium aspiration without respiratory symptoms
## 21507 Meconium aspiration with respiratory symptoms
## 21508 Neonatal aspiration of (clear) amniotic fluid and mucus without respiratory symptoms
## 21509 Neonatal aspiration of (clear) amniotic fluid and mucus with respiratory symptoms
## 21510 Neonatal aspiration of blood without respiratory symptoms
## 21511 Neonatal aspiration of blood with respiratory symptoms
## 21512 Neonatal aspiration of milk and regurgitated food without respiratory symptoms
## 21513 Neonatal aspiration of milk and regurgitated food with respiratory symptoms
## 21514 Other neonatal aspiration without respiratory symptoms
## 21515 Other neonatal aspiration with respiratory symptoms
## 21516 Neonatal aspiration, unspecified
## 21517 Interstitial emphysema originating in the perinatal period
## 21518 Pneumothorax originating in the perinatal period
## 21519 Pneumomediastinum originating in the perinatal period
## 21520 Pneumopericardium originating in the perinatal period
## 21521 Other conditions related to interstitial emphysema originating in the perinatal period
## 21522 Tracheobronchial hemorrhage originating in the perinatal period
## 21523 Massive pulmonary hemorrhage originating in the perinatal period
## 21524 Other pulmonary hemorrhages originating in the perinatal period
## 21525 Unspecified pulmonary hemorrhage originating in the perinatal period
## 21526 Wilson-Mikity syndrome
## 21527 Bronchopulmonary dysplasia originating in the perinatal period
## 21528 Other chronic respiratory diseases originating in the perinatal period
## 21529 Unspecified chronic respiratory disease originating in the perinatal period
## 21530 Primary atelectasis of newborn
## 21531 Unspecified atelectasis of newborn
## 21532 Resorption atelectasis without respiratory distress syndrome
## 21533 Other atelectasis of newborn
## 21534 Cyanotic attacks of newborn
## 21535 Primary sleep apnea of newborn
## 21536 Other apnea of newborn
## 21537 Respiratory failure of newborn
## 21538 Respiratory arrest of newborn
## 21539 Other specified respiratory conditions of newborn
## 21540 Respiratory condition of newborn, unspecified
## 21541 Neonatal cardiac failure
## 21542 Neonatal tachycardia
## 21543 Neonatal bradycardia
## 21544 Neonatal hypertension
## 21545 Pulmonary hypertension of newborn
## 21546 Other persistent fetal circulation
## 21547 Transient myocardial ischemia in newborn
## 21548 Cardiac arrest of newborn
## 21549 Other cardiovascular disorders originating in the perinatal period
## 21550 Cardiovascular disorder originating in the perinatal period, unspecified
## 21551 Congenital rubella syndrome
## 21552 Congenital cytomegalovirus infection
## 21553 Congenital herpesviral [herpes simplex] infection
## 21554 Congenital viral hepatitis
## 21555 Congenital Zika virus disease
## 21556 Other congenital viral diseases
## 21557 Congenital viral disease, unspecified
## 21558 Sepsis of newborn due to streptococcus, group B
## 21559 Sepsis of newborn due to unspecified streptococci
## 21560 Sepsis of newborn due to other streptococci
## 21561 Sepsis of newborn due to Staphylococcus aureus
## 21562 Sepsis of newborn due to unspecified staphylococci
## 21563 Sepsis of newborn due to other staphylococci
## 21564 Sepsis of newborn due to Escherichia coli
## 21565 Sepsis of newborn due to anaerobes
## 21566 Other bacterial sepsis of newborn
## 21567 Bacterial sepsis of newborn, unspecified
## 21568 Congenital tuberculosis
## 21569 Congenital toxoplasmosis
## 21570 Neonatal (disseminated) listeriosis
## 21571 Congenital falciparum malaria
## 21572 Other congenital malaria
## 21573 Neonatal candidiasis
## 21574 Other specified congenital infectious and parasitic diseases
## 21575 Congenital infectious or parasitic disease, unspecified
## 21576 Omphalitis with mild hemorrhage
## 21577 Omphalitis without hemorrhage
## 21578 Neonatal infective mastitis
## 21579 Neonatal conjunctivitis and dacryocystitis
## 21580 Intra-amniotic infection affecting newborn, not elsewhere classified
## 21581 Neonatal urinary tract infection
## 21582 Neonatal skin infection
## 21583 Other specified infections specific to the perinatal period
## 21584 Infection specific to the perinatal period, unspecified
## 21585 Newborn affected by intrauterine (fetal) blood loss from vasa previa
## 21586 Newborn affected by intrauterine (fetal) blood loss from ruptured cord
## 21587 Newborn affected by intrauterine (fetal) blood loss from placenta
## 21588 Newborn affected by hemorrhage into co-twin
## 21589 Newborn affected by hemorrhage into maternal circulation
## 21590 Newborn affected by intrauterine (fetal) blood loss from cut end of co-twin's cord
## 21591 Newborn affected by other intrauterine (fetal) blood loss
## 21592 Newborn affected by intrauterine (fetal) blood loss, unspecified
## 21593 Massive umbilical hemorrhage of newborn
## 21594 Other umbilical hemorrhages of newborn
## 21595 Umbilical hemorrhage of newborn, unspecified
## 21596 Intraventricular (nontraumatic) hemorrhage, grade 1, of newborn
## 21597 Intraventricular (nontraumatic) hemorrhage, grade 2, of newborn
## 21598 Intraventricular (nontraumatic) hemorrhage, grade 3, of newborn
## 21599 Intraventricular (nontraumatic) hemorrhage, grade 4, of newborn
## 21600 Unspecified intraventricular (nontraumatic) hemorrhage of newborn
## 21601 Intracerebral (nontraumatic) hemorrhage of newborn
## 21602 Subarachnoid (nontraumatic) hemorrhage of newborn
## 21603 Cerebellar (nontraumatic) and posterior fossa hemorrhage of newborn
## 21604 Other intracranial (nontraumatic) hemorrhages of newborn
## 21605 Intracranial (nontraumatic) hemorrhage of newborn, unspecified
## 21606 Hemorrhagic disease of newborn
## 21607 Neonatal hematemesis
## 21608 Neonatal melena
## 21609 Neonatal rectal hemorrhage
## 21610 Other neonatal gastrointestinal hemorrhage
## 21611 Neonatal adrenal hemorrhage
## 21612 Neonatal cutaneous hemorrhage
## 21613 Neonatal vaginal hemorrhage
## 21614 Other specified neonatal hemorrhages
## 21615 Neonatal hemorrhage, unspecified
## 21616 Rh isoimmunization of newborn
## 21617 ABO isoimmunization of newborn
## 21618 Other hemolytic diseases of newborn
## 21619 Hemolytic disease of newborn, unspecified
## 21620 Hydrops fetalis due to isoimmunization
## 21621 Hydrops fetalis due to unspecified hemolytic disease
## 21622 Hydrops fetalis due to other hemolytic disease
## 21623 Kernicterus due to isoimmunization
## 21624 Other specified kernicterus
## 21625 Kernicterus, unspecified
## 21626 Neonatal jaundice due to bruising
## 21627 Neonatal jaundice due to bleeding
## 21628 Neonatal jaundice due to infection
## 21629 Neonatal jaundice due to polycythemia
## 21630 Neonatal jaundice due to drugs or toxins transmitted from mother
## 21631 Neonatal jaundice due to drugs or toxins given to newborn
## 21632 Neonatal jaundice due to swallowed maternal blood
## 21633 Neonatal jaundice due to other specified excessive hemolysis
## 21634 Neonatal jaundice due to excessive hemolysis, unspecified
## 21635 Neonatal jaundice associated with preterm delivery
## 21636 Inspissated bile syndrome
## 21637 Neonatal jaundice from unspecified hepatocellular damage
## 21638 Neonatal jaundice from other hepatocellular damage
## 21639 Neonatal jaundice from breast milk inhibitor
## 21640 Neonatal jaundice from other specified causes
## 21641 Neonatal jaundice, unspecified
## 21642 Disseminated intravascular coagulation of newborn
## 21643 Transient neonatal thrombocytopenia
## 21644 Polycythemia neonatorum
## 21645 Anemia of prematurity
## 21646 Congenital anemia from fetal blood loss
## 21647 Other congenital anemias, not elsewhere classified
## 21648 Transient neonatal neutropenia
## 21649 Other transient neonatal disorders of coagulation
## 21650 Other specified perinatal hematological disorders
## 21651 Perinatal hematological disorder, unspecified
## 21652 Syndrome of infant of mother with gestational diabetes
## 21653 Syndrome of infant of a diabetic mother
## 21654 Neonatal diabetes mellitus
## 21655 Iatrogenic neonatal hypoglycemia
## 21656 Other neonatal hypoglycemia
## 21657 Other transitory disorders of carbohydrate metabolism of newborn
## 21658 Transitory disorder of carbohydrate metabolism of newborn, unspecified
## 21659 Cow's milk hypocalcemia in newborn
## 21660 Other neonatal hypocalcemia
## 21661 Neonatal hypomagnesemia
## 21662 Neonatal tetany without calcium or magnesium deficiency
## 21663 Transitory neonatal hypoparathyroidism
## 21664 Other transitory neonatal disorders of calcium and magnesium metabolism
## 21665 Transitory neonatal disorder of calcium and magnesium metabolism, unspecified
## 21666 Neonatal goiter, not elsewhere classified
## 21667 Transitory neonatal hyperthyroidism
## 21668 Other transitory neonatal disorders of thyroid function, not elsewhere classified
## 21669 Other specified transitory neonatal endocrine disorders
## 21670 Transitory neonatal endocrine disorder, unspecified
## 21671 Late metabolic acidosis of newborn
## 21672 Dehydration of newborn
## 21673 Hypernatremia of newborn
## 21674 Hyponatremia of newborn
## 21675 Hyperkalemia of newborn
## 21676 Hypokalemia of newborn
## 21677 Alkalosis of newborn
## 21678 Hyperchloremia of newborn
## 21679 Hypochloremia of newborn
## 21680 Other transitory electrolyte disturbance of newborn
## 21681 Transitory tyrosinemia of newborn
## 21682 Transitory hyperammonemia of newborn
## 21683 Other transitory metabolic disturbances of newborn
## 21684 Transitory metabolic disturbance of newborn, unspecified
## 21685 Meconium plug syndrome
## 21686 Transitory ileus of newborn
## 21687 Intestinal obstruction due to inspissated milk
## 21688 Other specified intestinal obstruction of newborn
## 21689 Intestinal obstruction of newborn, unspecified
## 21690 Stage 1 necrotizing enterocolitis in newborn
## 21691 Stage 2 necrotizing enterocolitis in newborn
## 21692 Stage 3 necrotizing enterocolitis in newborn
## 21693 Necrotizing enterocolitis in newborn, unspecified
## 21694 Perinatal intestinal perforation
## 21695 Other neonatal peritonitis
## 21696 Neonatal hematemesis and melena due to swallowed maternal blood
## 21697 Noninfective neonatal diarrhea
## 21698 Congenital cirrhosis (of liver)
## 21699 Peptic ulcer of newborn
## 21700 Newborn esophageal reflux
## 21701 Gestational alloimmune liver disease
## 21702 Other specified perinatal digestive system disorders
## 21703 Perinatal digestive system disorder, unspecified
## 21704 Cold injury syndrome
## 21705 Other hypothermia of newborn
## 21706 Hypothermia of newborn, unspecified
## 21707 Environmental hyperthermia of newborn
## 21708 Other specified disturbances of temperature regulation of newborn
## 21709 Disturbance of temperature regulation of newborn, unspecified
## 21710 Sclerema neonatorum
## 21711 Neonatal erythema toxicum
## 21712 Hydrops fetalis not due to hemolytic disease
## 21713 Unspecified edema specific to newborn
## 21714 Other edema specific to newborn
## 21715 Breast engorgement of newborn
## 21716 Congenital hydrocele
## 21717 Umbilical polyp of newborn
## 21718 Umbilical granuloma
## 21719 Other specified conditions of integument specific to newborn
## 21720 Condition of the integument specific to newborn, unspecified
## 21721 Other problems with newborn
## 21722 Convulsions of newborn
## 21723 Neonatal cerebral ischemia
## 21724 Acquired periventricular cysts of newborn
## 21725 Neonatal cerebral leukomalacia
## 21726 Neonatal cerebral irritability
## 21727 Neonatal cerebral depression
## 21728 Neonatal coma
## 21729 Hypoxic ischemic encephalopathy [HIE], unspecified
## 21730 Mild hypoxic ischemic encephalopathy [HIE]
## 21731 Moderate hypoxic ischemic encephalopathy [HIE]
## 21732 Severe hypoxic ischemic encephalopathy [HIE]
## 21733 Neonatal encephalopathy in diseases classified elsewhere
## 21734 Neonatal encephalopathy, unspecified
## 21735 Other specified disturbances of cerebral status of newborn
## 21736 Disturbance of cerebral status of newborn, unspecified
## 21737 Bilious vomiting of newborn
## 21738 Other vomiting of newborn
## 21739 Regurgitation and rumination of newborn
## 21740 Slow feeding of newborn
## 21741 Underfeeding of newborn
## 21742 Overfeeding of newborn
## 21743 Neonatal difficulty in feeding at breast
## 21744 Failure to thrive in newborn
## 21745 Other feeding problems of newborn
## 21746 Feeding problem of newborn, unspecified
## 21747 Grey baby syndrome
## 21748 Other reactions and intoxications due to drugs administered to newborn
## 21749 Transient neonatal myasthenia gravis
## 21750 Congenital hypertonia
## 21751 Congenital hypotonia
## 21752 Other disorders of muscle tone of newborn
## 21753 Disorder of muscle tone of newborn, unspecified
## 21754 Stillbirth
## 21755 Congenital renal failure
## 21756 Neonatal withdrawal symptoms from maternal use of drugs of addiction
## 21757 Withdrawal symptoms from therapeutic use of drugs in newborn
## 21758 Wide cranial sutures of newborn
## 21759 Complication to newborn due to (fetal) intrauterine procedure
## 21760 Exposure to (parental) (environmental) tobacco smoke in the perinatal period
## 21761 Delayed separation of umbilical cord
## 21762 Meconium staining
## 21763 Other specified conditions originating in the perinatal period
## 21764 Condition originating in the perinatal period, unspecified
## 21765 Anencephaly
## 21766 Craniorachischisis
## 21767 Iniencephaly
## 21768 Frontal encephalocele
## 21769 Nasofrontal encephalocele
## 21770 Occipital encephalocele
## 21771 Encephalocele of other sites
## 21772 Encephalocele, unspecified
## 21773 Microcephaly
## 21774 Malformations of aqueduct of Sylvius
## 21775 Atresia of foramina of Magendie and Luschka
## 21776 Other congenital hydrocephalus
## 21777 Congenital hydrocephalus, unspecified
## 21778 Congenital malformations of corpus callosum
## 21779 Arhinencephaly
## 21780 Holoprosencephaly
## 21781 Other reduction deformities of brain
## 21782 Septo-optic dysplasia of brain
## 21783 Megalencephaly
## 21784 Congenital cerebral cysts
## 21785 Other specified congenital malformations of brain
## 21786 Congenital malformation of brain, unspecified
## 21787 Cervical spina bifida with hydrocephalus
## 21788 Thoracic spina bifida with hydrocephalus
## 21789 Lumbar spina bifida with hydrocephalus
## 21790 Sacral spina bifida with hydrocephalus
## 21791 Unspecified spina bifida with hydrocephalus
## 21792 Cervical spina bifida without hydrocephalus
## 21793 Thoracic spina bifida without hydrocephalus
## 21794 Lumbar spina bifida without hydrocephalus
## 21795 Sacral spina bifida without hydrocephalus
## 21796 Spina bifida, unspecified
## 21797 Amyelia
## 21798 Hypoplasia and dysplasia of spinal cord
## 21799 Diastematomyelia
## 21800 Other congenital cauda equina malformations
## 21801 Hydromyelia
## 21802 Other specified congenital malformations of spinal cord
## 21803 Congenital malformation of spinal cord, unspecified
## 21804 Arnold-Chiari syndrome without spina bifida or hydrocephalus
## 21805 Arnold-Chiari syndrome with spina bifida
## 21806 Arnold-Chiari syndrome with hydrocephalus
## 21807 Arnold-Chiari syndrome with spina bifida and hydrocephalus
## 21808 Other specified congenital malformations of nervous system
## 21809 Congenital malformation of nervous system, unspecified
## 21810 Congenital ptosis
## 21811 Congenital ectropion
## 21812 Congenital entropion
## 21813 Other congenital malformations of eyelid
## 21814 Absence and agenesis of lacrimal apparatus
## 21815 Congenital stenosis and stricture of lacrimal duct
## 21816 Other congenital malformations of lacrimal apparatus
## 21817 Congenital malformation of orbit
## 21818 Cystic eyeball
## 21819 Other anophthalmos
## 21820 Microphthalmos
## 21821 Macrophthalmos
## 21822 Congenital cataract
## 21823 Congenital displaced lens
## 21824 Coloboma of lens
## 21825 Congenital aphakia
## 21826 Spherophakia
## 21827 Other congenital lens malformations
## 21828 Congenital lens malformation, unspecified
## 21829 Coloboma of iris
## 21830 Absence of iris
## 21831 Other congenital malformations of iris
## 21832 Congenital corneal opacity
## 21833 Other congenital corneal malformations
## 21834 Blue sclera
## 21835 Rieger's anomaly
## 21836 Other congenital malformations of anterior segment of eye
## 21837 Congenital malformation of anterior segment of eye, unspecified
## 21838 Congenital malformation of vitreous humor
## 21839 Congenital malformation of retina
## 21840 Congenital malformation of optic disc
## 21841 Congenital malformation of choroid
## 21842 Other congenital malformations of posterior segment of eye
## 21843 Congenital malformation of posterior segment of eye, unspecified
## 21844 Congenital glaucoma
## 21845 Other specified congenital malformations of eye
## 21846 Congenital malformation of eye, unspecified
## 21847 Congenital absence of (ear) auricle
## 21848 Congenital absence, atresia and stricture of auditory canal (external)
## 21849 Absence of eustachian tube
## 21850 Congenital malformation of ear ossicles
## 21851 Other congenital malformations of middle ear
## 21852 Congenital malformation of inner ear
## 21853 Congenital malformation of ear causing impairment of hearing, unspecified
## 21854 Accessory auricle
## 21855 Macrotia
## 21856 Microtia
## 21857 Other misshapen ear
## 21858 Misplaced ear
## 21859 Prominent ear
## 21860 Other specified congenital malformations of ear
## 21861 Congenital malformation of ear, unspecified
## 21862 Sinus, fistula and cyst of branchial cleft
## 21863 Preauricular sinus and cyst
## 21864 Other branchial cleft malformations
## 21865 Webbing of neck
## 21866 Macrostomia
## 21867 Microstomia
## 21868 Macrocheilia
## 21869 Microcheilia
## 21870 Other specified congenital malformations of face and neck
## 21871 Congenital malformation of face and neck, unspecified
## 21872 Common arterial trunk
## 21873 Double outlet right ventricle
## 21874 Double outlet left ventricle
## 21875 Discordant ventriculoarterial connection
## 21876 Double inlet ventricle
## 21877 Discordant atrioventricular connection
## 21878 Isomerism of atrial appendages
## 21879 Other congenital malformations of cardiac chambers and connections
## 21880 Congenital malformation of cardiac chambers and connections, unspecified
## 21881 Ventricular septal defect
## 21882 Atrial septal defect
## 21883 Atrioventricular septal defect
## 21884 Tetralogy of Fallot
## 21885 Aortopulmonary septal defect
## 21886 Other congenital malformations of cardiac septa
## 21887 Congenital malformation of cardiac septum, unspecified
## 21888 Pulmonary valve atresia
## 21889 Congenital pulmonary valve stenosis
## 21890 Congenital pulmonary valve insufficiency
## 21891 Other congenital malformations of pulmonary valve
## 21892 Congenital tricuspid stenosis
## 21893 Ebstein's anomaly
## 21894 Hypoplastic right heart syndrome
## 21895 Other congenital malformations of tricuspid valve
## 21896 Congenital malformation of tricuspid valve, unspecified
## 21897 Congenital stenosis of aortic valve
## 21898 Congenital insufficiency of aortic valve
## 21899 Congenital mitral stenosis
## 21900 Congenital mitral insufficiency
## 21901 Hypoplastic left heart syndrome
## 21902 Other congenital malformations of aortic and mitral valves
## 21903 Congenital malformation of aortic and mitral valves, unspecified
## 21904 Dextrocardia
## 21905 Levocardia
## 21906 Cor triatriatum
## 21907 Pulmonary infundibular stenosis
## 21908 Congenital subaortic stenosis
## 21909 Malformation of coronary vessels
## 21910 Congenital heart block
## 21911 Other specified congenital malformations of heart
## 21912 Congenital malformation of heart, unspecified
## 21913 Patent ductus arteriosus
## 21914 Coarctation of aorta
## 21915 Interruption of aortic arch
## 21916 Other atresia of aorta
## 21917 Supravalvular aortic stenosis
## 21918 Congenital malformation of aorta unspecified
## 21919 Absence and aplasia of aorta
## 21920 Hypoplasia of aorta
## 21921 Congenital aneurysm of aorta
## 21922 Congenital dilation of aorta
## 21923 Double aortic arch
## 21924 Tortuous aortic arch
## 21925 Right aortic arch
## 21926 Anomalous origin of subclavian artery
## 21927 Other congenital malformations of aorta
## 21928 Atresia of pulmonary artery
## 21929 Stenosis of pulmonary artery
## 21930 Coarctation of pulmonary artery
## 21931 Congenital pulmonary arteriovenous malformation
## 21932 Other congenital malformations of pulmonary artery
## 21933 Other congenital malformations of other great arteries
## 21934 Congenital malformation of great arteries, unspecified
## 21935 Congenital stenosis of vena cava
## 21936 Persistent left superior vena cava
## 21937 Total anomalous pulmonary venous connection
## 21938 Partial anomalous pulmonary venous connection
## 21939 Anomalous pulmonary venous connection, unspecified
## 21940 Anomalous portal venous connection
## 21941 Portal vein-hepatic artery fistula
## 21942 Other congenital malformations of great veins
## 21943 Congenital malformation of great vein, unspecified
## 21944 Congenital absence and hypoplasia of umbilical artery
## 21945 Congenital renal artery stenosis
## 21946 Other congenital malformations of renal artery
## 21947 Arteriovenous malformation, site unspecified
## 21948 Arteriovenous malformation of vessel of upper limb
## 21949 Arteriovenous malformation of vessel of lower limb
## 21950 Arteriovenous malformation of digestive system vessel
## 21951 Arteriovenous malformation of renal vessel
## 21952 Arteriovenous malformation, other site
## 21953 Congenital phlebectasia
## 21954 Other specified congenital malformations of peripheral vascular system
## 21955 Congenital malformation of peripheral vascular system, unspecified
## 21956 Arteriovenous malformation of precerebral vessels
## 21957 Other malformations of precerebral vessels
## 21958 Arteriovenous malformation of cerebral vessels
## 21959 Other malformations of cerebral vessels
## 21960 Other specified congenital malformations of circulatory system
## 21961 Congenital malformation of circulatory system, unspecified
## 21962 Choanal atresia
## 21963 Agenesis and underdevelopment of nose
## 21964 Fissured, notched and cleft nose
## 21965 Congenital perforated nasal septum
## 21966 Other congenital malformations of nose
## 21967 Congenital malformation of nose, unspecified
## 21968 Web of larynx
## 21969 Congenital subglottic stenosis
## 21970 Laryngeal hypoplasia
## 21971 Laryngocele
## 21972 Congenital laryngomalacia
## 21973 Other congenital malformations of larynx
## 21974 Congenital malformation of larynx, unspecified
## 21975 Congenital tracheomalacia
## 21976 Other congenital malformations of trachea
## 21977 Congenital bronchomalacia
## 21978 Congenital stenosis of bronchus
## 21979 Other congenital malformations of bronchus
## 21980 Congenital cystic lung
## 21981 Accessory lobe of lung
## 21982 Sequestration of lung
## 21983 Agenesis of lung
## 21984 Congenital bronchiectasis
## 21985 Ectopic tissue in lung
## 21986 Congenital hypoplasia and dysplasia of lung
## 21987 Other congenital malformations of lung
## 21988 Congenital malformation of lung, unspecified
## 21989 Anomaly of pleura
## 21990 Congenital cyst of mediastinum
## 21991 Other specified congenital malformations of respiratory system
## 21992 Congenital malformation of respiratory system, unspecified
## 21993 Cleft hard palate
## 21994 Cleft soft palate
## 21995 Cleft hard palate with cleft soft palate
## 21996 Cleft uvula
## 21997 Cleft palate, unspecified
## 21998 Cleft lip, bilateral
## 21999 Cleft lip, median
## 22000 Cleft lip, unilateral
## 22001 Cleft hard palate with bilateral cleft lip
## 22002 Cleft hard palate with unilateral cleft lip
## 22003 Cleft soft palate with bilateral cleft lip
## 22004 Cleft soft palate with unilateral cleft lip
## 22005 Cleft hard and soft palate with bilateral cleft lip
## 22006 Cleft hard and soft palate with unilateral cleft lip
## 22007 Unspecified cleft palate with bilateral cleft lip
## 22008 Unspecified cleft palate with unilateral cleft lip
## 22009 Congenital malformations of lips, not elsewhere classified
## 22010 Ankyloglossia
## 22011 Macroglossia
## 22012 Other congenital malformations of tongue
## 22013 Congenital malformations of salivary glands and ducts
## 22014 Congenital malformations of palate, not elsewhere classified
## 22015 Other congenital malformations of mouth
## 22016 Congenital pharyngeal pouch
## 22017 Other congenital malformations of pharynx
## 22018 Atresia of esophagus without fistula
## 22019 Atresia of esophagus with tracheo-esophageal fistula
## 22020 Congenital tracheo-esophageal fistula without atresia
## 22021 Congenital stenosis and stricture of esophagus
## 22022 Esophageal web
## 22023 Congenital dilatation of esophagus
## 22024 Congenital diverticulum of esophagus
## 22025 Other congenital malformations of esophagus
## 22026 Congenital malformation of esophagus, unspecified
## 22027 Congenital hypertrophic pyloric stenosis
## 22028 Congenital hiatus hernia
## 22029 Other specified congenital malformations of stomach
## 22030 Congenital malformation of stomach, unspecified
## 22031 Other specified congenital malformations of upper alimentary tract
## 22032 Congenital malformation of upper alimentary tract, unspecified
## 22033 Congenital absence, atresia and stenosis of duodenum
## 22034 Congenital absence, atresia and stenosis of jejunum
## 22035 Congenital absence, atresia and stenosis of ileum
## 22036 Congenital absence, atresia and stenosis of other specified parts of small intestine
## 22037 Congenital absence, atresia and stenosis of small intestine, part unspecified
## 22038 Congenital absence, atresia and stenosis of rectum with fistula
## 22039 Congenital absence, atresia and stenosis of rectum without fistula
## 22040 Congenital absence, atresia and stenosis of anus with fistula
## 22041 Congenital absence, atresia and stenosis of anus without fistula
## 22042 Congenital absence, atresia and stenosis of other parts of large intestine
## 22043 Congenital absence, atresia and stenosis of large intestine, part unspecified
## 22044 Meckel's diverticulum (displaced) (hypertrophic)
## 22045 Hirschsprung's disease
## 22046 Other congenital functional disorders of colon
## 22047 Congenital malformations of intestinal fixation
## 22048 Duplication of intestine
## 22049 Ectopic anus
## 22050 Congenital fistula of rectum and anus
## 22051 Persistent cloaca
## 22052 Other specified congenital malformations of intestine
## 22053 Congenital malformation of intestine, unspecified
## 22054 Agenesis, aplasia and hypoplasia of gallbladder
## 22055 Other congenital malformations of gallbladder
## 22056 Atresia of bile ducts
## 22057 Congenital stenosis and stricture of bile ducts
## 22058 Choledochal cyst
## 22059 Other congenital malformations of bile ducts
## 22060 Cystic disease of liver
## 22061 Other congenital malformations of liver
## 22062 Agenesis, aplasia and hypoplasia of pancreas
## 22063 Annular pancreas
## 22064 Congenital pancreatic cyst
## 22065 Other congenital malformations of pancreas and pancreatic duct
## 22066 Other specified congenital malformations of digestive system
## 22067 Congenital malformation of digestive system, unspecified
## 22068 Congenital absence of ovary, unilateral
## 22069 Congenital absence of ovary, bilateral
## 22070 Developmental ovarian cyst
## 22071 Congenital torsion of ovary
## 22072 Accessory ovary
## 22073 Ovarian streak
## 22074 Other congenital malformation of ovary
## 22075 Embryonic cyst of fallopian tube
## 22076 Embryonic cyst of broad ligament
## 22077 Other congenital malformations of fallopian tube and broad ligament
## 22078 Agenesis and aplasia of uterus
## 22079 Doubling of uterus with doubling of cervix and vagina without obstruction
## 22080 Doubling of uterus with doubling of cervix and vagina with obstruction
## 22081 Other doubling of uterus, unspecified
## 22082 Other complete doubling of uterus
## 22083 Other partial doubling of uterus
## 22084 Other doubling of uterus, other specified
## 22085 Bicornate uterus
## 22086 Unicornate uterus
## 22087 Agenesis and aplasia of cervix
## 22088 Embryonic cyst of cervix
## 22089 Congenital fistulae between uterus and digestive and urinary tracts
## 22090 Arcuate uterus
## 22091 Hypoplasia of uterus
## 22092 Other congenital malformations of uterus
## 22093 Cervical duplication
## 22094 Hypoplasia of cervix
## 22095 Other congenital malformations of cervix
## 22096 Congenital malformation of uterus and cervix, unspecified
## 22097 Congenital absence of vagina
## 22098 Doubling of vagina, unspecified
## 22099 Transverse vaginal septum
## 22100 Longitudinal vaginal septum, nonobstructing
## 22101 Longitudinal vaginal septum, obstructing, right side
## 22102 Longitudinal vaginal septum, obstructing, left side
## 22103 Longitudinal vaginal septum, microperforate, right side
## 22104 Longitudinal vaginal septum, microperforate, left side
## 22105 Other and unspecified longitudinal vaginal septum
## 22106 Congenital rectovaginal fistula
## 22107 Imperforate hymen
## 22108 Other congenital malformations of vagina
## 22109 Fusion of labia
## 22110 Congenital malformation of clitoris
## 22111 Unspecified congenital malformations of vulva
## 22112 Congenital absence of vulva
## 22113 Other congenital malformations of vulva
## 22114 Other specified congenital malformations of female genitalia
## 22115 Congenital malformation of female genitalia, unspecified
## 22116 Ectopic testis, unspecified
## 22117 Ectopic testis, unilateral
## 22118 Ectopic testes, bilateral
## 22119 Unspecified undescended testicle, unilateral
## 22120 Unilateral intraabdominal testis
## 22121 Unilateral inguinal testis
## 22122 Ectopic perineal testis, unilateral
## 22123 Unilateral high scrotal testis
## 22124 Undescended testicle, unspecified, bilateral
## 22125 Bilateral intraabdominal testes
## 22126 Bilateral inguinal testes
## 22127 Ectopic perineal testis, bilateral
## 22128 Bilateral high scrotal testes
## 22129 Undescended testicle, unspecified
## 22130 Hypospadias, balanic
## 22131 Hypospadias, penile
## 22132 Hypospadias, penoscrotal
## 22133 Hypospadias, perineal
## 22134 Congenital chordee
## 22135 Other hypospadias
## 22136 Hypospadias, unspecified
## 22137 Absence and aplasia of testis
## 22138 Hypoplasia of testis and scrotum
## 22139 Unspecified congenital malformations of testis and scrotum
## 22140 Polyorchism
## 22141 Retractile testis
## 22142 Scrotal transposition
## 22143 Other congenital malformations of testis and scrotum
## 22144 Atresia of vas deferens
## 22145 Other congenital malformations of vas deferens, epididymis, seminal vesicles and prostate
## 22146 Congenital absence and aplasia of penis
## 22147 Curvature of penis (lateral)
## 22148 Hypoplasia of penis
## 22149 Congenital torsion of penis
## 22150 Hidden penis
## 22151 Other congenital malformation of penis
## 22152 Congenital vasocutaneous fistula
## 22153 Other specified congenital malformations of male genital organs
## 22154 Congenital malformation of male genital organ, unspecified
## 22155 Hermaphroditism, not elsewhere classified
## 22156 Male pseudohermaphroditism, not elsewhere classified
## 22157 Female pseudohermaphroditism, not elsewhere classified
## 22158 Pseudohermaphroditism, unspecified
## 22159 Indeterminate sex, unspecified
## 22160 Renal agenesis, unilateral
## 22161 Renal agenesis, bilateral
## 22162 Renal agenesis, unspecified
## 22163 Renal hypoplasia, unilateral
## 22164 Renal hypoplasia, bilateral
## 22165 Renal hypoplasia, unspecified
## 22166 Potter's syndrome
## 22167 Congenital renal cyst, unspecified
## 22168 Congenital single renal cyst
## 22169 Congenital multiple renal cysts
## 22170 Cystic dilatation of collecting ducts
## 22171 Other polycystic kidney, infantile type
## 22172 Polycystic kidney, adult type
## 22173 Polycystic kidney, unspecified
## 22174 Renal dysplasia
## 22175 Medullary cystic kidney
## 22176 Other cystic kidney diseases
## 22177 Cystic kidney disease, unspecified
## 22178 Congenital hydronephrosis
## 22179 Congenital occlusion of ureter, unspecified
## 22180 Congenital occlusion of ureteropelvic junction
## 22181 Congenital occlusion of ureterovesical orifice
## 22182 Congenital megaureter
## 22183 Congenital ureterocele, orthotopic
## 22184 Cecoureterocele
## 22185 Other obstructive defects of renal pelvis and ureter
## 22186 Agenesis of ureter
## 22187 Duplication of ureter
## 22188 Malposition of ureter, unspecified
## 22189 Deviation of ureter
## 22190 Displacement of ureter
## 22191 Anomalous implantation of ureter
## 22192 Other malposition of ureter
## 22193 Congenital vesico-uretero-renal reflux
## 22194 Other congenital malformations of ureter
## 22195 Accessory kidney
## 22196 Lobulated, fused and horseshoe kidney
## 22197 Ectopic kidney
## 22198 Hyperplastic and giant kidney
## 22199 Other specified congenital malformations of kidney
## 22200 Congenital malformation of kidney, unspecified
## 22201 Epispadias
## 22202 Exstrophy of urinary bladder, unspecified
## 22203 Supravesical fissure of urinary bladder
## 22204 Cloacal exstrophy of urinary bladder
## 22205 Other exstrophy of urinary bladder
## 22206 Congenital posterior urethral valves
## 22207 Congenital bladder neck obstruction
## 22208 Congenital stricture of urethra
## 22209 Congenital stricture of urinary meatus
## 22210 Other atresia and stenosis of urethra and bladder neck
## 22211 Malformation of urachus
## 22212 Congenital absence of bladder and urethra
## 22213 Congenital diverticulum of bladder
## 22214 Unspecified congenital malformation of bladder and urethra
## 22215 Congenital prolapse of urethra
## 22216 Congenital prolapse of urinary meatus
## 22217 Congenital urethrorectal fistula
## 22218 Double urethra
## 22219 Double urinary meatus
## 22220 Other congenital malformations of bladder and urethra
## 22221 Other specified congenital malformations of urinary system
## 22222 Congenital malformation of urinary system, unspecified
## 22223 Congenital dislocation of unspecified hip, unilateral
## 22224 Congenital dislocation of right hip, unilateral
## 22225 Congenital dislocation of left hip, unilateral
## 22226 Congenital dislocation of hip, bilateral
## 22227 Congenital dislocation of hip, unspecified
## 22228 Congenital partial dislocation of unspecified hip, unilateral
## 22229 Congenital partial dislocation of right hip, unilateral
## 22230 Congenital partial dislocation of left hip, unilateral
## 22231 Congenital partial dislocation of hip, bilateral
## 22232 Congenital partial dislocation of hip, unspecified
## 22233 Congenital unstable hip
## 22234 Congenital coxa valga
## 22235 Congenital coxa vara
## 22236 Other specified congenital deformities of hip
## 22237 Congenital deformity of hip, unspecified
## 22238 Congenital talipes equinovarus, unspecified foot
## 22239 Congenital talipes equinovarus, right foot
## 22240 Congenital talipes equinovarus, left foot
## 22241 Congenital talipes calcaneovarus, unspecified foot
## 22242 Congenital talipes calcaneovarus, right foot
## 22243 Congenital talipes calcaneovarus, left foot
## 22244 Congenital metatarsus primus varus, right foot
## 22245 Congenital metatarsus primus varus, left foot
## 22246 Congenital metatarsus primus varus, unspecified foot
## 22247 Congenital metatarsus adductus, right foot
## 22248 Congenital metatarsus adductus, left foot
## 22249 Congenital metatarsus adductus, unspecified foot
## 22250 Other congenital varus deformities of feet, unspecified foot
## 22251 Other congenital varus deformities of feet, right foot
## 22252 Other congenital varus deformities of feet, left foot
## 22253 Congenital talipes calcaneovalgus, unspecified foot
## 22254 Congenital talipes calcaneovalgus, right foot
## 22255 Congenital talipes calcaneovalgus, left foot
## 22256 Congenital pes planus, unspecified foot
## 22257 Congenital pes planus, right foot
## 22258 Congenital pes planus, left foot
## 22259 Other congenital valgus deformities of feet
## 22260 Congenital pes cavus, unspecified foot
## 22261 Congenital pes cavus, right foot
## 22262 Congenital pes cavus, left foot
## 22263 Congenital vertical talus deformity, unspecified foot
## 22264 Congenital vertical talus deformity, right foot
## 22265 Congenital vertical talus deformity, left foot
## 22266 Other specified congenital deformities of feet
## 22267 Congenital deformity of feet, unspecified, unspecified foot
## 22268 Congenital deformity of feet, unspecified, right foot
## 22269 Congenital deformity of feet, unspecified, left foot
## 22270 Congenital facial asymmetry
## 22271 Congenital compression facies
## 22272 Dolichocephaly
## 22273 Plagiocephaly
## 22274 Other congenital deformities of skull, face and jaw
## 22275 Congenital deformity of spine
## 22276 Pectus excavatum
## 22277 Pectus carinatum
## 22278 Other congenital deformities of chest
## 22279 Congenital deformity of sternocleidomastoid muscle
## 22280 Congenital deformity of finger(s) and hand
## 22281 Congenital deformity of knee
## 22282 Congenital bowing of femur
## 22283 Congenital bowing of tibia and fibula
## 22284 Congenital bowing of long bones of leg, unspecified
## 22285 Discoid meniscus
## 22286 Other specified congenital musculoskeletal deformities
## 22287 Accessory finger(s)
## 22288 Accessory thumb(s)
## 22289 Accessory toe(s)
## 22290 Polydactyly, unspecified
## 22291 Fused fingers, unspecified hand
## 22292 Fused fingers, right hand
## 22293 Fused fingers, left hand
## 22294 Fused fingers, bilateral
## 22295 Webbed fingers, unspecified hand
## 22296 Webbed fingers, right hand
## 22297 Webbed fingers, left hand
## 22298 Webbed fingers, bilateral
## 22299 Fused toes, unspecified foot
## 22300 Fused toes, right foot
## 22301 Fused toes, left foot
## 22302 Fused toes, bilateral
## 22303 Webbed toes, unspecified foot
## 22304 Webbed toes, right foot
## 22305 Webbed toes, left foot
## 22306 Webbed toes, bilateral
## 22307 Polysyndactyly, unspecified
## 22308 Syndactyly, unspecified
## 22309 Congenital complete absence of unspecified upper limb
## 22310 Congenital complete absence of right upper limb
## 22311 Congenital complete absence of left upper limb
## 22312 Congenital complete absence of upper limb, bilateral
## 22313 Congenital absence of unspecified upper arm and forearm with hand present
## 22314 Congenital absence of right upper arm and forearm with hand present
## 22315 Congenital absence of left upper arm and forearm with hand present
## 22316 Congenital absence of upper arm and forearm with hand present, bilateral
## 22317 Congenital absence of both forearm and hand, unspecified upper limb
## 22318 Congenital absence of both forearm and hand, right upper limb
## 22319 Congenital absence of both forearm and hand, left upper limb
## 22320 Congenital absence of both forearm and hand, bilateral
## 22321 Congenital absence of unspecified hand and finger
## 22322 Congenital absence of right hand and finger
## 22323 Congenital absence of left hand and finger
## 22324 Congenital absence of hand and finger, bilateral
## 22325 Longitudinal reduction defect of unspecified radius
## 22326 Longitudinal reduction defect of right radius
## 22327 Longitudinal reduction defect of left radius
## 22328 Longitudinal reduction defect of radius, bilateral
## 22329 Longitudinal reduction defect of unspecified ulna
## 22330 Longitudinal reduction defect of right ulna
## 22331 Longitudinal reduction defect of left ulna
## 22332 Longitudinal reduction defect of ulna, bilateral
## 22333 Lobster-claw hand, unspecified hand
## 22334 Lobster-claw right hand
## 22335 Lobster-claw left hand
## 22336 Lobster-claw hand, bilateral
## 22337 Congenital shortening of right upper limb
## 22338 Congenital shortening of left upper limb
## 22339 Congenital shortening of upper limb, bilateral
## 22340 Congenital shortening of unspecified upper limb
## 22341 Other reduction defects of right upper limb
## 22342 Other reduction defects of left upper limb
## 22343 Other reduction defects of upper limb, bilateral
## 22344 Other reduction defects of unspecified upper limb
## 22345 Unspecified reduction defect of unspecified upper limb
## 22346 Unspecified reduction defect of right upper limb
## 22347 Unspecified reduction defect of left upper limb
## 22348 Unspecified reduction defect of upper limb, bilateral
## 22349 Congenital complete absence of unspecified lower limb
## 22350 Congenital complete absence of right lower limb
## 22351 Congenital complete absence of left lower limb
## 22352 Congenital complete absence of lower limb, bilateral
## 22353 Congenital absence of unspecified thigh and lower leg with foot present
## 22354 Congenital absence of right thigh and lower leg with foot present
## 22355 Congenital absence of left thigh and lower leg with foot present
## 22356 Congenital absence of thigh and lower leg with foot present, bilateral
## 22357 Congenital absence of both lower leg and foot, unspecified lower limb
## 22358 Congenital absence of both lower leg and foot, right lower limb
## 22359 Congenital absence of both lower leg and foot, left lower limb
## 22360 Congenital absence of both lower leg and foot, bilateral
## 22361 Congenital absence of unspecified foot and toe(s)
## 22362 Congenital absence of right foot and toe(s)
## 22363 Congenital absence of left foot and toe(s)
## 22364 Congenital absence of foot and toe(s), bilateral
## 22365 Longitudinal reduction defect of unspecified femur
## 22366 Longitudinal reduction defect of right femur
## 22367 Longitudinal reduction defect of left femur
## 22368 Longitudinal reduction defect of femur, bilateral
## 22369 Longitudinal reduction defect of unspecified tibia
## 22370 Longitudinal reduction defect of right tibia
## 22371 Longitudinal reduction defect of left tibia
## 22372 Longitudinal reduction defect of tibia, bilateral
## 22373 Longitudinal reduction defect of unspecified fibula
## 22374 Longitudinal reduction defect of right fibula
## 22375 Longitudinal reduction defect of left fibula
## 22376 Longitudinal reduction defect of fibula, bilateral
## 22377 Split foot, unspecified lower limb
## 22378 Split foot, right lower limb
## 22379 Split foot, left lower limb
## 22380 Split foot, bilateral
## 22381 Congenital shortening of right lower limb
## 22382 Congenital shortening of left lower limb
## 22383 Congenital shortening of lower limb, bilateral
## 22384 Congenital shortening of unspecified lower limb
## 22385 Other reduction defects of right lower limb
## 22386 Other reduction defects of left lower limb
## 22387 Other reduction defects of lower limb, bilateral
## 22388 Other reduction defects of unspecified lower limb
## 22389 Unspecified reduction defect of unspecified lower limb
## 22390 Unspecified reduction defect of right lower limb
## 22391 Unspecified reduction defect of left lower limb
## 22392 Unspecified reduction defect of lower limb, bilateral
## 22393 Congenital absence of unspecified limb(s)
## 22394 Phocomelia, unspecified limb(s)
## 22395 Other reduction defects of unspecified limb(s)
## 22396 Other congenital malformations of upper limb(s), including shoulder girdle
## 22397 Congenital malformation of knee
## 22398 Other congenital malformations of lower limb(s), including pelvic girdle
## 22399 Arthrogryposis multiplex congenita
## 22400 Other specified congenital malformations of limb(s)
## 22401 Unspecified congenital malformation of limb(s)
## 22402 Craniosynostosis
## 22403 Craniofacial dysostosis
## 22404 Hypertelorism
## 22405 Macrocephaly
## 22406 Mandibulofacial dysostosis
## 22407 Oculomandibular dysostosis
## 22408 Other specified congenital malformations of skull and face bones
## 22409 Congenital malformation of skull and face bones, unspecified
## 22410 Spina bifida occulta
## 22411 Klippel-Feil syndrome
## 22412 Congenital spondylolisthesis
## 22413 Congenital scoliosis due to congenital bony malformation
## 22414 Congenital kyphosis, occipito-atlanto-axial region
## 22415 Congenital kyphosis, cervical region
## 22416 Congenital kyphosis, cervicothoracic region
## 22417 Congenital kyphosis, thoracic region
## 22418 Congenital kyphosis, thoracolumbar region
## 22419 Congenital kyphosis, unspecified region
## 22420 Congenital lordosis, thoracolumbar region
## 22421 Congenital lordosis, lumbar region
## 22422 Congenital lordosis, lumbosacral region
## 22423 Congenital lordosis, sacral and sacrococcygeal region
## 22424 Congenital lordosis, unspecified region
## 22425 Other congenital malformations of spine, not associated with scoliosis
## 22426 Cervical rib
## 22427 Other congenital malformations of ribs
## 22428 Congenital malformation of sternum
## 22429 Other congenital malformations of bony thorax
## 22430 Congenital malformation of bony thorax, unspecified
## 22431 Achondrogenesis
## 22432 Thanatophoric short stature
## 22433 Short rib syndrome
## 22434 Chondrodysplasia punctata
## 22435 Achondroplasia
## 22436 Diastrophic dysplasia
## 22437 Chondroectodermal dysplasia
## 22438 Spondyloepiphyseal dysplasia
## 22439 Other osteochondrodysplasia with defects of growth of tubular bones and spine
## 22440 Osteochondrodysplasia with defects of growth of tubular bones and spine, unspecified
## 22441 Osteogenesis imperfecta
## 22442 Polyostotic fibrous dysplasia
## 22443 Osteopetrosis
## 22444 Progressive diaphyseal dysplasia
## 22445 Enchondromatosis
## 22446 Metaphyseal dysplasia
## 22447 Multiple congenital exostoses
## 22448 Other specified osteochondrodysplasias
## 22449 Osteochondrodysplasia, unspecified
## 22450 Congenital diaphragmatic hernia
## 22451 Other congenital malformations of diaphragm
## 22452 Exomphalos
## 22453 Gastroschisis
## 22454 Prune belly syndrome
## 22455 Congenital hernia of bladder
## 22456 Other congenital malformations of abdominal wall
## 22457 Ehlers-Danlos syndrome, unspecified
## 22458 Classical Ehlers-Danlos syndrome
## 22459 Hypermobile Ehlers-Danlos syndrome
## 22460 Vascular Ehlers-Danlos syndrome
## 22461 Other Ehlers-Danlos syndromes
## 22462 Other congenital malformations of musculoskeletal system
## 22463 Congenital malformation of musculoskeletal system, unspecified
## 22464 Ichthyosis vulgaris
## 22465 X-linked ichthyosis
## 22466 Lamellar ichthyosis
## 22467 Congenital bullous ichthyosiform erythroderma
## 22468 Harlequin fetus
## 22469 Other congenital ichthyosis
## 22470 Congenital ichthyosis, unspecified
## 22471 Epidermolysis bullosa simplex
## 22472 Epidermolysis bullosa letalis
## 22473 Epidermolysis bullosa dystrophica
## 22474 Other epidermolysis bullosa
## 22475 Epidermolysis bullosa, unspecified
## 22476 Hereditary lymphedema
## 22477 Xeroderma pigmentosum
## 22478 Congenital cutaneous mastocytosis
## 22479 Incontinentia pigmenti
## 22480 Ectodermal dysplasia (anhidrotic)
## 22481 Congenital non-neoplastic nevus
## 22482 Congenital sacral dimple
## 22483 Other specified congenital malformations of skin
## 22484 Congenital malformation of skin, unspecified
## 22485 Congenital absence of breast with absent nipple
## 22486 Accessory breast
## 22487 Absent nipple
## 22488 Accessory nipple
## 22489 Other congenital malformations of breast
## 22490 Congenital malformation of breast, unspecified
## 22491 Congenital alopecia
## 22492 Congenital morphological disturbances of hair, not elsewhere classified
## 22493 Other congenital malformations of hair
## 22494 Anonychia
## 22495 Congenital leukonychia
## 22496 Enlarged and hypertrophic nails
## 22497 Other congenital malformations of nails
## 22498 Other specified congenital malformations of integument
## 22499 Congenital malformation of integument, unspecified
## 22500 Neurofibromatosis, unspecified
## 22501 Neurofibromatosis, type 1
## 22502 Neurofibromatosis, type 2
## 22503 Schwannomatosis
## 22504 Other neurofibromatosis
## 22505 Tuberous sclerosis
## 22506 Other phakomatoses, not elsewhere classified
## 22507 Phakomatosis, unspecified
## 22508 Fetal alcohol syndrome (dysmorphic)
## 22509 Fetal hydantoin syndrome
## 22510 Dysmorphism due to warfarin
## 22511 Other congenital malformation syndromes due to known exogenous causes
## 22512 Congenital malformation syndromes predominantly affecting facial appearance
## 22513 Prader-Willi syndrome
## 22514 Other congenital malformation syndromes predominantly associated with short stature
## 22515 Congenital malformation syndromes predominantly involving limbs
## 22516 Congenital malformation syndromes involving early overgrowth
## 22517 Marfan's syndrome, unspecified
## 22518 Marfan's syndrome with aortic dilation
## 22519 Marfan's syndrome with other cardiovascular manifestations
## 22520 Marfan's syndrome with ocular manifestations
## 22521 Marfan's syndrome with skeletal manifestation
## 22522 Other congenital malformation syndromes with other skeletal changes
## 22523 Alport syndrome
## 22524 Arterial tortuosity syndrome
## 22525 Other specified congenital malformation syndromes, not elsewhere classified
## 22526 Asplenia (congenital)
## 22527 Congenital malformations of spleen
## 22528 Congenital malformations of adrenal gland
## 22529 Congenital malformations of other endocrine glands
## 22530 Situs inversus
## 22531 Conjoined twins
## 22532 Multiple congenital malformations, not elsewhere classified
## 22533 Other specified congenital malformations
## 22534 Congenital malformation, unspecified
## 22535 Trisomy 21, nonmosaicism (meiotic nondisjunction)
## 22536 Trisomy 21, mosaicism (mitotic nondisjunction)
## 22537 Trisomy 21, translocation
## 22538 Down syndrome, unspecified
## 22539 Trisomy 18, nonmosaicism (meiotic nondisjunction)
## 22540 Trisomy 18, mosaicism (mitotic nondisjunction)
## 22541 Trisomy 18, translocation
## 22542 Trisomy 18, unspecified
## 22543 Trisomy 13, nonmosaicism (meiotic nondisjunction)
## 22544 Trisomy 13, mosaicism (mitotic nondisjunction)
## 22545 Trisomy 13, translocation
## 22546 Trisomy 13, unspecified
## 22547 Whole chromosome trisomy, nonmosaicism (meiotic nondisjunction)
## 22548 Whole chromosome trisomy, mosaicism (mitotic nondisjunction)
## 22549 Partial trisomy
## 22550 Duplications with other complex rearrangements
## 22551 Marker chromosomes in normal individual
## 22552 Marker chromosomes in abnormal individual
## 22553 Triploidy and polyploidy
## 22554 Other specified trisomies and partial trisomies of autosomes
## 22555 Trisomy and partial trisomy of autosomes, unspecified
## 22556 Whole chromosome monosomy, nonmosaicism (meiotic nondisjunction)
## 22557 Whole chromosome monosomy, mosaicism (mitotic nondisjunction)
## 22558 Chromosome replaced with ring, dicentric or isochromosome
## 22559 Deletion of short arm of chromosome 4
## 22560 Deletion of short arm of chromosome 5
## 22561 Angelman syndrome
## 22562 Other deletions of part of a chromosome
## 22563 Deletions with other complex rearrangements
## 22564 Velo-cardio-facial syndrome
## 22565 Williams syndrome
## 22566 Other microdeletions
## 22567 Other deletions from the autosomes
## 22568 Deletion from autosomes, unspecified
## 22569 Balanced translocation and insertion in normal individual
## 22570 Chromosome inversion in normal individual
## 22571 Balanced autosomal rearrangement in abnormal individual
## 22572 Balanced sex/autosomal rearrangement in abnormal individual
## 22573 Individual with autosomal fragile site
## 22574 Other balanced rearrangements and structural markers
## 22575 Balanced rearrangement and structural marker, unspecified
## 22576 Karyotype 45, X
## 22577 Karyotype 46, X iso (Xq)
## 22578 Karyotype 46, X with abnormal sex chromosome, except iso (Xq)
## 22579 Mosaicism, 45, X/46, XX or XY
## 22580 Mosaicism, 45, X/other cell line(s) with abnormal sex chromosome
## 22581 Other variants of Turner's syndrome
## 22582 Turner's syndrome, unspecified
## 22583 Karyotype 47, XXX
## 22584 Female with more than three X chromosomes
## 22585 Mosaicism, lines with various numbers of X chromosomes
## 22586 Female with 46, XY karyotype
## 22587 Other specified sex chromosome abnormalities, female phenotype
## 22588 Sex chromosome abnormality, female phenotype, unspecified
## 22589 Klinefelter syndrome karyotype 47, XXY
## 22590 Klinefelter syndrome, male with more than two X chromosomes
## 22591 Other male with 46, XX karyotype
## 22592 Klinefelter syndrome, unspecified
## 22593 Karyotype 47, XYY
## 22594 Male with structurally abnormal sex chromosome
## 22595 Male with sex chromosome mosaicism
## 22596 Other specified sex chromosome abnormalities, male phenotype
## 22597 Sex chromosome abnormality, male phenotype, unspecified
## 22598 Chimera 46, XX/46, XY
## 22599 46, XX true hermaphrodite
## 22600 Fragile X chromosome
## 22601 Other specified chromosome abnormalities
## 22602 Chromosomal abnormality, unspecified
## 22603 Tachycardia, unspecified
## 22604 Bradycardia, unspecified
## 22605 Palpitations
## 22606 Other abnormalities of heart beat
## 22607 Unspecified abnormalities of heart beat
## 22608 Benign and innocent cardiac murmurs
## 22609 Cardiac murmur, unspecified
## 22610 Other cardiac sounds
## 22611 Elevated blood-pressure reading, without diagnosis of hypertension
## 22612 Nonspecific low blood-pressure reading
## 22613 Epistaxis
## 22614 Hemorrhage from throat
## 22615 Hemoptysis
## 22616 Acute idiopathic pulmonary hemorrhage in infants
## 22617 Hemorrhage from other sites in respiratory passages
## 22618 Hemorrhage from respiratory passages, unspecified
## 22619 Cough
## 22620 Dyspnea, unspecified
## 22621 Orthopnea
## 22622 Shortness of breath
## 22623 Acute respiratory distress
## 22624 Other forms of dyspnea
## 22625 Stridor
## 22626 Wheezing
## 22627 Periodic breathing
## 22628 Hyperventilation
## 22629 Mouth breathing
## 22630 Hiccough
## 22631 Sneezing
## 22632 Apnea, not elsewhere classified
## 22633 Tachypnea, not elsewhere classified
## 22634 Snoring
## 22635 Other abnormalities of breathing
## 22636 Unspecified abnormalities of breathing
## 22637 Pain in throat
## 22638 Chest pain on breathing
## 22639 Precordial pain
## 22640 Pleurodynia
## 22641 Intercostal pain
## 22642 Other chest pain
## 22643 Chest pain, unspecified
## 22644 Asphyxia
## 22645 Hypoxemia
## 22646 Pleurisy
## 22647 Respiratory arrest
## 22648 Abnormal sputum
## 22649 Nasal congestion
## 22650 Postnasal drip
## 22651 Other specified symptoms and signs involving the circulatory and respiratory systems
## 22652 Acute abdomen
## 22653 Upper abdominal pain, unspecified
## 22654 Right upper quadrant pain
## 22655 Left upper quadrant pain
## 22656 Epigastric pain
## 22657 Pelvic and perineal pain
## 22658 Lower abdominal pain, unspecified
## 22659 Right lower quadrant pain
## 22660 Left lower quadrant pain
## 22661 Periumbilical pain
## 22662 Right upper quadrant abdominal tenderness
## 22663 Left upper quadrant abdominal tenderness
## 22664 Right lower quadrant abdominal tenderness
## 22665 Left lower quadrant abdominal tenderness
## 22666 Periumbilic abdominal tenderness
## 22667 Epigastric abdominal tenderness
## 22668 Generalized abdominal tenderness
## 22669 Abdominal tenderness, unspecified site
## 22670 Right upper quadrant rebound abdominal tenderness
## 22671 Left upper quadrant rebound abdominal tenderness
## 22672 Right lower quadrant rebound abdominal tenderness
## 22673 Left lower quadrant rebound abdominal tenderness
## 22674 Periumbilic rebound abdominal tenderness
## 22675 Epigastric rebound abdominal tenderness
## 22676 Generalized rebound abdominal tenderness
## 22677 Rebound abdominal tenderness, unspecified site
## 22678 Colic
## 22679 Generalized abdominal pain
## 22680 Unspecified abdominal pain
## 22681 Nausea
## 22682 Vomiting, unspecified
## 22683 Vomiting without nausea
## 22684 Projectile vomiting
## 22685 Vomiting of fecal matter
## 22686 Bilious vomiting
## 22687 Cyclical vomiting syndrome unrelated to migraine
## 22688 Nausea with vomiting, unspecified
## 22689 Heartburn
## 22690 Aphagia
## 22691 Dysphagia, unspecified
## 22692 Dysphagia, oral phase
## 22693 Dysphagia, oropharyngeal phase
## 22694 Dysphagia, pharyngeal phase
## 22695 Dysphagia, pharyngoesophageal phase
## 22696 Other dysphagia
## 22697 Abdominal distension (gaseous)
## 22698 Gas pain
## 22699 Eructation
## 22700 Flatulence
## 22701 Incomplete defecation
## 22702 Fecal smearing
## 22703 Fecal urgency
## 22704 Full incontinence of feces
## 22705 Hepatomegaly, not elsewhere classified
## 22706 Splenomegaly, not elsewhere classified
## 22707 Hepatomegaly with splenomegaly, not elsewhere classified
## 22708 Unspecified jaundice
## 22709 Malignant ascites
## 22710 Other ascites
## 22711 Intra-abdominal and pelvic swelling, mass and lump, unspecified site
## 22712 Right upper quadrant abdominal swelling, mass and lump
## 22713 Left upper quadrant abdominal swelling, mass and lump
## 22714 Right lower quadrant abdominal swelling, mass and lump
## 22715 Left lower quadrant abdominal swelling, mass and lump
## 22716 Periumbilic swelling, mass or lump
## 22717 Epigastric swelling, mass or lump
## 22718 Generalized intra-abdominal and pelvic swelling, mass and lump
## 22719 Other intra-abdominal and pelvic swelling, mass and lump
## 22720 Absent bowel sounds
## 22721 Hyperactive bowel sounds
## 22722 Other abnormal bowel sounds
## 22723 Visible peristalsis
## 22724 Abdominal rigidity, unspecified site
## 22725 Right upper quadrant abdominal rigidity
## 22726 Left upper quadrant abdominal rigidity
## 22727 Right lower quadrant abdominal rigidity
## 22728 Left lower quadrant abdominal rigidity
## 22729 Periumbilic abdominal rigidity
## 22730 Epigastric abdominal rigidity
## 22731 Generalized abdominal rigidity
## 22732 Change in bowel habit
## 22733 Other fecal abnormalities
## 22734 Halitosis
## 22735 Diarrhea, unspecified
## 22736 Other specified symptoms and signs involving the digestive system and abdomen
## 22737 Anesthesia of skin
## 22738 Hypoesthesia of skin
## 22739 Paresthesia of skin
## 22740 Hyperesthesia
## 22741 Other disturbances of skin sensation
## 22742 Unspecified disturbances of skin sensation
## 22743 Rash and other nonspecific skin eruption
## 22744 Localized swelling, mass and lump, head
## 22745 Localized swelling, mass and lump, neck
## 22746 Localized swelling, mass and lump, trunk
## 22747 Localized swelling, mass and lump, unspecified upper limb
## 22748 Localized swelling, mass and lump, right upper limb
## 22749 Localized swelling, mass and lump, left upper limb
## 22750 Localized swelling, mass and lump, upper limb, bilateral
## 22751 Localized swelling, mass and lump, unspecified lower limb
## 22752 Localized swelling, mass and lump, right lower limb
## 22753 Localized swelling, mass and lump, left lower limb
## 22754 Localized swelling, mass and lump, lower limb, bilateral
## 22755 Localized swelling, mass and lump, unspecified
## 22756 Cyanosis
## 22757 Pallor
## 22758 Flushing
## 22759 Spontaneous ecchymoses
## 22760 Changes in skin texture
## 22761 Other skin changes
## 22762 Unspecified skin changes
## 22763 Abnormal head movements
## 22764 Tremor, unspecified
## 22765 Cramp and spasm
## 22766 Fasciculation
## 22767 Other abnormal involuntary movements
## 22768 Unspecified abnormal involuntary movements
## 22769 Ataxic gait
## 22770 Paralytic gait
## 22771 Difficulty in walking, not elsewhere classified
## 22772 Unsteadiness on feet
## 22773 Other abnormalities of gait and mobility
## 22774 Unspecified abnormalities of gait and mobility
## 22775 Ataxia, unspecified
## 22776 Other lack of coordination
## 22777 Unspecified lack of coordination
## 22778 Tetany
## 22779 Meningismus
## 22780 Abnormal reflex
## 22781 Abnormal posture
## 22782 Clicking hip
## 22783 Transient paralysis
## 22784 Repeated falls
## 22785 NIHSS score 0
## 22786 NIHSS score 1
## 22787 NIHSS score 2
## 22788 NIHSS score 3
## 22789 NIHSS score 4
## 22790 NIHSS score 5
## 22791 NIHSS score 6
## 22792 NIHSS score 7
## 22793 NIHSS score 8
## 22794 NIHSS score 9
## 22795 NIHSS score 10
## 22796 NIHSS score 11
## 22797 NIHSS score 12
## 22798 NIHSS score 13
## 22799 NIHSS score 14
## 22800 NIHSS score 15
## 22801 NIHSS score 16
## 22802 NIHSS score 17
## 22803 NIHSS score 18
## 22804 NIHSS score 19
## 22805 NIHSS score 20
## 22806 NIHSS score 21
## 22807 NIHSS score 22
## 22808 NIHSS score 23
## 22809 NIHSS score 24
## 22810 NIHSS score 25
## 22811 NIHSS score 26
## 22812 NIHSS score 27
## 22813 NIHSS score 28
## 22814 NIHSS score 29
## 22815 NIHSS score 30
## 22816 NIHSS score 31
## 22817 NIHSS score 32
## 22818 NIHSS score 33
## 22819 NIHSS score 34
## 22820 NIHSS score 35
## 22821 NIHSS score 36
## 22822 NIHSS score 37
## 22823 NIHSS score 38
## 22824 NIHSS score 39
## 22825 NIHSS score 40
## 22826 NIHSS score 41
## 22827 NIHSS score 42
## 22828 Facial weakness
## 22829 Other symptoms and signs involving the nervous system
## 22830 Loss of height
## 22831 Ocular torticollis
## 22832 Other symptoms and signs involving the musculoskeletal system
## 22833 Unspecified symptoms and signs involving the nervous system
## 22834 Unspecified symptoms and signs involving the musculoskeletal system
## 22835 Dysuria
## 22836 Vesical tenesmus
## 22837 Painful micturition, unspecified
## 22838 Gross hematuria
## 22839 Benign essential microscopic hematuria
## 22840 Asymptomatic microscopic hematuria
## 22841 Other microscopic hematuria
## 22842 Hematuria, unspecified
## 22843 Unspecified urinary incontinence
## 22844 Drug induced retention of urine
## 22845 Other retention of urine
## 22846 Retention of urine, unspecified
## 22847 Anuria and oliguria
## 22848 Frequency of micturition
## 22849 Nocturia
## 22850 Other polyuria
## 22851 Urethral discharge without blood
## 22852 Hematospermia
## 22853 Urethral discharge, unspecified
## 22854 Sexual dysfunction, unspecified
## 22855 Extravasation of urine
## 22856 Hesitancy of micturition
## 22857 Poor urinary stream
## 22858 Splitting of urinary stream
## 22859 Feeling of incomplete bladder emptying
## 22860 Urgency of urination
## 22861 Straining to void
## 22862 Need to immediately re-void
## 22863 Position dependent micturition
## 22864 Other difficulties with micturition
## 22865 Extrarenal uremia
## 22866 Functional urinary incontinence
## 22867 Chronic bladder pain
## 22868 Unilateral non-palpable testicle
## 22869 Bilateral non-palpable testicles
## 22870 Other symptoms and signs involving the genitourinary system
## 22871 Unspecified symptoms and signs involving the genitourinary system
## 22872 Somnolence
## 22873 Stupor
## 22874 Unspecified coma
## 22875 Coma scale, eyes open, never, unspecified time
## 22876 Coma scale, eyes open, never, in the field [EMT or ambulance]
## 22877 Coma scale, eyes open, never, at arrival to emergency department
## 22878 Coma scale, eyes open, never, at hospital admission
## 22879 Coma scale, eyes open, never, 24 hours or more after hospital admission
## 22880 Coma scale, eyes open, to pain, unspecified time
## 22881 Coma scale, eyes open, to pain, in the field [EMT or ambulance]
## 22882 Coma scale, eyes open, to pain, at arrival to emergency department
## 22883 Coma scale, eyes open, to pain, at hospital admission
## 22884 Coma scale, eyes open, to pain, 24 hours or more after hospital admission
## 22885 Coma scale, eyes open, to sound, unspecified time
## 22886 Coma scale, eyes open, to sound, in the field [EMT or ambulance]
## 22887 Coma scale, eyes open, to sound, at arrival to emergency department
## 22888 Coma scale, eyes open, to sound, at hospital admission
## 22889 Coma scale, eyes open, to sound, 24 hours or more after hospital admission
## 22890 Coma scale, eyes open, spontaneous, unspecified time
## 22891 Coma scale, eyes open, spontaneous, in the field [EMT or ambulance]
## 22892 Coma scale, eyes open, spontaneous, at arrival to emergency department
## 22893 Coma scale, eyes open, spontaneous, at hospital admission
## 22894 Coma scale, eyes open, spontaneous, 24 hours or more after hospital admission
## 22895 Coma scale, best verbal response, none, unspecified time
## 22896 Coma scale, best verbal response, none, in the field [EMT or ambulance]
## 22897 Coma scale, best verbal response, none, at arrival to emergency department
## 22898 Coma scale, best verbal response, none, at hospital admission
## 22899 Coma scale, best verbal response, none, 24 hours or more after hospital admission
## 22900 Coma scale, best verbal response, incomprehensible words, unspecified time
## 22901 Coma scale, best verbal response, incomprehensible words, in the field [EMT or ambulance]
## 22902 Coma scale, best verbal response, incomprehensible words, at arrival to emergency department
## 22903 Coma scale, best verbal response, incomprehensible words, at hospital admission
## 22904 Coma scale, best verbal response, incomprehensible words, 24 hours or more after hospital admission
## 22905 Coma scale, best verbal response, inappropriate words, unspecified time
## 22906 Coma scale, best verbal response, inappropriate words, in the field [EMT or ambulance]
## 22907 Coma scale, best verbal response, inappropriate words, at arrival to emergency department
## 22908 Coma scale, best verbal response, inappropriate words, at hospital admission
## 22909 Coma scale, best verbal response, inappropriate words, 24 hours or more after hospital admission
## 22910 Coma scale, best verbal response, confused conversation, unspecified time
## 22911 Coma scale, best verbal response, confused conversation, in the field [EMT or ambulance]
## 22912 Coma scale, best verbal response, confused conversation, at arrival to emergency department
## 22913 Coma scale, best verbal response, confused conversation, at hospital admission
## 22914 Coma scale, best verbal response, confused conversation, 24 hours or more after hospital admission
## 22915 Coma scale, best verbal response, oriented, unspecified time
## 22916 Coma scale, best verbal response, oriented, in the field [EMT or ambulance]
## 22917 Coma scale, best verbal response, oriented, at arrival to emergency department
## 22918 Coma scale, best verbal response, oriented, at hospital admission
## 22919 Coma scale, best verbal response, oriented, 24 hours or more after hospital admission
## 22920 Coma scale, best motor response, none, unspecified time
## 22921 Coma scale, best motor response, none, in the field [EMT or ambulance]
## 22922 Coma scale, best motor response, none, at arrival to emergency department
## 22923 Coma scale, best motor response, none, at hospital admission
## 22924 Coma scale, best motor response, none, 24 hours or more after hospital admission
## 22925 Coma scale, best motor response, extension, unspecified time
## 22926 Coma scale, best motor response, extension, in the field [EMT or ambulance]
## 22927 Coma scale, best motor response, extension, at arrival to emergency department
## 22928 Coma scale, best motor response, extension, at hospital admission
## 22929 Coma scale, best motor response, extension, 24 hours or more after hospital admission
## 22930 Coma scale, best motor response, abnormal flexion, unspecified time
## 22931 Coma scale, best motor response, abnormal flexion, in the field [EMT or ambulance]
## 22932 Coma scale, best motor response, abnormal flexion, at arrival to emergency department
## 22933 Coma scale, best motor response, abnormal flexion, at hospital admission
## 22934 Coma scale, best motor response, abnormal flexion, 24 hours or more after hospital admission
## 22935 Coma scale, best motor response, flexion withdrawal, unspecified time
## 22936 Coma scale, best motor response, flexion withdrawal, in the field [EMT or ambulance]
## 22937 Coma scale, best motor response, flexion withdrawal, at arrival to emergency department
## 22938 Coma scale, best motor response, flexion withdrawal, at hospital admission
## 22939 Coma scale, best motor response, flexion withdrawal, 24 hours or more after hospital admission
## 22940 Coma scale, best motor response, localizes pain, unspecified time
## 22941 Coma scale, best motor response, localizes pain, in the field [EMT or ambulance]
## 22942 Coma scale, best motor response, localizes pain, at arrival to emergency department
## 22943 Coma scale, best motor response, localizes pain, at hospital admission
## 22944 Coma scale, best motor response, localizes pain, 24 hours or more after hospital admission
## 22945 Coma scale, best motor response, obeys commands, unspecified time
## 22946 Coma scale, best motor response, obeys commands, in the field [EMT or ambulance]
## 22947 Coma scale, best motor response, obeys commands, at arrival to emergency department
## 22948 Coma scale, best motor response, obeys commands, at hospital admission
## 22949 Coma scale, best motor response, obeys commands, 24 hours or more after hospital admission
## 22950 Glasgow coma scale score 13-15, unspecified time
## 22951 Glasgow coma scale score 13-15, in the field [EMT or ambulance]
## 22952 Glasgow coma scale score 13-15, at arrival to emergency department
## 22953 Glasgow coma scale score 13-15, at hospital admission
## 22954 Glasgow coma scale score 13-15, 24 hours or more after hospital admission
## 22955 Glasgow coma scale score 9-12, unspecified time
## 22956 Glasgow coma scale score 9-12, in the field [EMT or ambulance]
## 22957 Glasgow coma scale score 9-12, at arrival to emergency department
## 22958 Glasgow coma scale score 9-12, at hospital admission
## 22959 Glasgow coma scale score 9-12, 24 hours or more after hospital admission
## 22960 Glasgow coma scale score 3-8, unspecified time
## 22961 Glasgow coma scale score 3-8, in the field [EMT or ambulance]
## 22962 Glasgow coma scale score 3-8, at arrival to emergency department
## 22963 Glasgow coma scale score 3-8, at hospital admission
## 22964 Glasgow coma scale score 3-8, 24 hours or more after hospital admission
## 22965 Other coma, without documented Glasgow coma scale score, or with partial score reported, unspecified time
## 22966 Other coma, without documented Glasgow coma scale score, or with partial score reported, in the field [EMT or ambulance]
## 22967 Other coma, without documented Glasgow coma scale score, or with partial score reported, at arrival to emergency department
## 22968 Other coma, without documented Glasgow coma scale score, or with partial score reported, at hospital admission
## 22969 Other coma, without documented Glasgow coma scale score, or with partial score reported, 24 hours or more after hospital admission
## 22970 Persistent vegetative state
## 22971 Transient alteration of awareness
## 22972 Disorientation, unspecified
## 22973 Anterograde amnesia
## 22974 Retrograde amnesia
## 22975 Other amnesia
## 22976 Neurologic neglect syndrome
## 22977 Age-related cognitive decline
## 22978 Altered mental status, unspecified
## 22979 Borderline intellectual functioning
## 22980 Attention and concentration deficit
## 22981 Cognitive communication deficit
## 22982 Visuospatial deficit
## 22983 Psychomotor deficit
## 22984 Frontal lobe and executive function deficit
## 22985 Other symptoms and signs involving cognitive functions and awareness
## 22986 Unspecified symptoms and signs involving cognitive functions and awareness
## 22987 Dizziness and giddiness
## 22988 Anosmia
## 22989 Parosmia
## 22990 Parageusia
## 22991 Other disturbances of smell and taste
## 22992 Unspecified disturbances of smell and taste
## 22993 Auditory hallucinations
## 22994 Visual hallucinations
## 22995 Other hallucinations
## 22996 Hallucinations, unspecified
## 22997 Other symptoms and signs involving general sensations and perceptions
## 22998 Unspecified symptoms and signs involving general sensations and perceptions
## 22999 Nervousness
## 23000 Restlessness and agitation
## 23001 Unhappiness
## 23002 Demoralization and apathy
## 23003 Irritability and anger
## 23004 Hostility
## 23005 Violent behavior
## 23006 State of emotional shock and stress, unspecified
## 23007 Low self-esteem
## 23008 Worries
## 23009 Excessive crying of child, adolescent or adult
## 23010 Anhedonia
## 23011 Homicidal ideations
## 23012 Suicidal ideations
## 23013 Emotional lability
## 23014 Impulsiveness
## 23015 Other symptoms and signs involving emotional state
## 23016 Very low level of personal hygiene
## 23017 Bizarre personal appearance
## 23018 Strange and inexplicable behavior
## 23019 Overactivity
## 23020 Slowness and poor responsiveness
## 23021 Suspiciousness and marked evasiveness
## 23022 Undue concern and preoccupation with stressful events
## 23023 Verbosity and circumstantial detail obscuring reason for contact
## 23024 Obsessive-compulsive behavior
## 23025 Other symptoms and signs involving appearance and behavior
## 23026 Aphasia
## 23027 Dysphasia
## 23028 Dysarthria and anarthria
## 23029 Slurred speech
## 23030 Fluency disorder in conditions classified elsewhere
## 23031 Other speech disturbances
## 23032 Unspecified speech disturbances
## 23033 Dyslexia and alexia
## 23034 Agnosia
## 23035 Apraxia
## 23036 Visual agnosia
## 23037 Other symbolic dysfunctions
## 23038 Unspecified symbolic dysfunctions
## 23039 Dysphonia
## 23040 Aphonia
## 23041 Hypernasality
## 23042 Hyponasality
## 23043 Other voice and resonance disorders
## 23044 Unspecified voice and resonance disorder
## 23045 Drug induced fever
## 23046 Fever presenting with conditions classified elsewhere
## 23047 Postprocedural fever
## 23048 Postvaccination fever
## 23049 Febrile nonhemolytic transfusion reaction
## 23050 Fever, unspecified
## 23051 Headache
## 23052 Pain, unspecified
## 23053 Neoplastic (malignant) related fatigue
## 23054 Weakness
## 23055 Functional quadriplegia
## 23056 Other malaise
## 23057 Chronic fatigue, unspecified
## 23058 Other fatigue
## 23059 Age-related physical debility
## 23060 Syncope and collapse
## 23061 Simple febrile convulsions
## 23062 Complex febrile convulsions
## 23063 Post traumatic seizures
## 23064 Unspecified convulsions
## 23065 Cardiogenic shock
## 23066 Hypovolemic shock
## 23067 Other shock
## 23068 Shock, unspecified
## 23069 Hemorrhage, not elsewhere classified
## 23070 Localized enlarged lymph nodes
## 23071 Generalized enlarged lymph nodes
## 23072 Enlarged lymph nodes, unspecified
## 23073 Localized edema
## 23074 Generalized edema
## 23075 Edema, unspecified
## 23076 Generalized hyperhidrosis
## 23077 Delayed milestone in childhood
## 23078 Unspecified lack of expected normal physiological development in childhood
## 23079 Failure to thrive (child)
## 23080 Short stature (child)
## 23081 Other lack of expected normal physiological development in childhood
## 23082 Adult failure to thrive
## 23083 Anorexia
## 23084 Polydipsia
## 23085 Polyphagia
## 23086 Feeding difficulties
## 23087 Abnormal weight loss
## 23088 Abnormal weight gain
## 23089 Underweight
## 23090 Other symptoms and signs concerning food and fluid intake
## 23091 Cachexia
## 23092 Systemic inflammatory response syndrome (SIRS) of non-infectious origin without acute organ dysfunction
## 23093 Systemic inflammatory response syndrome (SIRS) of non-infectious origin with acute organ dysfunction
## 23094 Severe sepsis without septic shock
## 23095 Severe sepsis with septic shock
## 23096 Hypothermia, not associated with low environmental temperature
## 23097 Excessive crying of infant (baby)
## 23098 Fussy infant (baby)
## 23099 Apparent life threatening event in infant (ALTE)
## 23100 Other nonspecific symptoms peculiar to infancy
## 23101 Dry mouth, unspecified
## 23102 Clubbing of fingers
## 23103 Early satiety
## 23104 Decreased libido
## 23105 Chills (without fever)
## 23106 Jaw pain
## 23107 Other general symptoms and signs
## 23108 Illness, unspecified
## 23109 Elevated erythrocyte sedimentation rate
## 23110 Abnormal plasma viscosity
## 23111 Precipitous drop in hematocrit
## 23112 Other abnormality of red blood cells
## 23113 Impaired fasting glucose
## 23114 Impaired glucose tolerance (oral)
## 23115 Prediabetes
## 23116 Other abnormal glucose
## 23117 Hyperglycemia, unspecified
## 23118 Nonspecific elevation of levels of transaminase and lactic acid dehydrogenase [LDH]
## 23119 Abnormal levels of other serum enzymes
## 23120 Abnormal serum enzyme level, unspecified
## 23121 Inconclusive laboratory evidence of human immunodeficiency virus [HIV]
## 23122 Raised antibody titer
## 23123 Nonspecific reaction to tuberculin skin test without active tuberculosis
## 23124 Nonspecific reaction to cell mediated immunity measurement of gamma interferon antigen response without active tuberculosis
## 23125 Other specified abnormal immunological findings in serum
## 23126 Abnormal immunological finding in serum, unspecified
## 23127 Abnormality of albumin
## 23128 Abnormality of globulin
## 23129 Abnormality of alphafetoprotein
## 23130 Other specified abnormalities of plasma proteins
## 23131 Abnormality of plasma protein, unspecified
## 23132 Finding of alcohol in blood
## 23133 Finding of opiate drug in blood
## 23134 Finding of cocaine in blood
## 23135 Finding of hallucinogen in blood
## 23136 Finding of other drugs of addictive potential in blood
## 23137 Finding of other psychotropic drug in blood
## 23138 Finding of steroid agent in blood
## 23139 Abnormal lead level in blood
## 23140 Finding of abnormal level of heavy metals in blood
## 23141 Bacteremia
## 23142 Finding of other specified substances, not normally found in blood
## 23143 Finding of unspecified substance, not normally found in blood
## 23144 Abnormal level of blood mineral
## 23145 Abnormal coagulation profile
## 23146 Abnormal blood-gas level
## 23147 Elevated C-reactive protein (CRP)
## 23148 Other specified abnormal findings of blood chemistry
## 23149 Abnormal finding of blood chemistry, unspecified
## 23150 Isolated proteinuria
## 23151 Persistent proteinuria, unspecified
## 23152 Orthostatic proteinuria, unspecified
## 23153 Bence Jones proteinuria
## 23154 Other proteinuria
## 23155 Proteinuria, unspecified
## 23156 Glycosuria
## 23157 Chyluria
## 23158 Myoglobinuria
## 23159 Biliuria
## 23160 Hemoglobinuria
## 23161 Acetonuria
## 23162 Elevated urine levels of drugs, medicaments and biological substances
## 23163 Abnormal urine levels of substances chiefly nonmedicinal as to source
## 23164 Bacteriuria
## 23165 Other abnormal findings on microbiological examination of urine
## 23166 Pyuria
## 23167 Other abnormal findings on cytological and histological examination of urine
## 23168 Unspecified abnormal findings in urine
## 23169 Other chromoabnormalities of urine
## 23170 Hypocitraturia
## 23171 Hyperoxaluria
## 23172 Hyperuricosuria
## 23173 Hypercalciuria
## 23174 Other abnormal findings in urine
## 23175 Abnormal level of enzymes in cerebrospinal fluid
## 23176 Abnormal level of hormones in cerebrospinal fluid
## 23177 Abnormal level of other drugs, medicaments and biological substances in cerebrospinal fluid
## 23178 Abnormal level of substances chiefly nonmedicinal as to source in cerebrospinal fluid
## 23179 Abnormal immunological findings in cerebrospinal fluid
## 23180 Abnormal microbiological findings in cerebrospinal fluid
## 23181 Abnormal cytological findings in cerebrospinal fluid
## 23182 Other abnormal findings in cerebrospinal fluid
## 23183 Unspecified abnormal finding in cerebrospinal fluid
## 23184 Abnormal level of enzymes in specimens from respiratory organs and thorax
## 23185 Abnormal level of hormones in specimens from respiratory organs and thorax
## 23186 Abnormal level of other drugs, medicaments and biological substances in specimens from respiratory organs and thorax
## 23187 Abnormal level of substances chiefly nonmedicinal as to source in specimens from respiratory organs and thorax
## 23188 Abnormal immunological findings in specimens from respiratory organs and thorax
## 23189 Abnormal microbiological findings in specimens from respiratory organs and thorax
## 23190 Abnormal cytological findings in specimens from respiratory organs and thorax
## 23191 Abnormal histological findings in specimens from respiratory organs and thorax
## 23192 Other abnormal findings in specimens from respiratory organs and thorax
## 23193 Unspecified abnormal finding in specimens from respiratory organs and thorax
## 23194 Abnormal level of enzymes in specimens from digestive organs and abdominal cavity
## 23195 Abnormal level of hormones in specimens from digestive organs and abdominal cavity
## 23196 Abnormal level of other drugs, medicaments and biological substances in specimens from digestive organs and abdominal cavity
## 23197 Abnormal level of substances chiefly nonmedicinal as to source in specimens from digestive organs and abdominal cavity
## 23198 Abnormal immunological findings in specimens from digestive organs and abdominal cavity
## 23199 Abnormal microbiological findings in specimens from digestive organs and abdominal cavity
## 23200 Atypical squamous cells of undetermined significance on cytologic smear of anus (ASC-US)
## 23201 Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of anus (ASC-H)
## 23202 Low grade squamous intraepithelial lesion on cytologic smear of anus (LGSIL)
## 23203 High grade squamous intraepithelial lesion on cytologic smear of anus (HGSIL)
## 23204 Cytologic evidence of malignancy on smear of anus
## 23205 Unsatisfactory cytologic smear of anus
## 23206 Satisfactory anal smear but lacking transformation zone
## 23207 Other abnormal cytological findings on specimens from anus
## 23208 Unspecified abnormal cytological findings in specimens from anus
## 23209 Abnormal cytological findings in specimens from other digestive organs and abdominal cavity
## 23210 Abnormal histological findings in specimens from digestive organs and abdominal cavity
## 23211 Anal high risk human papillomavirus (HPV) DNA test positive
## 23212 Anal low risk human papillomavirus (HPV) DNA test positive
## 23213 Other abnormal findings in specimens from digestive organs and abdominal cavity
## 23214 Unspecified abnormal finding in specimens from digestive organs and abdominal cavity
## 23215 Abnormal level of enzymes in specimens from male genital organs
## 23216 Abnormal level of hormones in specimens from male genital organs
## 23217 Abnormal level of other drugs, medicaments and biological substances in specimens from male genital organs
## 23218 Abnormal level of substances chiefly nonmedicinal as to source in specimens from male genital organs
## 23219 Abnormal immunological findings in specimens from male genital organs
## 23220 Abnormal microbiological findings in specimens from male genital organs
## 23221 Abnormal cytological findings in specimens from male genital organs
## 23222 Abnormal histological findings in specimens from male genital organs
## 23223 Other abnormal findings in specimens from male genital organs
## 23224 Unspecified abnormal finding in specimens from male genital organs
## 23225 Abnormal level of enzymes in specimens from female genital organs
## 23226 Abnormal level of hormones in specimens from female genital organs
## 23227 Abnormal level of other drugs, medicaments and biological substances in specimens from female genital organs
## 23228 Abnormal level of substances chiefly nonmedicinal as to source in specimens from female genital organs
## 23229 Abnormal immunological findings in specimens from female genital organs
## 23230 Abnormal microbiological findings in specimens from female genital organs
## 23231 Atypical squamous cells of undetermined significance on cytologic smear of cervix (ASC-US)
## 23232 Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of cervix (ASC-H)
## 23233 Low grade squamous intraepithelial lesion on cytologic smear of cervix (LGSIL)
## 23234 High grade squamous intraepithelial lesion on cytologic smear of cervix (HGSIL)
## 23235 Cytologic evidence of malignancy on smear of cervix
## 23236 Unsatisfactory cytologic smear of cervix
## 23237 Satisfactory cervical smear but lacking transformation zone
## 23238 Other abnormal cytological findings on specimens from cervix uteri
## 23239 Unspecified abnormal cytological findings in specimens from cervix uteri
## 23240 Atypical squamous cells of undetermined significance on cytologic smear of vagina (ASC-US)
## 23241 Atypical squamous cells cannot exclude high grade squamous intraepithelial lesion on cytologic smear of vagina (ASC-H)
## 23242 Low grade squamous intraepithelial lesion on cytologic smear of vagina (LGSIL)
## 23243 High grade squamous intraepithelial lesion on cytologic smear of vagina (HGSIL)
## 23244 Cytologic evidence of malignancy on smear of vagina
## 23245 Unsatisfactory cytologic smear of vagina
## 23246 Other abnormal cytological findings on specimens from vagina
## 23247 Unspecified abnormal cytological findings in specimens from vagina
## 23248 Abnormal cytological findings in specimens from other female genital organs
## 23249 Abnormal histological findings in specimens from female genital organs
## 23250 Cervical high risk human papillomavirus (HPV) DNA test positive
## 23251 Vaginal high risk human papillomavirus (HPV) DNA test positive
## 23252 Cervical low risk human papillomavirus (HPV) DNA test positive
## 23253 Vaginal low risk human papillomavirus (HPV) DNA test positive
## 23254 Other abnormal findings in specimens from female genital organs
## 23255 Unspecified abnormal finding in specimens from female genital organs
## 23256 Cloudy (hemodialysis) (peritoneal) dialysis effluent
## 23257 Abnormal findings in other body fluids and substances
## 23258 Abnormal level of enzymes in specimens from other organs, systems and tissues
## 23259 Abnormal level of hormones in specimens from other organs, systems and tissues
## 23260 Abnormal level of other drugs, medicaments and biological substances in specimens from other organs, systems and tissues
## 23261 Abnormal level of substances chiefly nonmedicinal as to source in specimens from other organs, systems and tissues
## 23262 Abnormal immunological findings in specimens from other organs, systems and tissues
## 23263 Abnormal microbiological findings in specimens from other organs, systems and tissues
## 23264 Abnormal cytological findings in specimens from other organs, systems and tissues
## 23265 Abnormal histological findings in specimens from other organs, systems and tissues
## 23266 Other abnormal findings in specimens from other organs, systems and tissues
## 23267 Unspecified abnormal finding in specimens from other organs, systems and tissues
## 23268 Intracranial space-occupying lesion found on diagnostic imaging of central nervous system
## 23269 Abnormal echoencephalogram
## 23270 White matter disease, unspecified
## 23271 Other abnormal findings on diagnostic imaging of central nervous system
## 23272 Solitary pulmonary nodule
## 23273 Other nonspecific abnormal finding of lung field
## 23274 Mammographic microcalcification found on diagnostic imaging of breast
## 23275 Mammographic calcification found on diagnostic imaging of breast
## 23276 Inconclusive mammogram
## 23277 Other abnormal and inconclusive findings on diagnostic imaging of breast
## 23278 Abnormal findings on diagnostic imaging of skull and head, not elsewhere classified
## 23279 Abnormal findings on diagnostic imaging of heart and coronary circulation
## 23280 Abnormal findings on diagnostic imaging of liver and biliary tract
## 23281 Abnormal findings on diagnostic imaging of other parts of digestive tract
## 23282 Abnormal radiologic findings on diagnostic imaging of renal pelvis, ureter, or bladder
## 23283 Abnormal radiologic findings on diagnostic imaging of right kidney
## 23284 Abnormal radiologic findings on diagnostic imaging of left kidney
## 23285 Abnormal radiologic findings on diagnostic imaging of unspecified kidney
## 23286 Abnormal radiologic findings on diagnostic imaging of other urinary organs
## 23287 Abnormal findings on diagnostic imaging of other abdominal regions, including retroperitoneum
## 23288 Abnormal findings on diagnostic imaging of limbs
## 23289 Abnormal findings on diagnostic imaging of other parts of musculoskeletal system
## 23290 Abnormal radiologic findings on diagnostic imaging of right testicle
## 23291 Abnormal radiologic findings on diagnostic imaging of left testicle
## 23292 Abnormal radiologic findings on diagnostic imaging of testicles, bilateral
## 23293 Abnormal radiologic findings on diagnostic imaging of unspecified testicle
## 23294 Abnormal findings on diagnostic imaging of other specified body structures
## 23295 Diagnostic imaging inconclusive due to excess body fat of patient
## 23296 Abnormal electroencephalogram [EEG]
## 23297 Abnormal brain scan
## 23298 Abnormal results of other function studies of central nervous system
## 23299 Abnormal electro-oculogram [EOG]
## 23300 Abnormal electroretinogram [ERG]
## 23301 Abnormal visually evoked potential [VEP]
## 23302 Abnormal oculomotor study
## 23303 Abnormal results of other function studies of eye
## 23304 Abnormal auditory function study
## 23305 Abnormal vestibular function study
## 23306 Abnormal results of other function studies of ear and other special senses
## 23307 Abnormal response to nerve stimulation, unspecified
## 23308 Abnormal electromyogram [EMG]
## 23309 Abnormal results of other function studies of peripheral nervous system
## 23310 Abnormal results of pulmonary function studies
## 23311 Abnormal result of cardiovascular function study, unspecified
## 23312 Abnormal electrocardiogram [ECG] [EKG]
## 23313 Abnormal result of other cardiovascular function study
## 23314 Abnormal results of kidney function studies
## 23315 Abnormal results of liver function studies
## 23316 Abnormal results of thyroid function studies
## 23317 Abnormal results of other endocrine function studies
## 23318 Abnormal results of function studies of other organs and systems
## 23319 Elevated carcinoembryonic antigen [CEA]
## 23320 Elevated cancer antigen 125 [CA 125]
## 23321 Elevated prostate specific antigen [PSA]
## 23322 Rising PSA following treatment for malignant neoplasm of prostate
## 23323 Other abnormal tumor markers
## 23324 Ill-defined and unknown cause of mortality
## 23325 Unspecified superficial injury of scalp, initial encounter
## 23326 Unspecified superficial injury of scalp, subsequent encounter
## 23327 Unspecified superficial injury of scalp, sequela
## 23328 Abrasion of scalp, initial encounter
## 23329 Abrasion of scalp, subsequent encounter
## 23330 Abrasion of scalp, sequela
## 23331 Blister (nonthermal) of scalp, initial encounter
## 23332 Blister (nonthermal) of scalp, subsequent encounter
## 23333 Blister (nonthermal) of scalp, sequela
## 23334 Contusion of scalp, initial encounter
## 23335 Contusion of scalp, subsequent encounter
## 23336 Contusion of scalp, sequela
## 23337 External constriction of part of scalp, initial encounter
## 23338 External constriction of part of scalp, subsequent encounter
## 23339 External constriction of part of scalp, sequela
## 23340 Superficial foreign body of scalp, initial encounter
## 23341 Superficial foreign body of scalp, subsequent encounter
## 23342 Superficial foreign body of scalp, sequela
## 23343 Insect bite (nonvenomous) of scalp, initial encounter
## 23344 Insect bite (nonvenomous) of scalp, subsequent encounter
## 23345 Insect bite (nonvenomous) of scalp, sequela
## 23346 Other superficial bite of scalp, initial encounter
## 23347 Other superficial bite of scalp, subsequent encounter
## 23348 Other superficial bite of scalp, sequela
## 23349 Contusion of unspecified eyelid and periocular area, initial encounter
## 23350 Contusion of unspecified eyelid and periocular area, subsequent encounter
## 23351 Contusion of unspecified eyelid and periocular area, sequela
## 23352 Contusion of right eyelid and periocular area, initial encounter
## 23353 Contusion of right eyelid and periocular area, subsequent encounter
## 23354 Contusion of right eyelid and periocular area, sequela
## 23355 Contusion of left eyelid and periocular area, initial encounter
## 23356 Contusion of left eyelid and periocular area, subsequent encounter
## 23357 Contusion of left eyelid and periocular area, sequela
## 23358 Unspecified superficial injury of right eyelid and periocular area, initial encounter
## 23359 Unspecified superficial injury of right eyelid and periocular area, subsequent encounter
## 23360 Unspecified superficial injury of right eyelid and periocular area, sequela
## 23361 Unspecified superficial injury of left eyelid and periocular area, initial encounter
## 23362 Unspecified superficial injury of left eyelid and periocular area, subsequent encounter
## 23363 Unspecified superficial injury of left eyelid and periocular area, sequela
## 23364 Unspecified superficial injury of unspecified eyelid and periocular area, initial encounter
## 23365 Unspecified superficial injury of unspecified eyelid and periocular area, subsequent encounter
## 23366 Unspecified superficial injury of unspecified eyelid and periocular area, sequela
## 23367 Abrasion of right eyelid and periocular area, initial encounter
## 23368 Abrasion of right eyelid and periocular area, subsequent encounter
## 23369 Abrasion of right eyelid and periocular area, sequela
## 23370 Abrasion of left eyelid and periocular area, initial encounter
## 23371 Abrasion of left eyelid and periocular area, subsequent encounter
## 23372 Abrasion of left eyelid and periocular area, sequela
## 23373 Abrasion of unspecified eyelid and periocular area, initial encounter
## 23374 Abrasion of unspecified eyelid and periocular area, subsequent encounter
## 23375 Abrasion of unspecified eyelid and periocular area, sequela
## 23376 Blister (nonthermal) of right eyelid and periocular area, initial encounter
## 23377 Blister (nonthermal) of right eyelid and periocular area, subsequent encounter
## 23378 Blister (nonthermal) of right eyelid and periocular area, sequela
## 23379 Blister (nonthermal) of left eyelid and periocular area, initial encounter
## 23380 Blister (nonthermal) of left eyelid and periocular area, subsequent encounter
## 23381 Blister (nonthermal) of left eyelid and periocular area, sequela
## 23382 Blister (nonthermal) of unspecified eyelid and periocular area, initial encounter
## 23383 Blister (nonthermal) of unspecified eyelid and periocular area, subsequent encounter
## 23384 Blister (nonthermal) of unspecified eyelid and periocular area, sequela
## 23385 External constriction of right eyelid and periocular area, initial encounter
## 23386 External constriction of right eyelid and periocular area, subsequent encounter
## 23387 External constriction of right eyelid and periocular area, sequela
## 23388 External constriction of left eyelid and periocular area, initial encounter
## 23389 External constriction of left eyelid and periocular area, subsequent encounter
## 23390 External constriction of left eyelid and periocular area, sequela
## 23391 External constriction of unspecified eyelid and periocular area, initial encounter
## 23392 External constriction of unspecified eyelid and periocular area, subsequent encounter
## 23393 External constriction of unspecified eyelid and periocular area, sequela
## 23394 Superficial foreign body of right eyelid and periocular area, initial encounter
## 23395 Superficial foreign body of right eyelid and periocular area, subsequent encounter
## 23396 Superficial foreign body of right eyelid and periocular area, sequela
## 23397 Superficial foreign body of left eyelid and periocular area, initial encounter
## 23398 Superficial foreign body of left eyelid and periocular area, subsequent encounter
## 23399 Superficial foreign body of left eyelid and periocular area, sequela
## 23400 Superficial foreign body of unspecified eyelid and periocular area, initial encounter
## 23401 Superficial foreign body of unspecified eyelid and periocular area, subsequent encounter
## 23402 Superficial foreign body of unspecified eyelid and periocular area, sequela
## 23403 Insect bite (nonvenomous) of right eyelid and periocular area, initial encounter
## 23404 Insect bite (nonvenomous) of right eyelid and periocular area, subsequent encounter
## 23405 Insect bite (nonvenomous) of right eyelid and periocular area, sequela
## 23406 Insect bite (nonvenomous) of left eyelid and periocular area, initial encounter
## 23407 Insect bite (nonvenomous) of left eyelid and periocular area, subsequent encounter
## 23408 Insect bite (nonvenomous) of left eyelid and periocular area, sequela
## 23409 Insect bite (nonvenomous) of unspecified eyelid and periocular area, initial encounter
## 23410 Insect bite (nonvenomous) of unspecified eyelid and periocular area, subsequent encounter
## 23411 Insect bite (nonvenomous) of unspecified eyelid and periocular area, sequela
## 23412 Other superficial bite of right eyelid and periocular area, initial encounter
## 23413 Other superficial bite of right eyelid and periocular area, subsequent encounter
## 23414 Other superficial bite of right eyelid and periocular area, sequela
## 23415 Other superficial bite of left eyelid and periocular area, initial encounter
## 23416 Other superficial bite of left eyelid and periocular area, subsequent encounter
## 23417 Other superficial bite of left eyelid and periocular area, sequela
## 23418 Other superficial bite of unspecified eyelid and periocular area, initial encounter
## 23419 Other superficial bite of unspecified eyelid and periocular area, subsequent encounter
## 23420 Other superficial bite of unspecified eyelid and periocular area, sequela
## 23421 Unspecified superficial injury of nose, initial encounter
## 23422 Unspecified superficial injury of nose, subsequent encounter
## 23423 Unspecified superficial injury of nose, sequela
## 23424 Abrasion of nose, initial encounter
## 23425 Abrasion of nose, subsequent encounter
## 23426 Abrasion of nose, sequela
## 23427 Blister (nonthermal) of nose, initial encounter
## 23428 Blister (nonthermal) of nose, subsequent encounter
## 23429 Blister (nonthermal) of nose, sequela
## 23430 Contusion of nose, initial encounter
## 23431 Contusion of nose, subsequent encounter
## 23432 Contusion of nose, sequela
## 23433 External constriction of nose, initial encounter
## 23434 External constriction of nose, subsequent encounter
## 23435 External constriction of nose, sequela
## 23436 Superficial foreign body of nose, initial encounter
## 23437 Superficial foreign body of nose, subsequent encounter
## 23438 Superficial foreign body of nose, sequela
## 23439 Insect bite (nonvenomous) of nose, initial encounter
## 23440 Insect bite (nonvenomous) of nose, subsequent encounter
## 23441 Insect bite (nonvenomous) of nose, sequela
## 23442 Other superficial bite of nose, initial encounter
## 23443 Other superficial bite of nose, subsequent encounter
## 23444 Other superficial bite of nose, sequela
## 23445 Unspecified superficial injury of right ear, initial encounter
## 23446 Unspecified superficial injury of right ear, subsequent encounter
## 23447 Unspecified superficial injury of right ear, sequela
## 23448 Unspecified superficial injury of left ear, initial encounter
## 23449 Unspecified superficial injury of left ear, subsequent encounter
## 23450 Unspecified superficial injury of left ear, sequela
## 23451 Unspecified superficial injury of unspecified ear, initial encounter
## 23452 Unspecified superficial injury of unspecified ear, subsequent encounter
## 23453 Unspecified superficial injury of unspecified ear, sequela
## 23454 Abrasion of right ear, initial encounter
## 23455 Abrasion of right ear, subsequent encounter
## 23456 Abrasion of right ear, sequela
## 23457 Abrasion of left ear, initial encounter
## 23458 Abrasion of left ear, subsequent encounter
## 23459 Abrasion of left ear, sequela
## 23460 Abrasion of unspecified ear, initial encounter
## 23461 Abrasion of unspecified ear, subsequent encounter
## 23462 Abrasion of unspecified ear, sequela
## 23463 Blister (nonthermal) of right ear, initial encounter
## 23464 Blister (nonthermal) of right ear, subsequent encounter
## 23465 Blister (nonthermal) of right ear, sequela
## 23466 Blister (nonthermal) of left ear, initial encounter
## 23467 Blister (nonthermal) of left ear, subsequent encounter
## 23468 Blister (nonthermal) of left ear, sequela
## 23469 Blister (nonthermal) of unspecified ear, initial encounter
## 23470 Blister (nonthermal) of unspecified ear, subsequent encounter
## 23471 Blister (nonthermal) of unspecified ear, sequela
## 23472 Contusion of right ear, initial encounter
## 23473 Contusion of right ear, subsequent encounter
## 23474 Contusion of right ear, sequela
## 23475 Contusion of left ear, initial encounter
## 23476 Contusion of left ear, subsequent encounter
## 23477 Contusion of left ear, sequela
## 23478 Contusion of unspecified ear, initial encounter
## 23479 Contusion of unspecified ear, subsequent encounter
## 23480 Contusion of unspecified ear, sequela
## 23481 External constriction of right ear, initial encounter
## 23482 External constriction of right ear, subsequent encounter
## 23483 External constriction of right ear, sequela
## 23484 External constriction of left ear, initial encounter
## 23485 External constriction of left ear, subsequent encounter
## 23486 External constriction of left ear, sequela
## 23487 External constriction of unspecified ear, initial encounter
## 23488 External constriction of unspecified ear, subsequent encounter
## 23489 External constriction of unspecified ear, sequela
## 23490 Superficial foreign body of right ear, initial encounter
## 23491 Superficial foreign body of right ear, subsequent encounter
## 23492 Superficial foreign body of right ear, sequela
## 23493 Superficial foreign body of left ear, initial encounter
## 23494 Superficial foreign body of left ear, subsequent encounter
## 23495 Superficial foreign body of left ear, sequela
## 23496 Superficial foreign body of unspecified ear, initial encounter
## 23497 Superficial foreign body of unspecified ear, subsequent encounter
## 23498 Superficial foreign body of unspecified ear, sequela
## 23499 Insect bite (nonvenomous) of right ear, initial encounter
## 23500 Insect bite (nonvenomous) of right ear, subsequent encounter
## 23501 Insect bite (nonvenomous) of right ear, sequela
## 23502 Insect bite (nonvenomous) of left ear, initial encounter
## 23503 Insect bite (nonvenomous) of left ear, subsequent encounter
## 23504 Insect bite (nonvenomous) of left ear, sequela
## 23505 Insect bite (nonvenomous) of unspecified ear, initial encounter
## 23506 Insect bite (nonvenomous) of unspecified ear, subsequent encounter
## 23507 Insect bite (nonvenomous) of unspecified ear, sequela
## 23508 Other superficial bite of right ear, initial encounter
## 23509 Other superficial bite of right ear, subsequent encounter
## 23510 Other superficial bite of right ear, sequela
## 23511 Other superficial bite of left ear, initial encounter
## 23512 Other superficial bite of left ear, subsequent encounter
## 23513 Other superficial bite of left ear, sequela
## 23514 Other superficial bite of unspecified ear, initial encounter
## 23515 Other superficial bite of unspecified ear, subsequent encounter
## 23516 Other superficial bite of unspecified ear, sequela
## 23517 Unspecified superficial injury of lip, initial encounter
## 23518 Unspecified superficial injury of lip, subsequent encounter
## 23519 Unspecified superficial injury of lip, sequela
## 23520 Unspecified superficial injury of oral cavity, initial encounter
## 23521 Unspecified superficial injury of oral cavity, subsequent encounter
## 23522 Unspecified superficial injury of oral cavity, sequela
## 23523 Abrasion of lip, initial encounter
## 23524 Abrasion of lip, subsequent encounter
## 23525 Abrasion of lip, sequela
## 23526 Abrasion of oral cavity, initial encounter
## 23527 Abrasion of oral cavity, subsequent encounter
## 23528 Abrasion of oral cavity, sequela
## 23529 Blister (nonthermal) of lip, initial encounter
## 23530 Blister (nonthermal) of lip, subsequent encounter
## 23531 Blister (nonthermal) of lip, sequela
## 23532 Blister (nonthermal) of oral cavity, initial encounter
## 23533 Blister (nonthermal) of oral cavity, subsequent encounter
## 23534 Blister (nonthermal) of oral cavity, sequela
## 23535 Contusion of lip, initial encounter
## 23536 Contusion of lip, subsequent encounter
## 23537 Contusion of lip, sequela
## 23538 Contusion of oral cavity, initial encounter
## 23539 Contusion of oral cavity, subsequent encounter
## 23540 Contusion of oral cavity, sequela
## 23541 External constriction of lip, initial encounter
## 23542 External constriction of lip, subsequent encounter
## 23543 External constriction of lip, sequela
## 23544 External constriction of oral cavity, initial encounter
## 23545 External constriction of oral cavity, subsequent encounter
## 23546 External constriction of oral cavity, sequela
## 23547 Superficial foreign body of lip, initial encounter
## 23548 Superficial foreign body of lip, subsequent encounter
## 23549 Superficial foreign body of lip, sequela
## 23550 Superficial foreign body of oral cavity, initial encounter
## 23551 Superficial foreign body of oral cavity, subsequent encounter
## 23552 Superficial foreign body of oral cavity, sequela
## 23553 Insect bite (nonvenomous) of lip, initial encounter
## 23554 Insect bite (nonvenomous) of lip, subsequent encounter
## 23555 Insect bite (nonvenomous) of lip, sequela
## 23556 Insect bite (nonvenomous) of oral cavity, initial encounter
## 23557 Insect bite (nonvenomous) of oral cavity, subsequent encounter
## 23558 Insect bite (nonvenomous) of oral cavity, sequela
## 23559 Other superficial bite of lip, initial encounter
## 23560 Other superficial bite of lip, subsequent encounter
## 23561 Other superficial bite of lip, sequela
## 23562 Other superficial bite of oral cavity, initial encounter
## 23563 Other superficial bite of oral cavity, subsequent encounter
## 23564 Other superficial bite of oral cavity, sequela
## 23565 Unspecified superficial injury of other part of head, initial encounter
## 23566 Unspecified superficial injury of other part of head, subsequent encounter
## 23567 Unspecified superficial injury of other part of head, sequela
## 23568 Abrasion of other part of head, initial encounter
## 23569 Abrasion of other part of head, subsequent encounter
## 23570 Abrasion of other part of head, sequela
## 23571 Blister (nonthermal) of other part of head, initial encounter
## 23572 Blister (nonthermal) of other part of head, subsequent encounter
## 23573 Blister (nonthermal) of other part of head, sequela
## 23574 Contusion of other part of head, initial encounter
## 23575 Contusion of other part of head, subsequent encounter
## 23576 Contusion of other part of head, sequela
## 23577 External constriction of other part of head, initial encounter
## 23578 External constriction of other part of head, subsequent encounter
## 23579 External constriction of other part of head, sequela
## 23580 Superficial foreign body of other part of head, initial encounter
## 23581 Superficial foreign body of other part of head, subsequent encounter
## 23582 Superficial foreign body of other part of head, sequela
## 23583 Insect bite (nonvenomous) of other part of head, initial encounter
## 23584 Insect bite (nonvenomous) of other part of head, subsequent encounter
## 23585 Insect bite (nonvenomous) of other part of head, sequela
## 23586 Other superficial bite of other part of head, initial encounter
## 23587 Other superficial bite of other part of head, subsequent encounter
## 23588 Other superficial bite of other part of head, sequela
## 23589 Unspecified superficial injury of unspecified part of head, initial encounter
## 23590 Unspecified superficial injury of unspecified part of head, subsequent encounter
## 23591 Unspecified superficial injury of unspecified part of head, sequela
## 23592 Abrasion of unspecified part of head, initial encounter
## 23593 Abrasion of unspecified part of head, subsequent encounter
## 23594 Abrasion of unspecified part of head, sequela
## 23595 Blister (nonthermal) of unspecified part of head, initial encounter
## 23596 Blister (nonthermal) of unspecified part of head, subsequent encounter
## 23597 Blister (nonthermal) of unspecified part of head, sequela
## 23598 Contusion of unspecified part of head, initial encounter
## 23599 Contusion of unspecified part of head, subsequent encounter
## 23600 Contusion of unspecified part of head, sequela
## 23601 External constriction of unspecified part of head, initial encounter
## 23602 External constriction of unspecified part of head, subsequent encounter
## 23603 External constriction of unspecified part of head, sequela
## 23604 Superficial foreign body of unspecified part of head, initial encounter
## 23605 Superficial foreign body of unspecified part of head, subsequent encounter
## 23606 Superficial foreign body of unspecified part of head, sequela
## 23607 Insect bite (nonvenomous) of unspecified part of head, initial encounter
## 23608 Insect bite (nonvenomous) of unspecified part of head, subsequent encounter
## 23609 Insect bite (nonvenomous) of unspecified part of head, sequela
## 23610 Other superficial bite of unspecified part of head, initial encounter
## 23611 Other superficial bite of unspecified part of head, subsequent encounter
## 23612 Other superficial bite of unspecified part of head, sequela
## 23613 Unspecified open wound of scalp, initial encounter
## 23614 Unspecified open wound of scalp, subsequent encounter
## 23615 Unspecified open wound of scalp, sequela
## 23616 Laceration without foreign body of scalp, initial encounter
## 23617 Laceration without foreign body of scalp, subsequent encounter
## 23618 Laceration without foreign body of scalp, sequela
## 23619 Laceration with foreign body of scalp, initial encounter
## 23620 Laceration with foreign body of scalp, subsequent encounter
## 23621 Laceration with foreign body of scalp, sequela
## 23622 Puncture wound without foreign body of scalp, initial encounter
## 23623 Puncture wound without foreign body of scalp, subsequent encounter
## 23624 Puncture wound without foreign body of scalp, sequela
## 23625 Puncture wound with foreign body of scalp, initial encounter
## 23626 Puncture wound with foreign body of scalp, subsequent encounter
## 23627 Puncture wound with foreign body of scalp, sequela
## 23628 Open bite of scalp, initial encounter
## 23629 Open bite of scalp, subsequent encounter
## 23630 Open bite of scalp, sequela
## 23631 Unspecified open wound of right eyelid and periocular area, initial encounter
## 23632 Unspecified open wound of right eyelid and periocular area, subsequent encounter
## 23633 Unspecified open wound of right eyelid and periocular area, sequela
## 23634 Unspecified open wound of left eyelid and periocular area, initial encounter
## 23635 Unspecified open wound of left eyelid and periocular area, subsequent encounter
## 23636 Unspecified open wound of left eyelid and periocular area, sequela
## 23637 Unspecified open wound of unspecified eyelid and periocular area, initial encounter
## 23638 Unspecified open wound of unspecified eyelid and periocular area, subsequent encounter
## 23639 Unspecified open wound of unspecified eyelid and periocular area, sequela
## 23640 Laceration without foreign body of right eyelid and periocular area, initial encounter
## 23641 Laceration without foreign body of right eyelid and periocular area, subsequent encounter
## 23642 Laceration without foreign body of right eyelid and periocular area, sequela
## 23643 Laceration without foreign body of left eyelid and periocular area, initial encounter
## 23644 Laceration without foreign body of left eyelid and periocular area, subsequent encounter
## 23645 Laceration without foreign body of left eyelid and periocular area, sequela
## 23646 Laceration without foreign body of unspecified eyelid and periocular area, initial encounter
## 23647 Laceration without foreign body of unspecified eyelid and periocular area, subsequent encounter
## 23648 Laceration without foreign body of unspecified eyelid and periocular area, sequela
## 23649 Laceration with foreign body of right eyelid and periocular area, initial encounter
## 23650 Laceration with foreign body of right eyelid and periocular area, subsequent encounter
## 23651 Laceration with foreign body of right eyelid and periocular area, sequela
## 23652 Laceration with foreign body of left eyelid and periocular area, initial encounter
## 23653 Laceration with foreign body of left eyelid and periocular area, subsequent encounter
## 23654 Laceration with foreign body of left eyelid and periocular area, sequela
## 23655 Laceration with foreign body of unspecified eyelid and periocular area, initial encounter
## 23656 Laceration with foreign body of unspecified eyelid and periocular area, subsequent encounter
## 23657 Laceration with foreign body of unspecified eyelid and periocular area, sequela
## 23658 Puncture wound without foreign body of right eyelid and periocular area, initial encounter
## 23659 Puncture wound without foreign body of right eyelid and periocular area, subsequent encounter
## 23660 Puncture wound without foreign body of right eyelid and periocular area, sequela
## 23661 Puncture wound without foreign body of left eyelid and periocular area, initial encounter
## 23662 Puncture wound without foreign body of left eyelid and periocular area, subsequent encounter
## 23663 Puncture wound without foreign body of left eyelid and periocular area, sequela
## 23664 Puncture wound without foreign body of unspecified eyelid and periocular area, initial encounter
## 23665 Puncture wound without foreign body of unspecified eyelid and periocular area, subsequent encounter
## 23666 Puncture wound without foreign body of unspecified eyelid and periocular area, sequela
## 23667 Puncture wound with foreign body of right eyelid and periocular area, initial encounter
## 23668 Puncture wound with foreign body of right eyelid and periocular area, subsequent encounter
## 23669 Puncture wound with foreign body of right eyelid and periocular area, sequela
## 23670 Puncture wound with foreign body of left eyelid and periocular area, initial encounter
## 23671 Puncture wound with foreign body of left eyelid and periocular area, subsequent encounter
## 23672 Puncture wound with foreign body of left eyelid and periocular area, sequela
## 23673 Puncture wound with foreign body of unspecified eyelid and periocular area, initial encounter
## 23674 Puncture wound with foreign body of unspecified eyelid and periocular area, subsequent encounter
## 23675 Puncture wound with foreign body of unspecified eyelid and periocular area, sequela
## 23676 Open bite of right eyelid and periocular area, initial encounter
## 23677 Open bite of right eyelid and periocular area, subsequent encounter
## 23678 Open bite of right eyelid and periocular area, sequela
## 23679 Open bite of left eyelid and periocular area, initial encounter
## 23680 Open bite of left eyelid and periocular area, subsequent encounter
## 23681 Open bite of left eyelid and periocular area, sequela
## 23682 Open bite of unspecified eyelid and periocular area, initial encounter
## 23683 Open bite of unspecified eyelid and periocular area, subsequent encounter
## 23684 Open bite of unspecified eyelid and periocular area, sequela
## 23685 Unspecified open wound of nose, initial encounter
## 23686 Unspecified open wound of nose, subsequent encounter
## 23687 Unspecified open wound of nose, sequela
## 23688 Laceration without foreign body of nose, initial encounter
## 23689 Laceration without foreign body of nose, subsequent encounter
## 23690 Laceration without foreign body of nose, sequela
## 23691 Laceration with foreign body of nose, initial encounter
## 23692 Laceration with foreign body of nose, subsequent encounter
## 23693 Laceration with foreign body of nose, sequela
## 23694 Puncture wound without foreign body of nose, initial encounter
## 23695 Puncture wound without foreign body of nose, subsequent encounter
## 23696 Puncture wound without foreign body of nose, sequela
## 23697 Puncture wound with foreign body of nose, initial encounter
## 23698 Puncture wound with foreign body of nose, subsequent encounter
## 23699 Puncture wound with foreign body of nose, sequela
## 23700 Open bite of nose, initial encounter
## 23701 Open bite of nose, subsequent encounter
## 23702 Open bite of nose, sequela
## 23703 Unspecified open wound of right ear, initial encounter
## 23704 Unspecified open wound of right ear, subsequent encounter
## 23705 Unspecified open wound of right ear, sequela
## 23706 Unspecified open wound of left ear, initial encounter
## 23707 Unspecified open wound of left ear, subsequent encounter
## 23708 Unspecified open wound of left ear, sequela
## 23709 Unspecified open wound of unspecified ear, initial encounter
## 23710 Unspecified open wound of unspecified ear, subsequent encounter
## 23711 Unspecified open wound of unspecified ear, sequela
## 23712 Laceration without foreign body of right ear, initial encounter
## 23713 Laceration without foreign body of right ear, subsequent encounter
## 23714 Laceration without foreign body of right ear, sequela
## 23715 Laceration without foreign body of left ear, initial encounter
## 23716 Laceration without foreign body of left ear, subsequent encounter
## 23717 Laceration without foreign body of left ear, sequela
## 23718 Laceration without foreign body of unspecified ear, initial encounter
## 23719 Laceration without foreign body of unspecified ear, subsequent encounter
## 23720 Laceration without foreign body of unspecified ear, sequela
## 23721 Laceration with foreign body of right ear, initial encounter
## 23722 Laceration with foreign body of right ear, subsequent encounter
## 23723 Laceration with foreign body of right ear, sequela
## 23724 Laceration with foreign body of left ear, initial encounter
## 23725 Laceration with foreign body of left ear, subsequent encounter
## 23726 Laceration with foreign body of left ear, sequela
## 23727 Laceration with foreign body of unspecified ear, initial encounter
## 23728 Laceration with foreign body of unspecified ear, subsequent encounter
## 23729 Laceration with foreign body of unspecified ear, sequela
## 23730 Puncture wound without foreign body of right ear, initial encounter
## 23731 Puncture wound without foreign body of right ear, subsequent encounter
## 23732 Puncture wound without foreign body of right ear, sequela
## 23733 Puncture wound without foreign body of left ear, initial encounter
## 23734 Puncture wound without foreign body of left ear, subsequent encounter
## 23735 Puncture wound without foreign body of left ear, sequela
## 23736 Puncture wound without foreign body of unspecified ear, initial encounter
## 23737 Puncture wound without foreign body of unspecified ear, subsequent encounter
## 23738 Puncture wound without foreign body of unspecified ear, sequela
## 23739 Puncture wound with foreign body of right ear, initial encounter
## 23740 Puncture wound with foreign body of right ear, subsequent encounter
## 23741 Puncture wound with foreign body of right ear, sequela
## 23742 Puncture wound with foreign body of left ear, initial encounter
## 23743 Puncture wound with foreign body of left ear, subsequent encounter
## 23744 Puncture wound with foreign body of left ear, sequela
## 23745 Puncture wound with foreign body of unspecified ear, initial encounter
## 23746 Puncture wound with foreign body of unspecified ear, subsequent encounter
## 23747 Puncture wound with foreign body of unspecified ear, sequela
## 23748 Open bite of right ear, initial encounter
## 23749 Open bite of right ear, subsequent encounter
## 23750 Open bite of right ear, sequela
## 23751 Open bite of left ear, initial encounter
## 23752 Open bite of left ear, subsequent encounter
## 23753 Open bite of left ear, sequela
## 23754 Open bite of unspecified ear, initial encounter
## 23755 Open bite of unspecified ear, subsequent encounter
## 23756 Open bite of unspecified ear, sequela
## 23757 Unspecified open wound of right cheek and temporomandibular area, initial encounter
## 23758 Unspecified open wound of right cheek and temporomandibular area, subsequent encounter
## 23759 Unspecified open wound of right cheek and temporomandibular area, sequela
## 23760 Unspecified open wound of left cheek and temporomandibular area, initial encounter
## 23761 Unspecified open wound of left cheek and temporomandibular area, subsequent encounter
## 23762 Unspecified open wound of left cheek and temporomandibular area, sequela
## 23763 Unspecified open wound of unspecified cheek and temporomandibular area, initial encounter
## 23764 Unspecified open wound of unspecified cheek and temporomandibular area, subsequent encounter
## 23765 Unspecified open wound of unspecified cheek and temporomandibular area, sequela
## 23766 Laceration without foreign body of right cheek and temporomandibular area, initial encounter
## 23767 Laceration without foreign body of right cheek and temporomandibular area, subsequent encounter
## 23768 Laceration without foreign body of right cheek and temporomandibular area, sequela
## 23769 Laceration without foreign body of left cheek and temporomandibular area, initial encounter
## 23770 Laceration without foreign body of left cheek and temporomandibular area, subsequent encounter
## 23771 Laceration without foreign body of left cheek and temporomandibular area, sequela
## 23772 Laceration without foreign body of unspecified cheek and temporomandibular area, initial encounter
## 23773 Laceration without foreign body of unspecified cheek and temporomandibular area, subsequent encounter
## 23774 Laceration without foreign body of unspecified cheek and temporomandibular area, sequela
## 23775 Laceration with foreign body of right cheek and temporomandibular area, initial encounter
## 23776 Laceration with foreign body of right cheek and temporomandibular area, subsequent encounter
## 23777 Laceration with foreign body of right cheek and temporomandibular area, sequela
## 23778 Laceration with foreign body of left cheek and temporomandibular area, initial encounter
## 23779 Laceration with foreign body of left cheek and temporomandibular area, subsequent encounter
## 23780 Laceration with foreign body of left cheek and temporomandibular area, sequela
## 23781 Laceration with foreign body of unspecified cheek and temporomandibular area, initial encounter
## 23782 Laceration with foreign body of unspecified cheek and temporomandibular area, subsequent encounter
## 23783 Laceration with foreign body of unspecified cheek and temporomandibular area, sequela
## 23784 Puncture wound without foreign body of right cheek and temporomandibular area, initial encounter
## 23785 Puncture wound without foreign body of right cheek and temporomandibular area, subsequent encounter
## 23786 Puncture wound without foreign body of right cheek and temporomandibular area, sequela
## 23787 Puncture wound without foreign body of left cheek and temporomandibular area, initial encounter
## 23788 Puncture wound without foreign body of left cheek and temporomandibular area, subsequent encounter
## 23789 Puncture wound without foreign body of left cheek and temporomandibular area, sequela
## 23790 Puncture wound without foreign body of unspecified cheek and temporomandibular area, initial encounter
## 23791 Puncture wound without foreign body of unspecified cheek and temporomandibular area, subsequent encounter
## 23792 Puncture wound without foreign body of unspecified cheek and temporomandibular area, sequela
## 23793 Puncture wound with foreign body of right cheek and temporomandibular area, initial encounter
## 23794 Puncture wound with foreign body of right cheek and temporomandibular area, subsequent encounter
## 23795 Puncture wound with foreign body of right cheek and temporomandibular area, sequela
## 23796 Puncture wound with foreign body of left cheek and temporomandibular area, initial encounter
## 23797 Puncture wound with foreign body of left cheek and temporomandibular area, subsequent encounter
## 23798 Puncture wound with foreign body of left cheek and temporomandibular area, sequela
## 23799 Puncture wound with foreign body of unspecified cheek and temporomandibular area, initial encounter
## 23800 Puncture wound with foreign body of unspecified cheek and temporomandibular area, subsequent encounter
## 23801 Puncture wound with foreign body of unspecified cheek and temporomandibular area, sequela
## 23802 Open bite of right cheek and temporomandibular area, initial encounter
## 23803 Open bite of right cheek and temporomandibular area, subsequent encounter
## 23804 Open bite of right cheek and temporomandibular area, sequela
## 23805 Open bite of left cheek and temporomandibular area, initial encounter
## 23806 Open bite of left cheek and temporomandibular area, subsequent encounter
## 23807 Open bite of left cheek and temporomandibular area, sequela
## 23808 Open bite of unspecified cheek and temporomandibular area, initial encounter
## 23809 Open bite of unspecified cheek and temporomandibular area, subsequent encounter
## 23810 Open bite of unspecified cheek and temporomandibular area, sequela
## 23811 Unspecified open wound of lip, initial encounter
## 23812 Unspecified open wound of lip, subsequent encounter
## 23813 Unspecified open wound of lip, sequela
## 23814 Unspecified open wound of oral cavity, initial encounter
## 23815 Unspecified open wound of oral cavity, subsequent encounter
## 23816 Unspecified open wound of oral cavity, sequela
## 23817 Laceration without foreign body of lip, initial encounter
## 23818 Laceration without foreign body of lip, subsequent encounter
## 23819 Laceration without foreign body of lip, sequela
## 23820 Laceration without foreign body of oral cavity, initial encounter
## 23821 Laceration without foreign body of oral cavity, subsequent encounter
## 23822 Laceration without foreign body of oral cavity, sequela
## 23823 Laceration with foreign body of lip, initial encounter
## 23824 Laceration with foreign body of lip, subsequent encounter
## 23825 Laceration with foreign body of lip, sequela
## 23826 Laceration with foreign body of oral cavity, initial encounter
## 23827 Laceration with foreign body of oral cavity, subsequent encounter
## 23828 Laceration with foreign body of oral cavity, sequela
## 23829 Puncture wound without foreign body of lip, initial encounter
## 23830 Puncture wound without foreign body of lip, subsequent encounter
## 23831 Puncture wound without foreign body of lip, sequela
## 23832 Puncture wound without foreign body of oral cavity, initial encounter
## 23833 Puncture wound without foreign body of oral cavity, subsequent encounter
## 23834 Puncture wound without foreign body of oral cavity, sequela
## 23835 Puncture wound with foreign body of lip, initial encounter
## 23836 Puncture wound with foreign body of lip, subsequent encounter
## 23837 Puncture wound with foreign body of lip, sequela
## 23838 Puncture wound with foreign body of oral cavity, initial encounter
## 23839 Puncture wound with foreign body of oral cavity, subsequent encounter
## 23840 Puncture wound with foreign body of oral cavity, sequela
## 23841 Open bite of lip, initial encounter
## 23842 Open bite of lip, subsequent encounter
## 23843 Open bite of lip, sequela
## 23844 Open bite of oral cavity, initial encounter
## 23845 Open bite of oral cavity, subsequent encounter
## 23846 Open bite of oral cavity, sequela
## 23847 Unspecified open wound of other part of head, initial encounter
## 23848 Unspecified open wound of other part of head, subsequent encounter
## 23849 Unspecified open wound of other part of head, sequela
## 23850 Laceration without foreign body of other part of head, initial encounter
## 23851 Laceration without foreign body of other part of head, subsequent encounter
## 23852 Laceration without foreign body of other part of head, sequela
## 23853 Laceration with foreign body of other part of head, initial encounter
## 23854 Laceration with foreign body of other part of head, subsequent encounter
## 23855 Laceration with foreign body of other part of head, sequela
## 23856 Puncture wound without foreign body of other part of head, initial encounter
## 23857 Puncture wound without foreign body of other part of head, subsequent encounter
## 23858 Puncture wound without foreign body of other part of head, sequela
## 23859 Puncture wound with foreign body of other part of head, initial encounter
## 23860 Puncture wound with foreign body of other part of head, subsequent encounter
## 23861 Puncture wound with foreign body of other part of head, sequela
## 23862 Open bite of other part of head, initial encounter
## 23863 Open bite of other part of head, subsequent encounter
## 23864 Open bite of other part of head, sequela
## 23865 Unspecified open wound of unspecified part of head, initial encounter
## 23866 Unspecified open wound of unspecified part of head, subsequent encounter
## 23867 Unspecified open wound of unspecified part of head, sequela
## 23868 Laceration without foreign body of unspecified part of head, initial encounter
## 23869 Laceration without foreign body of unspecified part of head, subsequent encounter
## 23870 Laceration without foreign body of unspecified part of head, sequela
## 23871 Laceration with foreign body of unspecified part of head, initial encounter
## 23872 Laceration with foreign body of unspecified part of head, subsequent encounter
## 23873 Laceration with foreign body of unspecified part of head, sequela
## 23874 Puncture wound without foreign body of unspecified part of head, initial encounter
## 23875 Puncture wound without foreign body of unspecified part of head, subsequent encounter
## 23876 Puncture wound without foreign body of unspecified part of head, sequela
## 23877 Puncture wound with foreign body of unspecified part of head, initial encounter
## 23878 Puncture wound with foreign body of unspecified part of head, subsequent encounter
## 23879 Puncture wound with foreign body of unspecified part of head, sequela
## 23880 Open bite of unspecified part of head, initial encounter
## 23881 Open bite of unspecified part of head, subsequent encounter
## 23882 Open bite of unspecified part of head, sequela
## 23883 Fracture of vault of skull, initial encounter for closed fracture
## 23884 Fracture of vault of skull, initial encounter for open fracture
## 23885 Fracture of vault of skull, subsequent encounter for fracture with routine healing
## 23886 Fracture of vault of skull, subsequent encounter for fracture with delayed healing
## 23887 Fracture of vault of skull, subsequent encounter for fracture with nonunion
## 23888 Fracture of vault of skull, sequela
## 23889 Fracture of base of skull, right side, initial encounter for closed fracture
## 23890 Fracture of base of skull, right side, initial encounter for open fracture
## 23891 Fracture of base of skull, right side, subsequent encounter for fracture with routine healing
## 23892 Fracture of base of skull, right side, subsequent encounter for fracture with delayed healing
## 23893 Fracture of base of skull, right side, subsequent encounter for fracture with nonunion
## 23894 Fracture of base of skull, right side, sequela
## 23895 Fracture of base of skull, left side, initial encounter for closed fracture
## 23896 Fracture of base of skull, left side, initial encounter for open fracture
## 23897 Fracture of base of skull, left side, subsequent encounter for fracture with routine healing
## 23898 Fracture of base of skull, left side, subsequent encounter for fracture with delayed healing
## 23899 Fracture of base of skull, left side, subsequent encounter for fracture with nonunion
## 23900 Fracture of base of skull, left side, sequela
## 23901 Fracture of base of skull, unspecified side, initial encounter for closed fracture
## 23902 Fracture of base of skull, unspecified side, initial encounter for open fracture
## 23903 Fracture of base of skull, unspecified side, subsequent encounter for fracture with routine healing
## 23904 Fracture of base of skull, unspecified side, subsequent encounter for fracture with delayed healing
## 23905 Fracture of base of skull, unspecified side, subsequent encounter for fracture with nonunion
## 23906 Fracture of base of skull, unspecified side, sequela
## 23907 Type I occipital condyle fracture, unspecified side, initial encounter for closed fracture
## 23908 Type I occipital condyle fracture, unspecified side, initial encounter for open fracture
## 23909 Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing
## 23910 Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing
## 23911 Type I occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion
## 23912 Type I occipital condyle fracture, unspecified side, sequela
## 23913 Type II occipital condyle fracture, unspecified side, initial encounter for closed fracture
## 23914 Type II occipital condyle fracture, unspecified side, initial encounter for open fracture
## 23915 Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing
## 23916 Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing
## 23917 Type II occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion
## 23918 Type II occipital condyle fracture, unspecified side, sequela
## 23919 Type III occipital condyle fracture, unspecified side, initial encounter for closed fracture
## 23920 Type III occipital condyle fracture, unspecified side, initial encounter for open fracture
## 23921 Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with routine healing
## 23922 Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with delayed healing
## 23923 Type III occipital condyle fracture, unspecified side, subsequent encounter for fracture with nonunion
## 23924 Type III occipital condyle fracture, unspecified side, sequela
## 23925 Unspecified occipital condyle fracture, initial encounter for closed fracture
## 23926 Unspecified occipital condyle fracture, initial encounter for open fracture
## 23927 Unspecified occipital condyle fracture, subsequent encounter for fracture with routine healing
## 23928 Unspecified occipital condyle fracture, subsequent encounter for fracture with delayed healing
## 23929 Unspecified occipital condyle fracture, subsequent encounter for fracture with nonunion
## 23930 Unspecified occipital condyle fracture, sequela
## 23931 Other fracture of occiput, unspecified side, initial encounter for closed fracture
## 23932 Other fracture of occiput, unspecified side, initial encounter for open fracture
## 23933 Other fracture of occiput, unspecified side, subsequent encounter for fracture with routine healing
## 23934 Other fracture of occiput, unspecified side, subsequent encounter for fracture with delayed healing
## 23935 Other fracture of occiput, unspecified side, subsequent encounter for fracture with nonunion
## 23936 Other fracture of occiput, unspecified side, sequela
## 23937 Unspecified fracture of occiput, initial encounter for closed fracture
## 23938 Unspecified fracture of occiput, initial encounter for open fracture
## 23939 Unspecified fracture of occiput, subsequent encounter for fracture with routine healing
## 23940 Unspecified fracture of occiput, subsequent encounter for fracture with delayed healing
## 23941 Unspecified fracture of occiput, subsequent encounter for fracture with nonunion
## 23942 Unspecified fracture of occiput, sequela
## 23943 Type I occipital condyle fracture, right side, initial encounter for closed fracture
## 23944 Type I occipital condyle fracture, right side, initial encounter for open fracture
## 23945 Type I occipital condyle fracture, right side, subsequent encounter for fracture with routine healing
## 23946 Type I occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing
## 23947 Type I occipital condyle fracture, right side, subsequent encounter for fracture with nonunion
## 23948 Type I occipital condyle fracture, right side, sequela
## 23949 Type I occipital condyle fracture, left side, initial encounter for closed fracture
## 23950 Type I occipital condyle fracture, left side, initial encounter for open fracture
## 23951 Type I occipital condyle fracture, left side, subsequent encounter for fracture with routine healing
## 23952 Type I occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing
## 23953 Type I occipital condyle fracture, left side, subsequent encounter for fracture with nonunion
## 23954 Type I occipital condyle fracture, left side, sequela
## 23955 Type II occipital condyle fracture, right side, initial encounter for closed fracture
## 23956 Type II occipital condyle fracture, right side, initial encounter for open fracture
## 23957 Type II occipital condyle fracture, right side, subsequent encounter for fracture with routine healing
## 23958 Type II occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing
## 23959 Type II occipital condyle fracture, right side, subsequent encounter for fracture with nonunion
## 23960 Type II occipital condyle fracture, right side, sequela
## 23961 Type II occipital condyle fracture, left side, initial encounter for closed fracture
## 23962 Type II occipital condyle fracture, left side, initial encounter for open fracture
## 23963 Type II occipital condyle fracture, left side, subsequent encounter for fracture with routine healing
## 23964 Type II occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing
## 23965 Type II occipital condyle fracture, left side, subsequent encounter for fracture with nonunion
## 23966 Type II occipital condyle fracture, left side, sequela
## 23967 Type III occipital condyle fracture, right side, initial encounter for closed fracture
## 23968 Type III occipital condyle fracture, right side, initial encounter for open fracture
## 23969 Type III occipital condyle fracture, right side, subsequent encounter for fracture with routine healing
## 23970 Type III occipital condyle fracture, right side, subsequent encounter for fracture with delayed healing
## 23971 Type III occipital condyle fracture, right side, subsequent encounter for fracture with nonunion
## 23972 Type III occipital condyle fracture, right side, sequela
## 23973 Type III occipital condyle fracture, left side, initial encounter for closed fracture
## 23974 Type III occipital condyle fracture, left side, initial encounter for open fracture
## 23975 Type III occipital condyle fracture, left side, subsequent encounter for fracture with routine healing
## 23976 Type III occipital condyle fracture, left side, subsequent encounter for fracture with delayed healing
## 23977 Type III occipital condyle fracture, left side, subsequent encounter for fracture with nonunion
## 23978 Type III occipital condyle fracture, left side, sequela
## 23979 Other fracture of occiput, right side, initial encounter for closed fracture
## 23980 Other fracture of occiput, right side, initial encounter for open fracture
## 23981 Other fracture of occiput, right side, subsequent encounter for fracture with routine healing
## 23982 Other fracture of occiput, right side, subsequent encounter for fracture with delayed healing
## 23983 Other fracture of occiput, right side, subsequent encounter for fracture with nonunion
## 23984 Other fracture of occiput, right side, sequela
## 23985 Other fracture of occiput, left side, initial encounter for closed fracture
## 23986 Other fracture of occiput, left side, initial encounter for open fracture
## 23987 Other fracture of occiput, left side, subsequent encounter for fracture with routine healing
## 23988 Other fracture of occiput, left side, subsequent encounter for fracture with delayed healing
## 23989 Other fracture of occiput, left side, subsequent encounter for fracture with nonunion
## 23990 Other fracture of occiput, left side, sequela
## 23991 Fracture of orbital roof, right side, initial encounter for closed fracture
## 23992 Fracture of orbital roof, right side, initial encounter for open fracture
## 23993 Fracture of orbital roof, right side, subsequent encounter for fracture with routine healing
## 23994 Fracture of orbital roof, right side, subsequent encounter for fracture with delayed healing
## 23995 Fracture of orbital roof, right side, subsequent encounter for fracture with nonunion
## 23996 Fracture of orbital roof, right side, sequela
## 23997 Fracture of orbital roof, left side, initial encounter for closed fracture
## 23998 Fracture of orbital roof, left side, initial encounter for open fracture
## 23999 Fracture of orbital roof, left side, subsequent encounter for fracture with routine healing
## 24000 Fracture of orbital roof, left side, subsequent encounter for fracture with delayed healing
## 24001 Fracture of orbital roof, left side, subsequent encounter for fracture with nonunion
## 24002 Fracture of orbital roof, left side, sequela
## 24003 Fracture of orbital roof, unspecified side, initial encounter for closed fracture
## 24004 Fracture of orbital roof, unspecified side, initial encounter for open fracture
## 24005 Fracture of orbital roof, unspecified side, subsequent encounter for fracture with routine healing
## 24006 Fracture of orbital roof, unspecified side, subsequent encounter for fracture with delayed healing
## 24007 Fracture of orbital roof, unspecified side, subsequent encounter for fracture with nonunion
## 24008 Fracture of orbital roof, unspecified side, sequela
## 24009 Other fracture of base of skull, initial encounter for closed fracture
## 24010 Other fracture of base of skull, initial encounter for open fracture
## 24011 Other fracture of base of skull, subsequent encounter for fracture with routine healing
## 24012 Other fracture of base of skull, subsequent encounter for fracture with delayed healing
## 24013 Other fracture of base of skull, subsequent encounter for fracture with nonunion
## 24014 Other fracture of base of skull, sequela
## 24015 Fracture of nasal bones, initial encounter for closed fracture
## 24016 Fracture of nasal bones, initial encounter for open fracture
## 24017 Fracture of nasal bones, subsequent encounter for fracture with routine healing
## 24018 Fracture of nasal bones, subsequent encounter for fracture with delayed healing
## 24019 Fracture of nasal bones, subsequent encounter for fracture with nonunion
## 24020 Fracture of nasal bones, sequela
## 24021 Fracture of orbital floor, unspecified side, initial encounter for closed fracture
## 24022 Fracture of orbital floor, unspecified side, initial encounter for open fracture
## 24023 Fracture of orbital floor, unspecified side, subsequent encounter for fracture with routine healing
## 24024 Fracture of orbital floor, unspecified side, subsequent encounter for fracture with delayed healing
## 24025 Fracture of orbital floor, unspecified side, subsequent encounter for fracture with nonunion
## 24026 Fracture of orbital floor, unspecified side, sequela
## 24027 Fracture of orbital floor, right side, initial encounter for closed fracture
## 24028 Fracture of orbital floor, right side, initial encounter for open fracture
## 24029 Fracture of orbital floor, right side, subsequent encounter for fracture with routine healing
## 24030 Fracture of orbital floor, right side, subsequent encounter for fracture with delayed healing
## 24031 Fracture of orbital floor, right side, subsequent encounter for fracture with nonunion
## 24032 Fracture of orbital floor, right side, sequela
## 24033 Fracture of orbital floor, left side, initial encounter for closed fracture
## 24034 Fracture of orbital floor, left side, initial encounter for open fracture
## 24035 Fracture of orbital floor, left side, subsequent encounter for fracture with routine healing
## 24036 Fracture of orbital floor, left side, subsequent encounter for fracture with delayed healing
## 24037 Fracture of orbital floor, left side, subsequent encounter for fracture with nonunion
## 24038 Fracture of orbital floor, left side, sequela
## 24039 Malar fracture, unspecified side, initial encounter for closed fracture
## 24040 Malar fracture, unspecified side, initial encounter for open fracture
## 24041 Malar fracture, unspecified side, subsequent encounter for fracture with routine healing
## 24042 Malar fracture, unspecified side, subsequent encounter for fracture with delayed healing
## 24043 Malar fracture, unspecified side, subsequent encounter for fracture with nonunion
## 24044 Malar fracture, unspecified side, sequela
## 24045 Maxillary fracture, unspecified side, initial encounter for closed fracture
## 24046 Maxillary fracture, unspecified side, initial encounter for open fracture
## 24047 Maxillary fracture, unspecified side, subsequent encounter for fracture with routine healing
## 24048 Maxillary fracture, unspecified side, subsequent encounter for fracture with delayed healing
## 24049 Maxillary fracture, unspecified side, subsequent encounter for fracture with nonunion
## 24050 Maxillary fracture, unspecified side, sequela
## 24051 Zygomatic fracture, unspecified side, initial encounter for closed fracture
## 24052 Zygomatic fracture, unspecified side, initial encounter for open fracture
## 24053 Zygomatic fracture, unspecified side, subsequent encounter for fracture with routine healing
## 24054 Zygomatic fracture, unspecified side, subsequent encounter for fracture with delayed healing
## 24055 Zygomatic fracture, unspecified side, subsequent encounter for fracture with nonunion
## 24056 Zygomatic fracture, unspecified side, sequela
## 24057 Malar fracture, right side, initial encounter for closed fracture
## 24058 Malar fracture, right side, initial encounter for open fracture
## 24059 Malar fracture, right side, subsequent encounter for fracture with routine healing
## 24060 Malar fracture, right side, subsequent encounter for fracture with delayed healing
## 24061 Malar fracture, right side, subsequent encounter for fracture with nonunion
## 24062 Malar fracture, right side, sequela
## 24063 Malar fracture, left side, initial encounter for closed fracture
## 24064 Malar fracture, left side, initial encounter for open fracture
## 24065 Malar fracture, left side, subsequent encounter for fracture with routine healing
## 24066 Malar fracture, left side, subsequent encounter for fracture with delayed healing
## 24067 Malar fracture, left side, subsequent encounter for fracture with nonunion
## 24068 Malar fracture, left side, sequela
## 24069 Maxillary fracture, right side, initial encounter for closed fracture
## 24070 Maxillary fracture, right side, initial encounter for open fracture
## 24071 Maxillary fracture, right side, subsequent encounter for fracture with routine healing
## 24072 Maxillary fracture, right side, subsequent encounter for fracture with delayed healing
## 24073 Maxillary fracture, right side, subsequent encounter for fracture with nonunion
## 24074 Maxillary fracture, right side, sequela
## 24075 Maxillary fracture, left side, initial encounter for closed fracture
## 24076 Maxillary fracture, left side, initial encounter for open fracture
## 24077 Maxillary fracture, left side, subsequent encounter for fracture with routine healing
## 24078 Maxillary fracture, left side, subsequent encounter for fracture with delayed healing
## 24079 Maxillary fracture, left side, subsequent encounter for fracture with nonunion
## 24080 Maxillary fracture, left side, sequela
## 24081 Zygomatic fracture, right side, initial encounter for closed fracture
## 24082 Zygomatic fracture, right side, initial encounter for open fracture
## 24083 Zygomatic fracture, right side, subsequent encounter for fracture with routine healing
## 24084 Zygomatic fracture, right side, subsequent encounter for fracture with delayed healing
## 24085 Zygomatic fracture, right side, subsequent encounter for fracture with nonunion
## 24086 Zygomatic fracture, right side, sequela
## 24087 Zygomatic fracture, left side, initial encounter for closed fracture
## 24088 Zygomatic fracture, left side, initial encounter for open fracture
## 24089 Zygomatic fracture, left side, subsequent encounter for fracture with routine healing
## 24090 Zygomatic fracture, left side, subsequent encounter for fracture with delayed healing
## 24091 Zygomatic fracture, left side, subsequent encounter for fracture with nonunion
## 24092 Zygomatic fracture, left side, sequela
## 24093 LeFort I fracture, initial encounter for closed fracture
## 24094 LeFort I fracture, initial encounter for open fracture
## 24095 LeFort I fracture, subsequent encounter for fracture with routine healing
## 24096 LeFort I fracture, subsequent encounter for fracture with delayed healing
## 24097 LeFort I fracture, subsequent encounter for fracture with nonunion
## 24098 LeFort I fracture, sequela
## 24099 LeFort II fracture, initial encounter for closed fracture
## 24100 LeFort II fracture, initial encounter for open fracture
## 24101 LeFort II fracture, subsequent encounter for fracture with routine healing
## 24102 LeFort II fracture, subsequent encounter for fracture with delayed healing
## 24103 LeFort II fracture, subsequent encounter for fracture with nonunion
## 24104 LeFort II fracture, sequela
## 24105 LeFort III fracture, initial encounter for closed fracture
## 24106 LeFort III fracture, initial encounter for open fracture
## 24107 LeFort III fracture, subsequent encounter for fracture with routine healing
## 24108 LeFort III fracture, subsequent encounter for fracture with delayed healing
## 24109 LeFort III fracture, subsequent encounter for fracture with nonunion
## 24110 LeFort III fracture, sequela
## 24111 Fracture of alveolus of maxilla, initial encounter for closed fracture
## 24112 Fracture of alveolus of maxilla, initial encounter for open fracture
## 24113 Fracture of alveolus of maxilla, subsequent encounter for fracture with routine healing
## 24114 Fracture of alveolus of maxilla, subsequent encounter for fracture with delayed healing
## 24115 Fracture of alveolus of maxilla, subsequent encounter for fracture with nonunion
## 24116 Fracture of alveolus of maxilla, sequela
## 24117 Fracture of tooth (traumatic), initial encounter for closed fracture
## 24118 Fracture of tooth (traumatic), initial encounter for open fracture
## 24119 Fracture of tooth (traumatic), subsequent encounter for fracture with routine healing
## 24120 Fracture of tooth (traumatic), subsequent encounter for fracture with delayed healing
## 24121 Fracture of tooth (traumatic), subsequent encounter for fracture with nonunion
## 24122 Fracture of tooth (traumatic), sequela
## 24123 Fracture of unspecified part of body of mandible, unspecified side, initial encounter for closed fracture
## 24124 Fracture of unspecified part of body of mandible, unspecified side, initial encounter for open fracture
## 24125 Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with routine healing
## 24126 Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with delayed healing
## 24127 Fracture of unspecified part of body of mandible, unspecified side, subsequent encounter for fracture with nonunion
## 24128 Fracture of unspecified part of body of mandible, unspecified side, sequela
## 24129 Fracture of unspecified part of body of right mandible, initial encounter for closed fracture
## 24130 Fracture of unspecified part of body of right mandible, initial encounter for open fracture
## 24131 Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with routine healing
## 24132 Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with delayed healing
## 24133 Fracture of unspecified part of body of right mandible, subsequent encounter for fracture with nonunion
## 24134 Fracture of unspecified part of body of right mandible, sequela
## 24135 Fracture of unspecified part of body of left mandible, initial encounter for closed fracture
## 24136 Fracture of unspecified part of body of left mandible, initial encounter for open fracture
## 24137 Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with routine healing
## 24138 Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with delayed healing
## 24139 Fracture of unspecified part of body of left mandible, subsequent encounter for fracture with nonunion
## 24140 Fracture of unspecified part of body of left mandible, sequela
## 24141 Fracture of mandible, unspecified, initial encounter for closed fracture
## 24142 Fracture of mandible, unspecified, initial encounter for open fracture
## 24143 Fracture of mandible, unspecified, subsequent encounter for fracture with routine healing
## 24144 Fracture of mandible, unspecified, subsequent encounter for fracture with delayed healing
## 24145 Fracture of mandible, unspecified, subsequent encounter for fracture with nonunion
## 24146 Fracture of mandible, unspecified, sequela
## 24147 Fracture of condylar process of mandible, unspecified side, initial encounter for closed fracture
## 24148 Fracture of condylar process of mandible, unspecified side, initial encounter for open fracture
## 24149 Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with routine healing
## 24150 Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with delayed healing
## 24151 Fracture of condylar process of mandible, unspecified side, subsequent encounter for fracture with nonunion
## 24152 Fracture of condylar process of mandible, unspecified side, sequela
## 24153 Fracture of condylar process of right mandible, initial encounter for closed fracture
## 24154 Fracture of condylar process of right mandible, initial encounter for open fracture
## 24155 Fracture of condylar process of right mandible, subsequent encounter for fracture with routine healing
## 24156 Fracture of condylar process of right mandible, subsequent encounter for fracture with delayed healing
## 24157 Fracture of condylar process of right mandible, subsequent encounter for fracture with nonunion
## 24158 Fracture of condylar process of right mandible, sequela
## 24159 Fracture of condylar process of left mandible, initial encounter for closed fracture
## 24160 Fracture of condylar process of left mandible, initial encounter for open fracture
## 24161 Fracture of condylar process of left mandible, subsequent encounter for fracture with routine healing
## 24162 Fracture of condylar process of left mandible, subsequent encounter for fracture with delayed healing
## 24163 Fracture of condylar process of left mandible, subsequent encounter for fracture with nonunion
## 24164 Fracture of condylar process of left mandible, sequela
## 24165 Fracture of subcondylar process of mandible, unspecified side, initial encounter for closed fracture
## 24166 Fracture of subcondylar process of mandible, unspecified side, initial encounter for open fracture
## 24167 Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with routine healing
## 24168 Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with delayed healing
## 24169 Fracture of subcondylar process of mandible, unspecified side, subsequent encounter for fracture with nonunion
## 24170 Fracture of subcondylar process of mandible, unspecified side, sequela
## 24171 Fracture of subcondylar process of right mandible, initial encounter for closed fracture
## 24172 Fracture of subcondylar process of right mandible, initial encounter for open fracture
## 24173 Fracture of subcondylar process of right mandible, subsequent encounter for fracture with routine healing
## 24174 Fracture of subcondylar process of right mandible, subsequent encounter for fracture with delayed healing
## 24175 Fracture of subcondylar process of right mandible, subsequent encounter for fracture with nonunion
## 24176 Fracture of subcondylar process of right mandible, sequela
## 24177 Fracture of subcondylar process of left mandible, initial encounter for closed fracture
## 24178 Fracture of subcondylar process of left mandible, initial encounter for open fracture
## 24179 Fracture of subcondylar process of left mandible, subsequent encounter for fracture with routine healing
## 24180 Fracture of subcondylar process of left mandible, subsequent encounter for fracture with delayed healing
## 24181 Fracture of subcondylar process of left mandible, subsequent encounter for fracture with nonunion
## 24182 Fracture of subcondylar process of left mandible, sequela
## 24183 Fracture of coronoid process of mandible, unspecified side, initial encounter for closed fracture
## 24184 Fracture of coronoid process of mandible, unspecified side, initial encounter for open fracture
## 24185 Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with routine healing
## 24186 Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with delayed healing
## 24187 Fracture of coronoid process of mandible, unspecified side, subsequent encounter for fracture with nonunion
## 24188 Fracture of coronoid process of mandible, unspecified side, sequela
## 24189 Fracture of coronoid process of right mandible, initial encounter for closed fracture
## 24190 Fracture of coronoid process of right mandible, initial encounter for open fracture
## 24191 Fracture of coronoid process of right mandible, subsequent encounter for fracture with routine healing
## 24192 Fracture of coronoid process of right mandible, subsequent encounter for fracture with delayed healing
## 24193 Fracture of coronoid process of right mandible, subsequent encounter for fracture with nonunion
## 24194 Fracture of coronoid process of right mandible, sequela
## 24195 Fracture of coronoid process of left mandible, initial encounter for closed fracture
## 24196 Fracture of coronoid process of left mandible, initial encounter for open fracture
## 24197 Fracture of coronoid process of left mandible, subsequent encounter for fracture with routine healing
## 24198 Fracture of coronoid process of left mandible, subsequent encounter for fracture with delayed healing
## 24199 Fracture of coronoid process of left mandible, subsequent encounter for fracture with nonunion
## 24200 Fracture of coronoid process of left mandible, sequela
## 24201 Fracture of ramus of mandible, unspecified side, initial encounter for closed fracture
## 24202 Fracture of ramus of mandible, unspecified side, initial encounter for open fracture
## 24203 Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with routine healing
## 24204 Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with delayed healing
## 24205 Fracture of ramus of mandible, unspecified side, subsequent encounter for fracture with nonunion
## 24206 Fracture of ramus of mandible, unspecified side, sequela
## 24207 Fracture of ramus of right mandible, initial encounter for closed fracture
## 24208 Fracture of ramus of right mandible, initial encounter for open fracture
## 24209 Fracture of ramus of right mandible, subsequent encounter for fracture with routine healing
## 24210 Fracture of ramus of right mandible, subsequent encounter for fracture with delayed healing
## 24211 Fracture of ramus of right mandible, subsequent encounter for fracture with nonunion
## 24212 Fracture of ramus of right mandible, sequela
## 24213 Fracture of ramus of left mandible, initial encounter for closed fracture
## 24214 Fracture of ramus of left mandible, initial encounter for open fracture
## 24215 Fracture of ramus of left mandible, subsequent encounter for fracture with routine healing
## 24216 Fracture of ramus of left mandible, subsequent encounter for fracture with delayed healing
## 24217 Fracture of ramus of left mandible, subsequent encounter for fracture with nonunion
## 24218 Fracture of ramus of left mandible, sequela
## 24219 Fracture of angle of mandible, unspecified side, initial encounter for closed fracture
## 24220 Fracture of angle of mandible, unspecified side, initial encounter for open fracture
## 24221 Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with routine healing
## 24222 Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with delayed healing
## 24223 Fracture of angle of mandible, unspecified side, subsequent encounter for fracture with nonunion
## 24224 Fracture of angle of mandible, unspecified side, sequela
## 24225 Fracture of angle of right mandible, initial encounter for closed fracture
## 24226 Fracture of angle of right mandible, initial encounter for open fracture
## 24227 Fracture of angle of right mandible, subsequent encounter for fracture with routine healing
## 24228 Fracture of angle of right mandible, subsequent encounter for fracture with delayed healing
## 24229 Fracture of angle of right mandible, subsequent encounter for fracture with nonunion
## 24230 Fracture of angle of right mandible, sequela
## 24231 Fracture of angle of left mandible, initial encounter for closed fracture
## 24232 Fracture of angle of left mandible, initial encounter for open fracture
## 24233 Fracture of angle of left mandible, subsequent encounter for fracture with routine healing
## 24234 Fracture of angle of left mandible, subsequent encounter for fracture with delayed healing
## 24235 Fracture of angle of left mandible, subsequent encounter for fracture with nonunion
## 24236 Fracture of angle of left mandible, sequela
## 24237 Fracture of symphysis of mandible, initial encounter for closed fracture
## 24238 Fracture of symphysis of mandible, initial encounter for open fracture
## 24239 Fracture of symphysis of mandible, subsequent encounter for fracture with routine healing
## 24240 Fracture of symphysis of mandible, subsequent encounter for fracture with delayed healing
## 24241 Fracture of symphysis of mandible, subsequent encounter for fracture with nonunion
## 24242 Fracture of symphysis of mandible, sequela
## 24243 Fracture of alveolus of mandible, unspecified side, initial encounter for closed fracture
## 24244 Fracture of alveolus of mandible, unspecified side, initial encounter for open fracture
## 24245 Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with routine healing
## 24246 Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with delayed healing
## 24247 Fracture of alveolus of mandible, unspecified side, subsequent encounter for fracture with nonunion
## 24248 Fracture of alveolus of mandible, unspecified side, sequela
## 24249 Fracture of alveolus of right mandible, initial encounter for closed fracture
## 24250 Fracture of alveolus of right mandible, initial encounter for open fracture
## 24251 Fracture of alveolus of right mandible, subsequent encounter for fracture with routine healing
## 24252 Fracture of alveolus of right mandible, subsequent encounter for fracture with delayed healing
## 24253 Fracture of alveolus of right mandible, subsequent encounter for fracture with nonunion
## 24254 Fracture of alveolus of right mandible, sequela
## 24255 Fracture of alveolus of left mandible, initial encounter for closed fracture
## 24256 Fracture of alveolus of left mandible, initial encounter for open fracture
## 24257 Fracture of alveolus of left mandible, subsequent encounter for fracture with routine healing
## 24258 Fracture of alveolus of left mandible, subsequent encounter for fracture with delayed healing
## 24259 Fracture of alveolus of left mandible, subsequent encounter for fracture with nonunion
## 24260 Fracture of alveolus of left mandible, sequela
## 24261 Fracture of mandible of other specified site, initial encounter for closed fracture
## 24262 Fracture of mandible of other specified site, initial encounter for open fracture
## 24263 Fracture of mandible of other specified site, subsequent encounter for fracture with routine healing
## 24264 Fracture of mandible of other specified site, subsequent encounter for fracture with delayed healing
## 24265 Fracture of mandible of other specified site, subsequent encounter for fracture with nonunion
## 24266 Fracture of mandible of other specified site, sequela
## 24267 Fracture of other specified skull and facial bones, unspecified side, initial encounter for closed fracture
## 24268 Fracture of other specified skull and facial bones, unspecified side, initial encounter for open fracture
## 24269 Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with routine healing
## 24270 Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with delayed healing
## 24271 Fracture of other specified skull and facial bones, unspecified side, subsequent encounter for fracture with nonunion
## 24272 Fracture of other specified skull and facial bones, unspecified side, sequela
## 24273 Fracture of other specified skull and facial bones, right side, initial encounter for closed fracture
## 24274 Fracture of other specified skull and facial bones, right side, initial encounter for open fracture
## 24275 Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with routine healing
## 24276 Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with delayed healing
## 24277 Fracture of other specified skull and facial bones, right side, subsequent encounter for fracture with nonunion
## 24278 Fracture of other specified skull and facial bones, right side, sequela
## 24279 Fracture of other specified skull and facial bones, left side, initial encounter for closed fracture
## 24280 Fracture of other specified skull and facial bones, left side, initial encounter for open fracture
## 24281 Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with routine healing
## 24282 Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with delayed healing
## 24283 Fracture of other specified skull and facial bones, left side, subsequent encounter for fracture with nonunion
## 24284 Fracture of other specified skull and facial bones, left side, sequela
## 24285 Fracture of medial orbital wall, right side, initial encounter for closed fracture
## 24286 Fracture of medial orbital wall, right side, initial encounter for open fracture
## 24287 Fracture of medial orbital wall, right side, subsequent encounter for fracture with routine healing
## 24288 Fracture of medial orbital wall, right side, subsequent encounter for fracture with delayed healing
## 24289 Fracture of medial orbital wall, right side, subsequent encounter for fracture with nonunion
## 24290 Fracture of medial orbital wall, right side, sequela
## 24291 Fracture of medial orbital wall, left side, initial encounter for closed fracture
## 24292 Fracture of medial orbital wall, left side, initial encounter for open fracture
## 24293 Fracture of medial orbital wall, left side, subsequent encounter for fracture with routine healing
## 24294 Fracture of medial orbital wall, left side, subsequent encounter for fracture with delayed healing
## 24295 Fracture of medial orbital wall, left side, subsequent encounter for fracture with nonunion
## 24296 Fracture of medial orbital wall, left side, sequela
## 24297 Fracture of medial orbital wall, unspecified side, initial encounter for closed fracture
## 24298 Fracture of medial orbital wall, unspecified side, initial encounter for open fracture
## 24299 Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with routine healing
## 24300 Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with delayed healing
## 24301 Fracture of medial orbital wall, unspecified side, subsequent encounter for fracture with nonunion
## 24302 Fracture of medial orbital wall, unspecified side, sequela
## 24303 Fracture of lateral orbital wall, right side, initial encounter for closed fracture
## 24304 Fracture of lateral orbital wall, right side, initial encounter for open fracture
## 24305 Fracture of lateral orbital wall, right side, subsequent encounter for fracture with routine healing
## 24306 Fracture of lateral orbital wall, right side, subsequent encounter for fracture with delayed healing
## 24307 Fracture of lateral orbital wall, right side, subsequent encounter for fracture with nonunion
## 24308 Fracture of lateral orbital wall, right side, sequela
## 24309 Fracture of lateral orbital wall, left side, initial encounter for closed fracture
## 24310 Fracture of lateral orbital wall, left side, initial encounter for open fracture
## 24311 Fracture of lateral orbital wall, left side, subsequent encounter for fracture with routine healing
## 24312 Fracture of lateral orbital wall, left side, subsequent encounter for fracture with delayed healing
## 24313 Fracture of lateral orbital wall, left side, subsequent encounter for fracture with nonunion
## 24314 Fracture of lateral orbital wall, left side, sequela
## 24315 Fracture of lateral orbital wall, unspecified side, initial encounter for closed fracture
## 24316 Fracture of lateral orbital wall, unspecified side, initial encounter for open fracture
## 24317 Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with routine healing
## 24318 Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with delayed healing
## 24319 Fracture of lateral orbital wall, unspecified side, subsequent encounter for fracture with nonunion
## 24320 Fracture of lateral orbital wall, unspecified side, sequela
## 24321 Fracture of orbit, unspecified, initial encounter for closed fracture
## 24322 Fracture of orbit, unspecified, initial encounter for open fracture
## 24323 Fracture of orbit, unspecified, subsequent encounter for fracture with routine healing
## 24324 Fracture of orbit, unspecified, subsequent encounter for fracture with delayed healing
## 24325 Fracture of orbit, unspecified, subsequent encounter for fracture with nonunion
## 24326 Fracture of orbit, unspecified, sequela
## 24327 Unspecified fracture of skull, initial encounter for closed fracture
## 24328 Unspecified fracture of skull, initial encounter for open fracture
## 24329 Unspecified fracture of skull, subsequent encounter for fracture with routine healing
## 24330 Unspecified fracture of skull, subsequent encounter for fracture with delayed healing
## 24331 Unspecified fracture of skull, subsequent encounter for fracture with nonunion
## 24332 Unspecified fracture of skull, sequela
## 24333 Unspecified fracture of facial bones, initial encounter for closed fracture
## 24334 Unspecified fracture of facial bones, initial encounter for open fracture
## 24335 Unspecified fracture of facial bones, subsequent encounter for fracture with routine healing
## 24336 Unspecified fracture of facial bones, subsequent encounter for fracture with delayed healing
## 24337 Unspecified fracture of facial bones, subsequent encounter for fracture with nonunion
## 24338 Unspecified fracture of facial bones, sequela
## 24339 Dislocation of jaw, unspecified side, initial encounter
## 24340 Dislocation of jaw, unspecified side, subsequent encounter
## 24341 Dislocation of jaw, unspecified side, sequela
## 24342 Dislocation of jaw, right side, initial encounter
## 24343 Dislocation of jaw, right side, subsequent encounter
## 24344 Dislocation of jaw, right side, sequela
## 24345 Dislocation of jaw, left side, initial encounter
## 24346 Dislocation of jaw, left side, subsequent encounter
## 24347 Dislocation of jaw, left side, sequela
## 24348 Dislocation of jaw, bilateral, initial encounter
## 24349 Dislocation of jaw, bilateral, subsequent encounter
## 24350 Dislocation of jaw, bilateral, sequela
## 24351 Dislocation of septal cartilage of nose, initial encounter
## 24352 Dislocation of septal cartilage of nose, subsequent encounter
## 24353 Dislocation of septal cartilage of nose, sequela
## 24354 Dislocation of tooth, initial encounter
## 24355 Dislocation of tooth, subsequent encounter
## 24356 Dislocation of tooth, sequela
## 24357 Sprain of jaw, unspecified side, initial encounter
## 24358 Sprain of jaw, unspecified side, subsequent encounter
## 24359 Sprain of jaw, unspecified side, sequela
## 24360 Sprain of jaw, right side, initial encounter
## 24361 Sprain of jaw, right side, subsequent encounter
## 24362 Sprain of jaw, right side, sequela
## 24363 Sprain of jaw, left side, initial encounter
## 24364 Sprain of jaw, left side, subsequent encounter
## 24365 Sprain of jaw, left side, sequela
## 24366 Sprain of jaw, bilateral, initial encounter
## 24367 Sprain of jaw, bilateral, subsequent encounter
## 24368 Sprain of jaw, bilateral, sequela
## 24369 Sprain of joints and ligaments of other parts of head, initial encounter
## 24370 Sprain of joints and ligaments of other parts of head, subsequent encounter
## 24371 Sprain of joints and ligaments of other parts of head, sequela
## 24372 Sprain of joints and ligaments of unspecified parts of head, initial encounter
## 24373 Sprain of joints and ligaments of unspecified parts of head, subsequent encounter
## 24374 Sprain of joints and ligaments of unspecified parts of head, sequela
## 24375 Injury of optic nerve, right eye, initial encounter
## 24376 Injury of optic nerve, right eye, subsequent encounter
## 24377 Injury of optic nerve, right eye, sequela
## 24378 Injury of optic nerve, left eye, initial encounter
## 24379 Injury of optic nerve, left eye, subsequent encounter
## 24380 Injury of optic nerve, left eye, sequela
## 24381 Injury of optic nerve, unspecified eye, initial encounter
## 24382 Injury of optic nerve, unspecified eye, subsequent encounter
## 24383 Injury of optic nerve, unspecified eye, sequela
## 24384 Injury of optic chiasm, initial encounter
## 24385 Injury of optic chiasm, subsequent encounter
## 24386 Injury of optic chiasm, sequela
## 24387 Injury of optic tract and pathways, right side, initial encounter
## 24388 Injury of optic tract and pathways, right side, subsequent encounter
## 24389 Injury of optic tract and pathways, right side, sequela
## 24390 Injury of optic tract and pathways, left side, initial encounter
## 24391 Injury of optic tract and pathways, left side, subsequent encounter
## 24392 Injury of optic tract and pathways, left side, sequela
## 24393 Injury of optic tract and pathways, unspecified side, initial encounter
## 24394 Injury of optic tract and pathways, unspecified side, subsequent encounter
## 24395 Injury of optic tract and pathways, unspecified side, sequela
## 24396 Injury of visual cortex, right side, initial encounter
## 24397 Injury of visual cortex, right side, subsequent encounter
## 24398 Injury of visual cortex, right side, sequela
## 24399 Injury of visual cortex, left side, initial encounter
## 24400 Injury of visual cortex, left side, subsequent encounter
## 24401 Injury of visual cortex, left side, sequela
## 24402 Injury of visual cortex, unspecified side, initial encounter
## 24403 Injury of visual cortex, unspecified side, subsequent encounter
## 24404 Injury of visual cortex, unspecified side, sequela
## 24405 Injury of oculomotor nerve, unspecified side, initial encounter
## 24406 Injury of oculomotor nerve, unspecified side, subsequent encounter
## 24407 Injury of oculomotor nerve, unspecified side, sequela
## 24408 Injury of oculomotor nerve, right side, initial encounter
## 24409 Injury of oculomotor nerve, right side, subsequent encounter
## 24410 Injury of oculomotor nerve, right side, sequela
## 24411 Injury of oculomotor nerve, left side, initial encounter
## 24412 Injury of oculomotor nerve, left side, subsequent encounter
## 24413 Injury of oculomotor nerve, left side, sequela
## 24414 Injury of trochlear nerve, unspecified side, initial encounter
## 24415 Injury of trochlear nerve, unspecified side, subsequent encounter
## 24416 Injury of trochlear nerve, unspecified side, sequela
## 24417 Injury of trochlear nerve, right side, initial encounter
## 24418 Injury of trochlear nerve, right side, subsequent encounter
## 24419 Injury of trochlear nerve, right side, sequela
## 24420 Injury of trochlear nerve, left side, initial encounter
## 24421 Injury of trochlear nerve, left side, subsequent encounter
## 24422 Injury of trochlear nerve, left side, sequela
## 24423 Injury of trigeminal nerve, unspecified side, initial encounter
## 24424 Injury of trigeminal nerve, unspecified side, subsequent encounter
## 24425 Injury of trigeminal nerve, unspecified side, sequela
## 24426 Injury of trigeminal nerve, right side, initial encounter
## 24427 Injury of trigeminal nerve, right side, subsequent encounter
## 24428 Injury of trigeminal nerve, right side, sequela
## 24429 Injury of trigeminal nerve, left side, initial encounter
## 24430 Injury of trigeminal nerve, left side, subsequent encounter
## 24431 Injury of trigeminal nerve, left side, sequela
## 24432 Injury of abducent nerve, unspecified side, initial encounter
## 24433 Injury of abducent nerve, unspecified side, subsequent encounter
## 24434 Injury of abducent nerve, unspecified side, sequela
## 24435 Injury of abducent nerve, right side, initial encounter
## 24436 Injury of abducent nerve, right side, subsequent encounter
## 24437 Injury of abducent nerve, right side, sequela
## 24438 Injury of abducent nerve, left side, initial encounter
## 24439 Injury of abducent nerve, left side, subsequent encounter
## 24440 Injury of abducent nerve, left side, sequela
## 24441 Injury of facial nerve, unspecified side, initial encounter
## 24442 Injury of facial nerve, unspecified side, subsequent encounter
## 24443 Injury of facial nerve, unspecified side, sequela
## 24444 Injury of facial nerve, right side, initial encounter
## 24445 Injury of facial nerve, right side, subsequent encounter
## 24446 Injury of facial nerve, right side, sequela
## 24447 Injury of facial nerve, left side, initial encounter
## 24448 Injury of facial nerve, left side, subsequent encounter
## 24449 Injury of facial nerve, left side, sequela
## 24450 Injury of acoustic nerve, unspecified side, initial encounter
## 24451 Injury of acoustic nerve, unspecified side, subsequent encounter
## 24452 Injury of acoustic nerve, unspecified side, sequela
## 24453 Injury of acoustic nerve, right side, initial encounter
## 24454 Injury of acoustic nerve, right side, subsequent encounter
## 24455 Injury of acoustic nerve, right side, sequela
## 24456 Injury of acoustic nerve, left side, initial encounter
## 24457 Injury of acoustic nerve, left side, subsequent encounter
## 24458 Injury of acoustic nerve, left side, sequela
## 24459 Injury of accessory nerve, unspecified side, initial encounter
## 24460 Injury of accessory nerve, unspecified side, subsequent encounter
## 24461 Injury of accessory nerve, unspecified side, sequela
## 24462 Injury of accessory nerve, right side, initial encounter
## 24463 Injury of accessory nerve, right side, subsequent encounter
## 24464 Injury of accessory nerve, right side, sequela
## 24465 Injury of accessory nerve, left side, initial encounter
## 24466 Injury of accessory nerve, left side, subsequent encounter
## 24467 Injury of accessory nerve, left side, sequela
## 24468 Injury of olfactory [1st ] nerve, right side, initial encounter
## 24469 Injury of olfactory [1st ] nerve, right side, subsequent encounter
## 24470 Injury of olfactory [1st ] nerve, right side, sequela
## 24471 Injury of olfactory [1st ] nerve, left side, initial encounter
## 24472 Injury of olfactory [1st ] nerve, left side, subsequent encounter
## 24473 Injury of olfactory [1st ] nerve, left side, sequela
## 24474 Injury of olfactory [1st ] nerve, unspecified side, initial encounter
## 24475 Injury of olfactory [1st ] nerve, unspecified side, subsequent encounter
## 24476 Injury of olfactory [1st ] nerve, unspecified side, sequela
## 24477 Injury of other cranial nerves, right side, initial encounter
## 24478 Injury of other cranial nerves, right side, subsequent encounter
## 24479 Injury of other cranial nerves, right side, sequela
## 24480 Injury of other cranial nerves, left side, initial encounter
## 24481 Injury of other cranial nerves, left side, subsequent encounter
## 24482 Injury of other cranial nerves, left side, sequela
## 24483 Injury of other cranial nerves, unspecified side, initial encounter
## 24484 Injury of other cranial nerves, unspecified side, subsequent encounter
## 24485 Injury of other cranial nerves, unspecified side, sequela
## 24486 Injury of unspecified cranial nerve, initial encounter
## 24487 Injury of unspecified cranial nerve, subsequent encounter
## 24488 Injury of unspecified cranial nerve, sequela
## 24489 Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, initial encounter
## 24490 Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, subsequent encounter
## 24491 Injury of conjunctiva and corneal abrasion without foreign body, unspecified eye, sequela
## 24492 Injury of conjunctiva and corneal abrasion without foreign body, right eye, initial encounter
## 24493 Injury of conjunctiva and corneal abrasion without foreign body, right eye, subsequent encounter
## 24494 Injury of conjunctiva and corneal abrasion without foreign body, right eye, sequela
## 24495 Injury of conjunctiva and corneal abrasion without foreign body, left eye, initial encounter
## 24496 Injury of conjunctiva and corneal abrasion without foreign body, left eye, subsequent encounter
## 24497 Injury of conjunctiva and corneal abrasion without foreign body, left eye, sequela
## 24498 Contusion of eyeball and orbital tissues, unspecified eye, initial encounter
## 24499 Contusion of eyeball and orbital tissues, unspecified eye, subsequent encounter
## 24500 Contusion of eyeball and orbital tissues, unspecified eye, sequela
## 24501 Contusion of eyeball and orbital tissues, right eye, initial encounter
## 24502 Contusion of eyeball and orbital tissues, right eye, subsequent encounter
## 24503 Contusion of eyeball and orbital tissues, right eye, sequela
## 24504 Contusion of eyeball and orbital tissues, left eye, initial encounter
## 24505 Contusion of eyeball and orbital tissues, left eye, subsequent encounter
## 24506 Contusion of eyeball and orbital tissues, left eye, sequela
## 24507 Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, initial encounter
## 24508 Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, subsequent encounter
## 24509 Ocular laceration and rupture with prolapse or loss of intraocular tissue, unspecified eye, sequela
## 24510 Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, initial encounter
## 24511 Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, subsequent encounter
## 24512 Ocular laceration and rupture with prolapse or loss of intraocular tissue, right eye, sequela
## 24513 Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, initial encounter
## 24514 Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, subsequent encounter
## 24515 Ocular laceration and rupture with prolapse or loss of intraocular tissue, left eye, sequela
## 24516 Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, initial encounter
## 24517 Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, subsequent encounter
## 24518 Ocular laceration without prolapse or loss of intraocular tissue, unspecified eye, sequela
## 24519 Ocular laceration without prolapse or loss of intraocular tissue, right eye, initial encounter
## 24520 Ocular laceration without prolapse or loss of intraocular tissue, right eye, subsequent encounter
## 24521 Ocular laceration without prolapse or loss of intraocular tissue, right eye, sequela
## 24522 Ocular laceration without prolapse or loss of intraocular tissue, left eye, initial encounter
## 24523 Ocular laceration without prolapse or loss of intraocular tissue, left eye, subsequent encounter
## 24524 Ocular laceration without prolapse or loss of intraocular tissue, left eye, sequela
## 24525 Penetrating wound of orbit with or without foreign body, unspecified eye, initial encounter
## 24526 Penetrating wound of orbit with or without foreign body, unspecified eye, subsequent encounter
## 24527 Penetrating wound of orbit with or without foreign body, unspecified eye, sequela
## 24528 Penetrating wound of orbit with or without foreign body, right eye, initial encounter
## 24529 Penetrating wound of orbit with or without foreign body, right eye, subsequent encounter
## 24530 Penetrating wound of orbit with or without foreign body, right eye, sequela
## 24531 Penetrating wound of orbit with or without foreign body, left eye, initial encounter
## 24532 Penetrating wound of orbit with or without foreign body, left eye, subsequent encounter
## 24533 Penetrating wound of orbit with or without foreign body, left eye, sequela
## 24534 Penetrating wound with foreign body of unspecified eyeball, initial encounter
## 24535 Penetrating wound with foreign body of unspecified eyeball, subsequent encounter
## 24536 Penetrating wound with foreign body of unspecified eyeball, sequela
## 24537 Penetrating wound with foreign body of right eyeball, initial encounter
## 24538 Penetrating wound with foreign body of right eyeball, subsequent encounter
## 24539 Penetrating wound with foreign body of right eyeball, sequela
## 24540 Penetrating wound with foreign body of left eyeball, initial encounter
## 24541 Penetrating wound with foreign body of left eyeball, subsequent encounter
## 24542 Penetrating wound with foreign body of left eyeball, sequela
## 24543 Penetrating wound without foreign body of unspecified eyeball, initial encounter
## 24544 Penetrating wound without foreign body of unspecified eyeball, subsequent encounter
## 24545 Penetrating wound without foreign body of unspecified eyeball, sequela
## 24546 Penetrating wound without foreign body of right eyeball, initial encounter
## 24547 Penetrating wound without foreign body of right eyeball, subsequent encounter
## 24548 Penetrating wound without foreign body of right eyeball, sequela
## 24549 Penetrating wound without foreign body of left eyeball, initial encounter
## 24550 Penetrating wound without foreign body of left eyeball, subsequent encounter
## 24551 Penetrating wound without foreign body of left eyeball, sequela
## 24552 Avulsion of unspecified eye, initial encounter
## 24553 Avulsion of unspecified eye, subsequent encounter
## 24554 Avulsion of unspecified eye, sequela
## 24555 Avulsion of right eye, initial encounter
## 24556 Avulsion of right eye, subsequent encounter
## 24557 Avulsion of right eye, sequela
## 24558 Avulsion of left eye, initial encounter
## 24559 Avulsion of left eye, subsequent encounter
## 24560 Avulsion of left eye, sequela
## 24561 Other injuries of right eye and orbit, initial encounter
## 24562 Other injuries of right eye and orbit, subsequent encounter
## 24563 Other injuries of right eye and orbit, sequela
## 24564 Other injuries of left eye and orbit, initial encounter
## 24565 Other injuries of left eye and orbit, subsequent encounter
## 24566 Other injuries of left eye and orbit, sequela
## 24567 Other injuries of unspecified eye and orbit, initial encounter
## 24568 Other injuries of unspecified eye and orbit, subsequent encounter
## 24569 Other injuries of unspecified eye and orbit, sequela
## 24570 Unspecified injury of unspecified eye and orbit, initial encounter
## 24571 Unspecified injury of unspecified eye and orbit, subsequent encounter
## 24572 Unspecified injury of unspecified eye and orbit, sequela
## 24573 Unspecified injury of right eye and orbit, initial encounter
## 24574 Unspecified injury of right eye and orbit, subsequent encounter
## 24575 Unspecified injury of right eye and orbit, sequela
## 24576 Unspecified injury of left eye and orbit, initial encounter
## 24577 Unspecified injury of left eye and orbit, subsequent encounter
## 24578 Unspecified injury of left eye and orbit, sequela
## 24579 Concussion without loss of consciousness, initial encounter
## 24580 Concussion without loss of consciousness, subsequent encounter
## 24581 Concussion without loss of consciousness, sequela
## 24582 Concussion with loss of consciousness of 30 minutes or less, initial encounter
## 24583 Concussion with loss of consciousness of 30 minutes or less, subsequent encounter
## 24584 Concussion with loss of consciousness of 30 minutes or less, sequela
## 24585 Concussion with loss of consciousness of unspecified duration, initial encounter
## 24586 Concussion with loss of consciousness of unspecified duration, subsequent encounter
## 24587 Concussion with loss of consciousness of unspecified duration, sequela
## 24588 Traumatic cerebral edema without loss of consciousness, initial encounter
## 24589 Traumatic cerebral edema without loss of consciousness, subsequent encounter
## 24590 Traumatic cerebral edema without loss of consciousness, sequela
## 24591 Traumatic cerebral edema with loss of consciousness of 30 minutes or less, initial encounter
## 24592 Traumatic cerebral edema with loss of consciousness of 30 minutes or less, subsequent encounter
## 24593 Traumatic cerebral edema with loss of consciousness of 30 minutes or less, sequela
## 24594 Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24595 Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24596 Traumatic cerebral edema with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24597 Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24598 Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24599 Traumatic cerebral edema with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24600 Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24601 Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24602 Traumatic cerebral edema with loss of consciousness of 6 hours to 24 hours, sequela
## 24603 Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24604 Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24605 Traumatic cerebral edema with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24606 Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24607 Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24608 Traumatic cerebral edema with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24609 Traumatic cerebral edema with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24610 Traumatic cerebral edema with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24611 Traumatic cerebral edema with loss of consciousness of unspecified duration, initial encounter
## 24612 Traumatic cerebral edema with loss of consciousness of unspecified duration, subsequent encounter
## 24613 Traumatic cerebral edema with loss of consciousness of unspecified duration, sequela
## 24614 Diffuse traumatic brain injury without loss of consciousness, initial encounter
## 24615 Diffuse traumatic brain injury without loss of consciousness, subsequent encounter
## 24616 Diffuse traumatic brain injury without loss of consciousness, sequela
## 24617 Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter
## 24618 Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, subsequent encounter
## 24619 Diffuse traumatic brain injury with loss of consciousness of 30 minutes or less, sequela
## 24620 Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24621 Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24622 Diffuse traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24623 Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24624 Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24625 Diffuse traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24626 Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24627 Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24628 Diffuse traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela
## 24629 Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, initial encounter
## 24630 Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, subsequent encounter
## 24631 Diffuse traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious levels, sequela
## 24632 Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24633 Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24634 Diffuse traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24635 Diffuse traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24636 Diffuse traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24637 Diffuse traumatic brain injury with loss of consciousness of unspecified duration, initial encounter
## 24638 Diffuse traumatic brain injury with loss of consciousness of unspecified duration, subsequent encounter
## 24639 Diffuse traumatic brain injury with loss of consciousness of unspecified duration, sequela
## 24640 Unspecified focal traumatic brain injury without loss of consciousness, initial encounter
## 24641 Unspecified focal traumatic brain injury without loss of consciousness, subsequent encounter
## 24642 Unspecified focal traumatic brain injury without loss of consciousness, sequela
## 24643 Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, initial encounter
## 24644 Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, subsequent encounter
## 24645 Unspecified focal traumatic brain injury with loss of consciousness of 30 minutes or less, sequela
## 24646 Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24647 Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24648 Unspecified focal traumatic brain injury with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24649 Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24650 Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24651 Unspecified focal traumatic brain injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24652 Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24653 Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24654 Unspecified focal traumatic brain injury with loss of consciousness of 6 hours to 24 hours, sequela
## 24655 Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24656 Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24657 Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24658 Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24659 Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24660 Unspecified focal traumatic brain injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24661 Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24662 Unspecified focal traumatic brain injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24663 Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, initial encounter
## 24664 Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, subsequent encounter
## 24665 Unspecified focal traumatic brain injury with loss of consciousness of unspecified duration, sequela
## 24666 Contusion and laceration of right cerebrum without loss of consciousness, initial encounter
## 24667 Contusion and laceration of right cerebrum without loss of consciousness, subsequent encounter
## 24668 Contusion and laceration of right cerebrum without loss of consciousness, sequela
## 24669 Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter
## 24670 Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter
## 24671 Contusion and laceration of right cerebrum with loss of consciousness of 30 minutes or less, sequela
## 24672 Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24673 Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24674 Contusion and laceration of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24675 Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24676 Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24677 Contusion and laceration of right cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24678 Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24679 Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24680 Contusion and laceration of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela
## 24681 Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24682 Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24683 Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24684 Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24685 Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24686 Contusion and laceration of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24687 Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24688 Contusion and laceration of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24689 Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, initial encounter
## 24690 Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, subsequent encounter
## 24691 Contusion and laceration of right cerebrum with loss of consciousness of unspecified duration, sequela
## 24692 Contusion and laceration of left cerebrum without loss of consciousness, initial encounter
## 24693 Contusion and laceration of left cerebrum without loss of consciousness, subsequent encounter
## 24694 Contusion and laceration of left cerebrum without loss of consciousness, sequela
## 24695 Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter
## 24696 Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter
## 24697 Contusion and laceration of left cerebrum with loss of consciousness of 30 minutes or less, sequela
## 24698 Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24699 Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24700 Contusion and laceration of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24701 Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24702 Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24703 Contusion and laceration of left cerebrum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24704 Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24705 Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24706 Contusion and laceration of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela
## 24707 Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24708 Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24709 Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24710 Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24711 Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24712 Contusion and laceration of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24713 Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24714 Contusion and laceration of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24715 Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, initial encounter
## 24716 Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, subsequent encounter
## 24717 Contusion and laceration of left cerebrum with loss of consciousness of unspecified duration, sequela
## 24718 Contusion and laceration of cerebrum, unspecified, without loss of consciousness, initial encounter
## 24719 Contusion and laceration of cerebrum, unspecified, without loss of consciousness, subsequent encounter
## 24720 Contusion and laceration of cerebrum, unspecified, without loss of consciousness, sequela
## 24721 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter
## 24722 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, subsequent encounter
## 24723 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, sequela
## 24724 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24725 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24726 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24727 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24728 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24729 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24730 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24731 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24732 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, sequela
## 24733 Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24734 Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24735 Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24736 Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24737 Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24738 Contusion and laceration of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24739 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24740 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24741 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter
## 24742 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, subsequent encounter
## 24743 Contusion and laceration of cerebrum, unspecified, with loss of consciousness of unspecified duration, sequela
## 24744 Traumatic hemorrhage of right cerebrum without loss of consciousness, initial encounter
## 24745 Traumatic hemorrhage of right cerebrum without loss of consciousness, subsequent encounter
## 24746 Traumatic hemorrhage of right cerebrum without loss of consciousness, sequela
## 24747 Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, initial encounter
## 24748 Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter
## 24749 Traumatic hemorrhage of right cerebrum with loss of consciousness of 30 minutes or less, sequela
## 24750 Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24751 Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24752 Traumatic hemorrhage of right cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24753 Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter
## 24754 Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter
## 24755 Traumatic hemorrhage of right cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela
## 24756 Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24757 Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24758 Traumatic hemorrhage of right cerebrum with loss of consciousness of 6 hours to 24 hours, sequela
## 24759 Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24760 Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24761 Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24762 Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24763 Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24764 Traumatic hemorrhage of right cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24765 Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24766 Traumatic hemorrhage of right cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24767 Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, initial encounter
## 24768 Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, subsequent encounter
## 24769 Traumatic hemorrhage of right cerebrum with loss of consciousness of unspecified duration, sequela
## 24770 Traumatic hemorrhage of left cerebrum without loss of consciousness, initial encounter
## 24771 Traumatic hemorrhage of left cerebrum without loss of consciousness, subsequent encounter
## 24772 Traumatic hemorrhage of left cerebrum without loss of consciousness, sequela
## 24773 Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, initial encounter
## 24774 Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, subsequent encounter
## 24775 Traumatic hemorrhage of left cerebrum with loss of consciousness of 30 minutes or less, sequela
## 24776 Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24777 Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24778 Traumatic hemorrhage of left cerebrum with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24779 Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter
## 24780 Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter
## 24781 Traumatic hemorrhage of left cerebrum with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela
## 24782 Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24783 Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24784 Traumatic hemorrhage of left cerebrum with loss of consciousness of 6 hours to 24 hours, sequela
## 24785 Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24786 Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24787 Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24788 Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24789 Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24790 Traumatic hemorrhage of left cerebrum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24791 Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24792 Traumatic hemorrhage of left cerebrum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24793 Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, initial encounter
## 24794 Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, subsequent encounter
## 24795 Traumatic hemorrhage of left cerebrum with loss of consciousness of unspecified duration, sequela
## 24796 Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, initial encounter
## 24797 Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, subsequent encounter
## 24798 Traumatic hemorrhage of cerebrum, unspecified, without loss of consciousness, sequela
## 24799 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, initial encounter
## 24800 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, subsequent encounter
## 24801 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 30 minutes or less, sequela
## 24802 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24803 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24804 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24805 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, initial encounter
## 24806 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, subsequent encounter
## 24807 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 1 hours to 5 hours 59 minutes, sequela
## 24808 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24809 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24810 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of 6 hours to 24 hours, sequela
## 24811 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24812 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24813 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24814 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24815 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24816 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24817 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24818 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24819 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, initial encounter
## 24820 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, subsequent encounter
## 24821 Traumatic hemorrhage of cerebrum, unspecified, with loss of consciousness of unspecified duration, sequela
## 24822 Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, initial encounter
## 24823 Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, subsequent encounter
## 24824 Contusion, laceration, and hemorrhage of cerebellum without loss of consciousness, sequela
## 24825 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, initial encounter
## 24826 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, subsequent encounter
## 24827 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 30 minutes or less, sequela
## 24828 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24829 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24830 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24831 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24832 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24833 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24834 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24835 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24836 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of 6 hours to 24 hours, sequela
## 24837 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24838 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24839 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24840 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24841 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24842 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24843 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24844 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24845 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, initial encounter
## 24846 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, subsequent encounter
## 24847 Contusion, laceration, and hemorrhage of cerebellum with loss of consciousness of unspecified duration, sequela
## 24848 Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, initial encounter
## 24849 Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, subsequent encounter
## 24850 Contusion, laceration, and hemorrhage of brainstem without loss of consciousness, sequela
## 24851 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, initial encounter
## 24852 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, subsequent encounter
## 24853 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 30 minutes or less, sequela
## 24854 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24855 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24856 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24857 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24858 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24859 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24860 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24861 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24862 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of 6 hours to 24 hours, sequela
## 24863 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24864 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24865 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24866 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24867 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24868 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24869 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24870 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24871 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, initial encounter
## 24872 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, subsequent encounter
## 24873 Contusion, laceration, and hemorrhage of brainstem with loss of consciousness of unspecified duration, sequela
## 24874 Epidural hemorrhage without loss of consciousness, initial encounter
## 24875 Epidural hemorrhage without loss of consciousness, subsequent encounter
## 24876 Epidural hemorrhage without loss of consciousness, sequela
## 24877 Epidural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter
## 24878 Epidural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter
## 24879 Epidural hemorrhage with loss of consciousness of 30 minutes or less, sequela
## 24880 Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24881 Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24882 Epidural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24883 Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24884 Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24885 Epidural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24886 Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24887 Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24888 Epidural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela
## 24889 Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24890 Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24891 Epidural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24892 Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24893 Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24894 Epidural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24895 Epidural hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24896 Epidural hemorrhage with loss of consciousness of any duration with death due to other causes prior to regaining consciousness, initial encounter
## 24897 Epidural hemorrhage with loss of consciousness of unspecified duration, initial encounter
## 24898 Epidural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter
## 24899 Epidural hemorrhage with loss of consciousness of unspecified duration, sequela
## 24900 Traumatic subdural hemorrhage without loss of consciousness, initial encounter
## 24901 Traumatic subdural hemorrhage without loss of consciousness, subsequent encounter
## 24902 Traumatic subdural hemorrhage without loss of consciousness, sequela
## 24903 Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, initial encounter
## 24904 Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter
## 24905 Traumatic subdural hemorrhage with loss of consciousness of 30 minutes or less, sequela
## 24906 Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24907 Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24908 Traumatic subdural hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24909 Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24910 Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24911 Traumatic subdural hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24912 Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24913 Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24914 Traumatic subdural hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela
## 24915 Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24916 Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24917 Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24918 Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24919 Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24920 Traumatic subdural hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24921 Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to brain injury before regaining consciousness, initial encounter
## 24922 Traumatic subdural hemorrhage with loss of consciousness of any duration with death due to other cause before regaining consciousness, initial encounter
## 24923 Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, initial encounter
## 24924 Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, subsequent encounter
## 24925 Traumatic subdural hemorrhage with loss of consciousness of unspecified duration, sequela
## 24926 Traumatic subarachnoid hemorrhage without loss of consciousness, initial encounter
## 24927 Traumatic subarachnoid hemorrhage without loss of consciousness, subsequent encounter
## 24928 Traumatic subarachnoid hemorrhage without loss of consciousness, sequela
## 24929 Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, initial encounter
## 24930 Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, subsequent encounter
## 24931 Traumatic subarachnoid hemorrhage with loss of consciousness of 30 minutes or less, sequela
## 24932 Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24933 Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24934 Traumatic subarachnoid hemorrhage with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24935 Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24936 Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24937 Traumatic subarachnoid hemorrhage with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24938 Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24939 Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24940 Traumatic subarachnoid hemorrhage with loss of consciousness of 6 hours to 24 hours, sequela
## 24941 Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24942 Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24943 Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24944 Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24945 Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24946 Traumatic subarachnoid hemorrhage with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24947 Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24948 Traumatic subarachnoid hemorrhage with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24949 Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, initial encounter
## 24950 Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, subsequent encounter
## 24951 Traumatic subarachnoid hemorrhage with loss of consciousness of unspecified duration, sequela
## 24952 Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter
## 24953 Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, subsequent encounter
## 24954 Injury of right internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, sequela
## 24955 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter
## 24956 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter
## 24957 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela
## 24958 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24959 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24960 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24961 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24962 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24963 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24964 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24965 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24966 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela
## 24967 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24968 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24969 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24970 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24971 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24972 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24973 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 24974 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 24975 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter
## 24976 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter
## 24977 Injury of right internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, sequela
## 24978 Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, initial encounter
## 24979 Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, subsequent encounter
## 24980 Injury of left internal carotid artery, intracranial portion, not elsewhere classified without loss of consciousness, sequela
## 24981 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, initial encounter
## 24982 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, subsequent encounter
## 24983 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 30 minutes or less, sequela
## 24984 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 24985 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 24986 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 31 minutes to 59 minutes, sequela
## 24987 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 24988 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 24989 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 24990 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, initial encounter
## 24991 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 24992 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of 6 hours to 24 hours, sequela
## 24993 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 24994 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 24995 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 24996 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 24997 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 24998 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 24999 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 25000 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 25001 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, initial encounter
## 25002 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, subsequent encounter
## 25003 Injury of left internal carotid artery, intracranial portion, not elsewhere classified with loss of consciousness of unspecified duration, sequela
## 25004 Other specified intracranial injury without loss of consciousness, initial encounter
## 25005 Other specified intracranial injury without loss of consciousness, subsequent encounter
## 25006 Other specified intracranial injury without loss of consciousness, sequela
## 25007 Other specified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter
## 25008 Other specified intracranial injury with loss of consciousness of 30 minutes or less, subsequent encounter
## 25009 Other specified intracranial injury with loss of consciousness of 30 minutes or less, sequela
## 25010 Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 25011 Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 25012 Other specified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela
## 25013 Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 25014 Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 25015 Other specified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 25016 Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter
## 25017 Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 25018 Other specified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela
## 25019 Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 25020 Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 25021 Other specified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 25022 Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 25023 Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 25024 Other specified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 25025 Other specified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 25026 Other specified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 25027 Other specified intracranial injury with loss of consciousness of unspecified duration, initial encounter
## 25028 Other specified intracranial injury with loss of consciousness of unspecified duration, subsequent encounter
## 25029 Other specified intracranial injury with loss of consciousness of unspecified duration, sequela
## 25030 Unspecified intracranial injury without loss of consciousness, initial encounter
## 25031 Unspecified intracranial injury without loss of consciousness, subsequent encounter
## 25032 Unspecified intracranial injury without loss of consciousness, sequela
## 25033 Unspecified intracranial injury with loss of consciousness of 30 minutes or less, initial encounter
## 25034 Unspecified intracranial injury with loss of consciousness of 30 minutes or less, subsequent encounter
## 25035 Unspecified intracranial injury with loss of consciousness of 30 minutes or less, sequela
## 25036 Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, initial encounter
## 25037 Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, subsequent encounter
## 25038 Unspecified intracranial injury with loss of consciousness of 31 minutes to 59 minutes, sequela
## 25039 Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, initial encounter
## 25040 Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, subsequent encounter
## 25041 Unspecified intracranial injury with loss of consciousness of 1 hour to 5 hours 59 minutes, sequela
## 25042 Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, initial encounter
## 25043 Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, subsequent encounter
## 25044 Unspecified intracranial injury with loss of consciousness of 6 hours to 24 hours, sequela
## 25045 Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, initial encounter
## 25046 Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, subsequent encounter
## 25047 Unspecified intracranial injury with loss of consciousness greater than 24 hours with return to pre-existing conscious level, sequela
## 25048 Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, initial encounter
## 25049 Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, subsequent encounter
## 25050 Unspecified intracranial injury with loss of consciousness greater than 24 hours without return to pre-existing conscious level with patient surviving, sequela
## 25051 Unspecified intracranial injury with loss of consciousness of any duration with death due to brain injury prior to regaining consciousness, initial encounter
## 25052 Unspecified intracranial injury with loss of consciousness of any duration with death due to other cause prior to regaining consciousness, initial encounter
## 25053 Unspecified intracranial injury with loss of consciousness of unspecified duration, initial encounter
## 25054 Unspecified intracranial injury with loss of consciousness of unspecified duration, subsequent encounter
## 25055 Unspecified intracranial injury with loss of consciousness of unspecified duration, sequela
## 25056 Crushing injury of face, initial encounter
## 25057 Crushing injury of face, subsequent encounter
## 25058 Crushing injury of face, sequela
## 25059 Crushing injury of skull, initial encounter
## 25060 Crushing injury of skull, subsequent encounter
## 25061 Crushing injury of skull, sequela
## 25062 Crushing injury of other parts of head, initial encounter
## 25063 Crushing injury of other parts of head, subsequent encounter
## 25064 Crushing injury of other parts of head, sequela
## 25065 Crushing injury of head, part unspecified, initial encounter
## 25066 Crushing injury of head, part unspecified, subsequent encounter
## 25067 Crushing injury of head, part unspecified, sequela
## 25068 Avulsion of scalp, initial encounter
## 25069 Avulsion of scalp, subsequent encounter
## 25070 Avulsion of scalp, sequela
## 25071 Complete traumatic amputation of right ear, initial encounter
## 25072 Complete traumatic amputation of right ear, subsequent encounter
## 25073 Complete traumatic amputation of right ear, sequela
## 25074 Complete traumatic amputation of left ear, initial encounter
## 25075 Complete traumatic amputation of left ear, subsequent encounter
## 25076 Complete traumatic amputation of left ear, sequela
## 25077 Complete traumatic amputation of unspecified ear, initial encounter
## 25078 Complete traumatic amputation of unspecified ear, subsequent encounter
## 25079 Complete traumatic amputation of unspecified ear, sequela
## 25080 Partial traumatic amputation of right ear, initial encounter
## 25081 Partial traumatic amputation of right ear, subsequent encounter
## 25082 Partial traumatic amputation of right ear, sequela
## 25083 Partial traumatic amputation of left ear, initial encounter
## 25084 Partial traumatic amputation of left ear, subsequent encounter
## 25085 Partial traumatic amputation of left ear, sequela
## 25086 Partial traumatic amputation of unspecified ear, initial encounter
## 25087 Partial traumatic amputation of unspecified ear, subsequent encounter
## 25088 Partial traumatic amputation of unspecified ear, sequela
## 25089 Complete traumatic amputation of nose, initial encounter
## 25090 Complete traumatic amputation of nose, subsequent encounter
## 25091 Complete traumatic amputation of nose, sequela
## 25092 Partial traumatic amputation of nose, initial encounter
## 25093 Partial traumatic amputation of nose, subsequent encounter
## 25094 Partial traumatic amputation of nose, sequela
## 25095 Traumatic amputation of other parts of head, initial encounter
## 25096 Traumatic amputation of other parts of head, subsequent encounter
## 25097 Traumatic amputation of other parts of head, sequela
## 25098 Injury of blood vessels of head, not elsewhere classified, initial encounter
## 25099 Injury of blood vessels of head, not elsewhere classified, subsequent encounter
## 25100 Injury of blood vessels of head, not elsewhere classified, sequela
## 25101 Unspecified injury of muscle and tendon of head, initial encounter
## 25102 Unspecified injury of muscle and tendon of head, subsequent encounter
## 25103 Unspecified injury of muscle and tendon of head, sequela
## 25104 Strain of muscle and tendon of head, initial encounter
## 25105 Strain of muscle and tendon of head, subsequent encounter
## 25106 Strain of muscle and tendon of head, sequela
## 25107 Laceration of muscle and tendon of head, initial encounter
## 25108 Laceration of muscle and tendon of head, subsequent encounter
## 25109 Laceration of muscle and tendon of head, sequela
## 25110 Other specified injury of muscle and tendon of head, initial encounter
## 25111 Other specified injury of muscle and tendon of head, subsequent encounter
## 25112 Other specified injury of muscle and tendon of head, sequela
## 25113 Traumatic rupture of unspecified ear drum, initial encounter
## 25114 Traumatic rupture of unspecified ear drum, subsequent encounter
## 25115 Traumatic rupture of unspecified ear drum, sequela
## 25116 Traumatic rupture of right ear drum, initial encounter
## 25117 Traumatic rupture of right ear drum, subsequent encounter
## 25118 Traumatic rupture of right ear drum, sequela
## 25119 Traumatic rupture of left ear drum, initial encounter
## 25120 Traumatic rupture of left ear drum, subsequent encounter
## 25121 Traumatic rupture of left ear drum, sequela
## 25122 Unspecified injury of right middle and inner ear, initial encounter
## 25123 Unspecified injury of right middle and inner ear, subsequent encounter
## 25124 Unspecified injury of right middle and inner ear, sequela
## 25125 Unspecified injury of left middle and inner ear, initial encounter
## 25126 Unspecified injury of left middle and inner ear, subsequent encounter
## 25127 Unspecified injury of left middle and inner ear, sequela
## 25128 Unspecified injury of unspecified middle and inner ear, initial encounter
## 25129 Unspecified injury of unspecified middle and inner ear, subsequent encounter
## 25130 Unspecified injury of unspecified middle and inner ear, sequela
## 25131 Primary blast injury of right ear, initial encounter
## 25132 Primary blast injury of right ear, subsequent encounter
## 25133 Primary blast injury of right ear, sequela
## 25134 Primary blast injury of left ear, initial encounter
## 25135 Primary blast injury of left ear, subsequent encounter
## 25136 Primary blast injury of left ear, sequela
## 25137 Primary blast injury of ear, bilateral, initial encounter
## 25138 Primary blast injury of ear, bilateral, subsequent encounter
## 25139 Primary blast injury of ear, bilateral, sequela
## 25140 Primary blast injury of unspecified ear, initial encounter
## 25141 Primary blast injury of unspecified ear, subsequent encounter
## 25142 Primary blast injury of unspecified ear, sequela
## 25143 Other specified injury of right middle and inner ear, initial encounter
## 25144 Other specified injury of right middle and inner ear, subsequent encounter
## 25145 Other specified injury of right middle and inner ear, sequela
## 25146 Other specified injury of left middle and inner ear, initial encounter
## 25147 Other specified injury of left middle and inner ear, subsequent encounter
## 25148 Other specified injury of left middle and inner ear, sequela
## 25149 Other specified injury of unspecified middle and inner ear, initial encounter
## 25150 Other specified injury of unspecified middle and inner ear, subsequent encounter
## 25151 Other specified injury of unspecified middle and inner ear, sequela
## 25152 Other specified injuries of head, initial encounter
## 25153 Other specified injuries of head, subsequent encounter
## 25154 Other specified injuries of head, sequela
## 25155 Unspecified injury of head, initial encounter
## 25156 Unspecified injury of head, subsequent encounter
## 25157 Unspecified injury of head, sequela
## 25158 Unspecified injury of ear, initial encounter
## 25159 Unspecified injury of ear, subsequent encounter
## 25160 Unspecified injury of ear, sequela
## 25161 Unspecified injury of nose, initial encounter
## 25162 Unspecified injury of nose, subsequent encounter
## 25163 Unspecified injury of nose, sequela
## 25164 Unspecified injury of face, initial encounter
## 25165 Unspecified injury of face, subsequent encounter
## 25166 Unspecified injury of face, sequela
## 25167 Contusion of throat, initial encounter
## 25168 Contusion of throat, subsequent encounter
## 25169 Contusion of throat, sequela
## 25170 Unspecified superficial injuries of throat, initial encounter
## 25171 Unspecified superficial injuries of throat, subsequent encounter
## 25172 Unspecified superficial injuries of throat, sequela
## 25173 Abrasion of throat, initial encounter
## 25174 Abrasion of throat, subsequent encounter
## 25175 Abrasion of throat, sequela
## 25176 Blister (nonthermal) of throat, initial encounter
## 25177 Blister (nonthermal) of throat, subsequent encounter
## 25178 Blister (nonthermal) of throat, sequela
## 25179 External constriction of part of throat, initial encounter
## 25180 External constriction of part of throat, subsequent encounter
## 25181 External constriction of part of throat, sequela
## 25182 Superficial foreign body of throat, initial encounter
## 25183 Superficial foreign body of throat, subsequent encounter
## 25184 Superficial foreign body of throat, sequela
## 25185 Insect bite (nonvenomous) of throat, initial encounter
## 25186 Insect bite (nonvenomous) of throat, subsequent encounter
## 25187 Insect bite (nonvenomous) of throat, sequela
## 25188 Other superficial bite of throat, initial encounter
## 25189 Other superficial bite of throat, subsequent encounter
## 25190 Other superficial bite of throat, sequela
## 25191 Unspecified superficial injury of other specified part of neck, initial encounter
## 25192 Unspecified superficial injury of other specified part of neck, subsequent encounter
## 25193 Unspecified superficial injury of other specified part of neck, sequela
## 25194 Abrasion of other specified part of neck, initial encounter
## 25195 Abrasion of other specified part of neck, subsequent encounter
## 25196 Abrasion of other specified part of neck, sequela
## 25197 Blister (nonthermal) of other specified part of neck, initial encounter
## 25198 Blister (nonthermal) of other specified part of neck, subsequent encounter
## 25199 Blister (nonthermal) of other specified part of neck, sequela
## 25200 Contusion of other specified part of neck, initial encounter
## 25201 Contusion of other specified part of neck, subsequent encounter
## 25202 Contusion of other specified part of neck, sequela
## 25203 External constriction of other specified part of neck, initial encounter
## 25204 External constriction of other specified part of neck, subsequent encounter
## 25205 External constriction of other specified part of neck, sequela
## 25206 Superficial foreign body of other specified part of neck, initial encounter
## 25207 Superficial foreign body of other specified part of neck, subsequent encounter
## 25208 Superficial foreign body of other specified part of neck, sequela
## 25209 Insect bite of other specified part of neck, initial encounter
## 25210 Insect bite of other specified part of neck, subsequent encounter
## 25211 Insect bite of other specified part of neck, sequela
## 25212 Other superficial bite of other specified part of neck, initial encounter
## 25213 Other superficial bite of other specified part of neck, subsequent encounter
## 25214 Other superficial bite of other specified part of neck, sequela
## 25215 Unspecified superficial injury of unspecified part of neck, initial encounter
## 25216 Unspecified superficial injury of unspecified part of neck, subsequent encounter
## 25217 Unspecified superficial injury of unspecified part of neck, sequela
## 25218 Abrasion of unspecified part of neck, initial encounter
## 25219 Abrasion of unspecified part of neck, subsequent encounter
## 25220 Abrasion of unspecified part of neck, sequela
## 25221 Blister (nonthermal) of unspecified part of neck, initial encounter
## 25222 Blister (nonthermal) of unspecified part of neck, subsequent encounter
## 25223 Blister (nonthermal) of unspecified part of neck, sequela
## 25224 Contusion of unspecified part of neck, initial encounter
## 25225 Contusion of unspecified part of neck, subsequent encounter
## 25226 Contusion of unspecified part of neck, sequela
## 25227 External constriction of unspecified part of neck, initial encounter
## 25228 External constriction of unspecified part of neck, subsequent encounter
## 25229 External constriction of unspecified part of neck, sequela
## 25230 Superficial foreign body of unspecified part of neck, initial encounter
## 25231 Superficial foreign body of unspecified part of neck, subsequent encounter
## 25232 Superficial foreign body of unspecified part of neck, sequela
## 25233 Insect bite of unspecified part of neck, initial encounter
## 25234 Insect bite of unspecified part of neck, subsequent encounter
## 25235 Insect bite of unspecified part of neck, sequela
## 25236 Other superficial bite of unspecified part of neck, initial encounter
## 25237 Other superficial bite of unspecified part of neck, subsequent encounter
## 25238 Other superficial bite of unspecified part of neck, sequela
## 25239 Laceration without foreign body of larynx, initial encounter
## 25240 Laceration without foreign body of larynx, subsequent encounter
## 25241 Laceration without foreign body of larynx, sequela
## 25242 Laceration with foreign body of larynx, initial encounter
## 25243 Laceration with foreign body of larynx, subsequent encounter
## 25244 Laceration with foreign body of larynx, sequela
## 25245 Puncture wound without foreign body of larynx, initial encounter
## 25246 Puncture wound without foreign body of larynx, subsequent encounter
## 25247 Puncture wound without foreign body of larynx, sequela
## 25248 Puncture wound with foreign body of larynx, initial encounter
## 25249 Puncture wound with foreign body of larynx, subsequent encounter
## 25250 Puncture wound with foreign body of larynx, sequela
## 25251 Open bite of larynx, initial encounter
## 25252 Open bite of larynx, subsequent encounter
## 25253 Open bite of larynx, sequela
## 25254 Unspecified open wound of larynx, initial encounter
## 25255 Unspecified open wound of larynx, subsequent encounter
## 25256 Unspecified open wound of larynx, sequela
## 25257 Laceration without foreign body of trachea, initial encounter
## 25258 Laceration without foreign body of trachea, subsequent encounter
## 25259 Laceration without foreign body of trachea, sequela
## 25260 Laceration with foreign body of trachea, initial encounter
## 25261 Laceration with foreign body of trachea, subsequent encounter
## 25262 Laceration with foreign body of trachea, sequela
## 25263 Puncture wound without foreign body of trachea, initial encounter
## 25264 Puncture wound without foreign body of trachea, subsequent encounter
## 25265 Puncture wound without foreign body of trachea, sequela
## 25266 Puncture wound with foreign body of trachea, initial encounter
## 25267 Puncture wound with foreign body of trachea, subsequent encounter
## 25268 Puncture wound with foreign body of trachea, sequela
## 25269 Open bite of trachea, initial encounter
## 25270 Open bite of trachea, subsequent encounter
## 25271 Open bite of trachea, sequela
## 25272 Unspecified open wound of trachea, initial encounter
## 25273 Unspecified open wound of trachea, subsequent encounter
## 25274 Unspecified open wound of trachea, sequela
## 25275 Laceration without foreign body of vocal cord, initial encounter
## 25276 Laceration without foreign body of vocal cord, subsequent encounter
## 25277 Laceration without foreign body of vocal cord, sequela
## 25278 Laceration with foreign body of vocal cord, initial encounter
## 25279 Laceration with foreign body of vocal cord, subsequent encounter
## 25280 Laceration with foreign body of vocal cord, sequela
## 25281 Puncture wound without foreign body of vocal cord, initial encounter
## 25282 Puncture wound without foreign body of vocal cord, subsequent encounter
## 25283 Puncture wound without foreign body of vocal cord, sequela
## 25284 Puncture wound with foreign body of vocal cord, initial encounter
## 25285 Puncture wound with foreign body of vocal cord, subsequent encounter
## 25286 Puncture wound with foreign body of vocal cord, sequela
## 25287 Open bite of vocal cord, initial encounter
## 25288 Open bite of vocal cord, subsequent encounter
## 25289 Open bite of vocal cord, sequela
## 25290 Unspecified open wound of vocal cord, initial encounter
## 25291 Unspecified open wound of vocal cord, subsequent encounter
## 25292 Unspecified open wound of vocal cord, sequela
## 25293 Unspecified open wound of thyroid gland, initial encounter
## 25294 Unspecified open wound of thyroid gland, subsequent encounter
## 25295 Unspecified open wound of thyroid gland, sequela
## 25296 Laceration without foreign body of thyroid gland, initial encounter
## 25297 Laceration without foreign body of thyroid gland, subsequent encounter
## 25298 Laceration without foreign body of thyroid gland, sequela
## 25299 Laceration with foreign body of thyroid gland, initial encounter
## 25300 Laceration with foreign body of thyroid gland, subsequent encounter
## 25301 Laceration with foreign body of thyroid gland, sequela
## 25302 Puncture wound without foreign body of thyroid gland, initial encounter
## 25303 Puncture wound without foreign body of thyroid gland, subsequent encounter
## 25304 Puncture wound without foreign body of thyroid gland, sequela
## 25305 Puncture wound with foreign body of thyroid gland, initial encounter
## 25306 Puncture wound with foreign body of thyroid gland, subsequent encounter
## 25307 Puncture wound with foreign body of thyroid gland, sequela
## 25308 Open bite of thyroid gland, initial encounter
## 25309 Open bite of thyroid gland, subsequent encounter
## 25310 Open bite of thyroid gland, sequela
## 25311 Unspecified open wound of pharynx and cervical esophagus, initial encounter
## 25312 Unspecified open wound of pharynx and cervical esophagus, subsequent encounter
## 25313 Unspecified open wound of pharynx and cervical esophagus, sequela
## 25314 Laceration without foreign body of pharynx and cervical esophagus, initial encounter
## 25315 Laceration without foreign body of pharynx and cervical esophagus, subsequent encounter
## 25316 Laceration without foreign body of pharynx and cervical esophagus, sequela
## 25317 Laceration with foreign body of pharynx and cervical esophagus, initial encounter
## 25318 Laceration with foreign body of pharynx and cervical esophagus, subsequent encounter
## 25319 Laceration with foreign body of pharynx and cervical esophagus, sequela
## 25320 Puncture wound without foreign body of pharynx and cervical esophagus, initial encounter
## 25321 Puncture wound without foreign body of pharynx and cervical esophagus, subsequent encounter
## 25322 Puncture wound without foreign body of pharynx and cervical esophagus, sequela
## 25323 Puncture wound with foreign body of pharynx and cervical esophagus, initial encounter
## 25324 Puncture wound with foreign body of pharynx and cervical esophagus, subsequent encounter
## 25325 Puncture wound with foreign body of pharynx and cervical esophagus, sequela
## 25326 Open bite of pharynx and cervical esophagus, initial encounter
## 25327 Open bite of pharynx and cervical esophagus, subsequent encounter
## 25328 Open bite of pharynx and cervical esophagus, sequela
## 25329 Unspecified open wound of other specified part of neck, initial encounter
## 25330 Unspecified open wound of other specified part of neck, subsequent encounter
## 25331 Unspecified open wound of other specified part of neck, sequela
## 25332 Laceration without foreign body of other specified part of neck, initial encounter
## 25333 Laceration without foreign body of other specified part of neck, subsequent encounter
## 25334 Laceration without foreign body of other specified part of neck, sequela
## 25335 Laceration with foreign body of other specified part of neck, initial encounter
## 25336 Laceration with foreign body of other specified part of neck, subsequent encounter
## 25337 Laceration with foreign body of other specified part of neck, sequela
## 25338 Puncture wound without foreign body of other specified part of neck, initial encounter
## 25339 Puncture wound without foreign body of other specified part of neck, subsequent encounter
## 25340 Puncture wound without foreign body of other specified part of neck, sequela
## 25341 Puncture wound with foreign body of other specified part of neck, initial encounter
## 25342 Puncture wound with foreign body of other specified part of neck, subsequent encounter
## 25343 Puncture wound with foreign body of other specified part of neck, sequela
## 25344 Open bite of other specified part of neck, initial encounter
## 25345 Open bite of other specified part of neck, subsequent encounter
## 25346 Open bite of other specified part of neck, sequela
## 25347 Other open wound of other specified part of neck, initial encounter
## 25348 Other open wound of other specified part of neck, subsequent encounter
## 25349 Other open wound of other specified part of neck, sequela
## 25350 Unspecified open wound of unspecified part of neck, initial encounter
## 25351 Unspecified open wound of unspecified part of neck, subsequent encounter
## 25352 Unspecified open wound of unspecified part of neck, sequela
## 25353 Laceration without foreign body of unspecified part of neck, initial encounter
## 25354 Laceration without foreign body of unspecified part of neck, subsequent encounter
## 25355 Laceration without foreign body of unspecified part of neck, sequela
## 25356 Laceration with foreign body of unspecified part of neck, initial encounter
## 25357 Laceration with foreign body of unspecified part of neck, subsequent encounter
## 25358 Laceration with foreign body of unspecified part of neck, sequela
## 25359 Puncture wound without foreign body of unspecified part of neck, initial encounter
## 25360 Puncture wound without foreign body of unspecified part of neck, subsequent encounter
## 25361 Puncture wound without foreign body of unspecified part of neck, sequela
## 25362 Puncture wound with foreign body of unspecified part of neck, initial encounter
## 25363 Puncture wound with foreign body of unspecified part of neck, subsequent encounter
## 25364 Puncture wound with foreign body of unspecified part of neck, sequela
## 25365 Open bite of unspecified part of neck, initial encounter
## 25366 Open bite of unspecified part of neck, subsequent encounter
## 25367 Open bite of unspecified part of neck, sequela
## 25368 Unspecified displaced fracture of first cervical vertebra, initial encounter for closed fracture
## 25369 Unspecified displaced fracture of first cervical vertebra, initial encounter for open fracture
## 25370 Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25371 Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25372 Unspecified displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25373 Unspecified displaced fracture of first cervical vertebra, sequela
## 25374 Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture
## 25375 Unspecified nondisplaced fracture of first cervical vertebra, initial encounter for open fracture
## 25376 Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25377 Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25378 Unspecified nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25379 Unspecified nondisplaced fracture of first cervical vertebra, sequela
## 25380 Stable burst fracture of first cervical vertebra, initial encounter for closed fracture
## 25381 Stable burst fracture of first cervical vertebra, initial encounter for open fracture
## 25382 Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25383 Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25384 Stable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25385 Stable burst fracture of first cervical vertebra, sequela
## 25386 Unstable burst fracture of first cervical vertebra, initial encounter for closed fracture
## 25387 Unstable burst fracture of first cervical vertebra, initial encounter for open fracture
## 25388 Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25389 Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25390 Unstable burst fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25391 Unstable burst fracture of first cervical vertebra, sequela
## 25392 Displaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture
## 25393 Displaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture
## 25394 Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25395 Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25396 Displaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25397 Displaced posterior arch fracture of first cervical vertebra, sequela
## 25398 Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for closed fracture
## 25399 Nondisplaced posterior arch fracture of first cervical vertebra, initial encounter for open fracture
## 25400 Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25401 Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25402 Nondisplaced posterior arch fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25403 Nondisplaced posterior arch fracture of first cervical vertebra, sequela
## 25404 Displaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture
## 25405 Displaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture
## 25406 Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25407 Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25408 Displaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25409 Displaced lateral mass fracture of first cervical vertebra, sequela
## 25410 Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for closed fracture
## 25411 Nondisplaced lateral mass fracture of first cervical vertebra, initial encounter for open fracture
## 25412 Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25413 Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25414 Nondisplaced lateral mass fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25415 Nondisplaced lateral mass fracture of first cervical vertebra, sequela
## 25416 Other displaced fracture of first cervical vertebra, initial encounter for closed fracture
## 25417 Other displaced fracture of first cervical vertebra, initial encounter for open fracture
## 25418 Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25419 Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25420 Other displaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25421 Other displaced fracture of first cervical vertebra, sequela
## 25422 Other nondisplaced fracture of first cervical vertebra, initial encounter for closed fracture
## 25423 Other nondisplaced fracture of first cervical vertebra, initial encounter for open fracture
## 25424 Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with routine healing
## 25425 Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with delayed healing
## 25426 Other nondisplaced fracture of first cervical vertebra, subsequent encounter for fracture with nonunion
## 25427 Other nondisplaced fracture of first cervical vertebra, sequela
## 25428 Unspecified displaced fracture of second cervical vertebra, initial encounter for closed fracture
## 25429 Unspecified displaced fracture of second cervical vertebra, initial encounter for open fracture
## 25430 Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25431 Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25432 Unspecified displaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25433 Unspecified displaced fracture of second cervical vertebra, sequela
## 25434 Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture
## 25435 Unspecified nondisplaced fracture of second cervical vertebra, initial encounter for open fracture
## 25436 Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25437 Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25438 Unspecified nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25439 Unspecified nondisplaced fracture of second cervical vertebra, sequela
## 25440 Anterior displaced Type II dens fracture, initial encounter for closed fracture
## 25441 Anterior displaced Type II dens fracture, initial encounter for open fracture
## 25442 Anterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing
## 25443 Anterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing
## 25444 Anterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion
## 25445 Anterior displaced Type II dens fracture, sequela
## 25446 Posterior displaced Type II dens fracture, initial encounter for closed fracture
## 25447 Posterior displaced Type II dens fracture, initial encounter for open fracture
## 25448 Posterior displaced Type II dens fracture, subsequent encounter for fracture with routine healing
## 25449 Posterior displaced Type II dens fracture, subsequent encounter for fracture with delayed healing
## 25450 Posterior displaced Type II dens fracture, subsequent encounter for fracture with nonunion
## 25451 Posterior displaced Type II dens fracture, sequela
## 25452 Nondisplaced Type II dens fracture, initial encounter for closed fracture
## 25453 Nondisplaced Type II dens fracture, initial encounter for open fracture
## 25454 Nondisplaced Type II dens fracture, subsequent encounter for fracture with routine healing
## 25455 Nondisplaced Type II dens fracture, subsequent encounter for fracture with delayed healing
## 25456 Nondisplaced Type II dens fracture, subsequent encounter for fracture with nonunion
## 25457 Nondisplaced Type II dens fracture, sequela
## 25458 Other displaced dens fracture, initial encounter for closed fracture
## 25459 Other displaced dens fracture, initial encounter for open fracture
## 25460 Other displaced dens fracture, subsequent encounter for fracture with routine healing
## 25461 Other displaced dens fracture, subsequent encounter for fracture with delayed healing
## 25462 Other displaced dens fracture, subsequent encounter for fracture with nonunion
## 25463 Other displaced dens fracture, sequela
## 25464 Other nondisplaced dens fracture, initial encounter for closed fracture
## 25465 Other nondisplaced dens fracture, initial encounter for open fracture
## 25466 Other nondisplaced dens fracture, subsequent encounter for fracture with routine healing
## 25467 Other nondisplaced dens fracture, subsequent encounter for fracture with delayed healing
## 25468 Other nondisplaced dens fracture, subsequent encounter for fracture with nonunion
## 25469 Other nondisplaced dens fracture, sequela
## 25470 Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture
## 25471 Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture
## 25472 Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25473 Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25474 Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25475 Unspecified traumatic displaced spondylolisthesis of second cervical vertebra, sequela
## 25476 Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture
## 25477 Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture
## 25478 Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25479 Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25480 Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25481 Unspecified traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela
## 25482 Type III traumatic spondylolisthesis of second cervical vertebra, initial encounter for closed fracture
## 25483 Type III traumatic spondylolisthesis of second cervical vertebra, initial encounter for open fracture
## 25484 Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25485 Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25486 Type III traumatic spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25487 Type III traumatic spondylolisthesis of second cervical vertebra, sequela
## 25488 Other traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture
## 25489 Other traumatic displaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture
## 25490 Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25491 Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25492 Other traumatic displaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25493 Other traumatic displaced spondylolisthesis of second cervical vertebra, sequela
## 25494 Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for closed fracture
## 25495 Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, initial encounter for open fracture
## 25496 Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25497 Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25498 Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25499 Other traumatic nondisplaced spondylolisthesis of second cervical vertebra, sequela
## 25500 Other displaced fracture of second cervical vertebra, initial encounter for closed fracture
## 25501 Other displaced fracture of second cervical vertebra, initial encounter for open fracture
## 25502 Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25503 Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25504 Other displaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25505 Other displaced fracture of second cervical vertebra, sequela
## 25506 Other nondisplaced fracture of second cervical vertebra, initial encounter for closed fracture
## 25507 Other nondisplaced fracture of second cervical vertebra, initial encounter for open fracture
## 25508 Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with routine healing
## 25509 Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with delayed healing
## 25510 Other nondisplaced fracture of second cervical vertebra, subsequent encounter for fracture with nonunion
## 25511 Other nondisplaced fracture of second cervical vertebra, sequela
## 25512 Unspecified displaced fracture of third cervical vertebra, initial encounter for closed fracture
## 25513 Unspecified displaced fracture of third cervical vertebra, initial encounter for open fracture
## 25514 Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25515 Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25516 Unspecified displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25517 Unspecified displaced fracture of third cervical vertebra, sequela
## 25518 Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture
## 25519 Unspecified nondisplaced fracture of third cervical vertebra, initial encounter for open fracture
## 25520 Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25521 Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25522 Unspecified nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25523 Unspecified nondisplaced fracture of third cervical vertebra, sequela
## 25524 Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture
## 25525 Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture
## 25526 Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25527 Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25528 Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25529 Unspecified traumatic displaced spondylolisthesis of third cervical vertebra, sequela
## 25530 Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture
## 25531 Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture
## 25532 Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25533 Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25534 Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25535 Unspecified traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela
## 25536 Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for closed fracture
## 25537 Type III traumatic spondylolisthesis of third cervical vertebra, initial encounter for open fracture
## 25538 Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25539 Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25540 Type III traumatic spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25541 Type III traumatic spondylolisthesis of third cervical vertebra, sequela
## 25542 Other traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture
## 25543 Other traumatic displaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture
## 25544 Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25545 Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25546 Other traumatic displaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25547 Other traumatic displaced spondylolisthesis of third cervical vertebra, sequela
## 25548 Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for closed fracture
## 25549 Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, initial encounter for open fracture
## 25550 Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25551 Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25552 Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25553 Other traumatic nondisplaced spondylolisthesis of third cervical vertebra, sequela
## 25554 Other displaced fracture of third cervical vertebra, initial encounter for closed fracture
## 25555 Other displaced fracture of third cervical vertebra, initial encounter for open fracture
## 25556 Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25557 Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25558 Other displaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25559 Other displaced fracture of third cervical vertebra, sequela
## 25560 Other nondisplaced fracture of third cervical vertebra, initial encounter for closed fracture
## 25561 Other nondisplaced fracture of third cervical vertebra, initial encounter for open fracture
## 25562 Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with routine healing
## 25563 Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with delayed healing
## 25564 Other nondisplaced fracture of third cervical vertebra, subsequent encounter for fracture with nonunion
## 25565 Other nondisplaced fracture of third cervical vertebra, sequela
## 25566 Unspecified displaced fracture of fourth cervical vertebra, initial encounter for closed fracture
## 25567 Unspecified displaced fracture of fourth cervical vertebra, initial encounter for open fracture
## 25568 Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25569 Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25570 Unspecified displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25571 Unspecified displaced fracture of fourth cervical vertebra, sequela
## 25572 Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture
## 25573 Unspecified nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture
## 25574 Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25575 Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25576 Unspecified nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25577 Unspecified nondisplaced fracture of fourth cervical vertebra, sequela
## 25578 Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture
## 25579 Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture
## 25580 Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25581 Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25582 Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25583 Unspecified traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela
## 25584 Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture
## 25585 Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture
## 25586 Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25587 Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25588 Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25589 Unspecified traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela
## 25590 Type III traumatic spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture
## 25591 Type III traumatic spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture
## 25592 Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25593 Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25594 Type III traumatic spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25595 Type III traumatic spondylolisthesis of fourth cervical vertebra, sequela
## 25596 Other traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture
## 25597 Other traumatic displaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture
## 25598 Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25599 Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25600 Other traumatic displaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25601 Other traumatic displaced spondylolisthesis of fourth cervical vertebra, sequela
## 25602 Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for closed fracture
## 25603 Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, initial encounter for open fracture
## 25604 Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25605 Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25606 Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25607 Other traumatic nondisplaced spondylolisthesis of fourth cervical vertebra, sequela
## 25608 Other displaced fracture of fourth cervical vertebra, initial encounter for closed fracture
## 25609 Other displaced fracture of fourth cervical vertebra, initial encounter for open fracture
## 25610 Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25611 Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25612 Other displaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25613 Other displaced fracture of fourth cervical vertebra, sequela
## 25614 Other nondisplaced fracture of fourth cervical vertebra, initial encounter for closed fracture
## 25615 Other nondisplaced fracture of fourth cervical vertebra, initial encounter for open fracture
## 25616 Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with routine healing
## 25617 Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25618 Other nondisplaced fracture of fourth cervical vertebra, subsequent encounter for fracture with nonunion
## 25619 Other nondisplaced fracture of fourth cervical vertebra, sequela
## 25620 Unspecified displaced fracture of fifth cervical vertebra, initial encounter for closed fracture
## 25621 Unspecified displaced fracture of fifth cervical vertebra, initial encounter for open fracture
## 25622 Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25623 Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25624 Unspecified displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25625 Unspecified displaced fracture of fifth cervical vertebra, sequela
## 25626 Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture
## 25627 Unspecified nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture
## 25628 Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25629 Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25630 Unspecified nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25631 Unspecified nondisplaced fracture of fifth cervical vertebra, sequela
## 25632 Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture
## 25633 Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture
## 25634 Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25635 Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25636 Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25637 Unspecified traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela
## 25638 Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture
## 25639 Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture
## 25640 Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25641 Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25642 Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25643 Unspecified traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela
## 25644 Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture
## 25645 Type III traumatic spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture
## 25646 Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25647 Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25648 Type III traumatic spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25649 Type III traumatic spondylolisthesis of fifth cervical vertebra, sequela
## 25650 Other traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture
## 25651 Other traumatic displaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture
## 25652 Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25653 Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25654 Other traumatic displaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25655 Other traumatic displaced spondylolisthesis of fifth cervical vertebra, sequela
## 25656 Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for closed fracture
## 25657 Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, initial encounter for open fracture
## 25658 Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25659 Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25660 Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25661 Other traumatic nondisplaced spondylolisthesis of fifth cervical vertebra, sequela
## 25662 Other displaced fracture of fifth cervical vertebra, initial encounter for closed fracture
## 25663 Other displaced fracture of fifth cervical vertebra, initial encounter for open fracture
## 25664 Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25665 Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25666 Other displaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25667 Other displaced fracture of fifth cervical vertebra, sequela
## 25668 Other nondisplaced fracture of fifth cervical vertebra, initial encounter for closed fracture
## 25669 Other nondisplaced fracture of fifth cervical vertebra, initial encounter for open fracture
## 25670 Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with routine healing
## 25671 Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25672 Other nondisplaced fracture of fifth cervical vertebra, subsequent encounter for fracture with nonunion
## 25673 Other nondisplaced fracture of fifth cervical vertebra, sequela
## 25674 Unspecified displaced fracture of sixth cervical vertebra, initial encounter for closed fracture
## 25675 Unspecified displaced fracture of sixth cervical vertebra, initial encounter for open fracture
## 25676 Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25677 Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25678 Unspecified displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25679 Unspecified displaced fracture of sixth cervical vertebra, sequela
## 25680 Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture
## 25681 Unspecified nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture
## 25682 Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25683 Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25684 Unspecified nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25685 Unspecified nondisplaced fracture of sixth cervical vertebra, sequela
## 25686 Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture
## 25687 Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture
## 25688 Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25689 Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25690 Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25691 Unspecified traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela
## 25692 Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture
## 25693 Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture
## 25694 Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25695 Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25696 Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25697 Unspecified traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela
## 25698 Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture
## 25699 Type III traumatic spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture
## 25700 Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25701 Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25702 Type III traumatic spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25703 Type III traumatic spondylolisthesis of sixth cervical vertebra, sequela
## 25704 Other traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture
## 25705 Other traumatic displaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture
## 25706 Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25707 Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25708 Other traumatic displaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25709 Other traumatic displaced spondylolisthesis of sixth cervical vertebra, sequela
## 25710 Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for closed fracture
## 25711 Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, initial encounter for open fracture
## 25712 Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25713 Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25714 Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25715 Other traumatic nondisplaced spondylolisthesis of sixth cervical vertebra, sequela
## 25716 Other displaced fracture of sixth cervical vertebra, initial encounter for closed fracture
## 25717 Other displaced fracture of sixth cervical vertebra, initial encounter for open fracture
## 25718 Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25719 Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25720 Other displaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25721 Other displaced fracture of sixth cervical vertebra, sequela
## 25722 Other nondisplaced fracture of sixth cervical vertebra, initial encounter for closed fracture
## 25723 Other nondisplaced fracture of sixth cervical vertebra, initial encounter for open fracture
## 25724 Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with routine healing
## 25725 Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with delayed healing
## 25726 Other nondisplaced fracture of sixth cervical vertebra, subsequent encounter for fracture with nonunion
## 25727 Other nondisplaced fracture of sixth cervical vertebra, sequela
## 25728 Unspecified displaced fracture of seventh cervical vertebra, initial encounter for closed fracture
## 25729 Unspecified displaced fracture of seventh cervical vertebra, initial encounter for open fracture
## 25730 Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25731 Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25732 Unspecified displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25733 Unspecified displaced fracture of seventh cervical vertebra, sequela
## 25734 Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture
## 25735 Unspecified nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture
## 25736 Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25737 Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25738 Unspecified nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25739 Unspecified nondisplaced fracture of seventh cervical vertebra, sequela
## 25740 Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture
## 25741 Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture
## 25742 Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25743 Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25744 Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25745 Unspecified traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela
## 25746 Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture
## 25747 Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture
## 25748 Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25749 Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25750 Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25751 Unspecified traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela
## 25752 Type III traumatic spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture
## 25753 Type III traumatic spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture
## 25754 Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25755 Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25756 Type III traumatic spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25757 Type III traumatic spondylolisthesis of seventh cervical vertebra, sequela
## 25758 Other traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture
## 25759 Other traumatic displaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture
## 25760 Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25761 Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25762 Other traumatic displaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25763 Other traumatic displaced spondylolisthesis of seventh cervical vertebra, sequela
## 25764 Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for closed fracture
## 25765 Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, initial encounter for open fracture
## 25766 Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25767 Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25768 Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25769 Other traumatic nondisplaced spondylolisthesis of seventh cervical vertebra, sequela
## 25770 Other displaced fracture of seventh cervical vertebra, initial encounter for closed fracture
## 25771 Other displaced fracture of seventh cervical vertebra, initial encounter for open fracture
## 25772 Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25773 Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25774 Other displaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25775 Other displaced fracture of seventh cervical vertebra, sequela
## 25776 Other nondisplaced fracture of seventh cervical vertebra, initial encounter for closed fracture
## 25777 Other nondisplaced fracture of seventh cervical vertebra, initial encounter for open fracture
## 25778 Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with routine healing
## 25779 Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with delayed healing
## 25780 Other nondisplaced fracture of seventh cervical vertebra, subsequent encounter for fracture with nonunion
## 25781 Other nondisplaced fracture of seventh cervical vertebra, sequela
## 25782 Fracture of other parts of neck, initial encounter
## 25783 Fracture of other parts of neck, subsequent encounter
## 25784 Fracture of other parts of neck, sequela
## 25785 Fracture of neck, unspecified, initial encounter
## 25786 Fracture of neck, unspecified, subsequent encounter
## 25787 Fracture of neck, unspecified, sequela
## 25788 Traumatic rupture of cervical intervertebral disc, initial encounter
## 25789 Traumatic rupture of cervical intervertebral disc, subsequent encounter
## 25790 Traumatic rupture of cervical intervertebral disc, sequela
## 25791 Subluxation of unspecified cervical vertebrae, initial encounter
## 25792 Subluxation of unspecified cervical vertebrae, subsequent encounter
## 25793 Subluxation of unspecified cervical vertebrae, sequela
## 25794 Dislocation of unspecified cervical vertebrae, initial encounter
## 25795 Dislocation of unspecified cervical vertebrae, subsequent encounter
## 25796 Dislocation of unspecified cervical vertebrae, sequela
## 25797 Subluxation of C0/C1 cervical vertebrae, initial encounter
## 25798 Subluxation of C0/C1 cervical vertebrae, subsequent encounter
## 25799 Subluxation of C0/C1 cervical vertebrae, sequela
## 25800 Dislocation of C0/C1 cervical vertebrae, initial encounter
## 25801 Dislocation of C0/C1 cervical vertebrae, subsequent encounter
## 25802 Dislocation of C0/C1 cervical vertebrae, sequela
## 25803 Subluxation of C1/C2 cervical vertebrae, initial encounter
## 25804 Subluxation of C1/C2 cervical vertebrae, subsequent encounter
## 25805 Subluxation of C1/C2 cervical vertebrae, sequela
## 25806 Dislocation of C1/C2 cervical vertebrae, initial encounter
## 25807 Dislocation of C1/C2 cervical vertebrae, subsequent encounter
## 25808 Dislocation of C1/C2 cervical vertebrae, sequela
## 25809 Subluxation of C2/C3 cervical vertebrae, initial encounter
## 25810 Subluxation of C2/C3 cervical vertebrae, subsequent encounter
## 25811 Subluxation of C2/C3 cervical vertebrae, sequela
## 25812 Dislocation of C2/C3 cervical vertebrae, initial encounter
## 25813 Dislocation of C2/C3 cervical vertebrae, subsequent encounter
## 25814 Dislocation of C2/C3 cervical vertebrae, sequela
## 25815 Subluxation of C3/C4 cervical vertebrae, initial encounter
## 25816 Subluxation of C3/C4 cervical vertebrae, subsequent encounter
## 25817 Subluxation of C3/C4 cervical vertebrae, sequela
## 25818 Dislocation of C3/C4 cervical vertebrae, initial encounter
## 25819 Dislocation of C3/C4 cervical vertebrae, subsequent encounter
## 25820 Dislocation of C3/C4 cervical vertebrae, sequela
## 25821 Subluxation of C4/C5 cervical vertebrae, initial encounter
## 25822 Subluxation of C4/C5 cervical vertebrae, subsequent encounter
## 25823 Subluxation of C4/C5 cervical vertebrae, sequela
## 25824 Dislocation of C4/C5 cervical vertebrae, initial encounter
## 25825 Dislocation of C4/C5 cervical vertebrae, subsequent encounter
## 25826 Dislocation of C4/C5 cervical vertebrae, sequela
## 25827 Subluxation of C5/C6 cervical vertebrae, initial encounter
## 25828 Subluxation of C5/C6 cervical vertebrae, subsequent encounter
## 25829 Subluxation of C5/C6 cervical vertebrae, sequela
## 25830 Dislocation of C5/C6 cervical vertebrae, initial encounter
## 25831 Dislocation of C5/C6 cervical vertebrae, subsequent encounter
## 25832 Dislocation of C5/C6 cervical vertebrae, sequela
## 25833 Subluxation of C6/C7 cervical vertebrae, initial encounter
## 25834 Subluxation of C6/C7 cervical vertebrae, subsequent encounter
## 25835 Subluxation of C6/C7 cervical vertebrae, sequela
## 25836 Dislocation of C6/C7 cervical vertebrae, initial encounter
## 25837 Dislocation of C6/C7 cervical vertebrae, subsequent encounter
## 25838 Dislocation of C6/C7 cervical vertebrae, sequela
## 25839 Subluxation of C7/T1 cervical vertebrae, initial encounter
## 25840 Subluxation of C7/T1 cervical vertebrae, subsequent encounter
## 25841 Subluxation of C7/T1 cervical vertebrae, sequela
## 25842 Dislocation of C7/T1 cervical vertebrae, initial encounter
## 25843 Dislocation of C7/T1 cervical vertebrae, subsequent encounter
## 25844 Dislocation of C7/T1 cervical vertebrae, sequela
## 25845 Dislocation of unspecified parts of neck, initial encounter
## 25846 Dislocation of unspecified parts of neck, subsequent encounter
## 25847 Dislocation of unspecified parts of neck, sequela
## 25848 Dislocation of other parts of neck, initial encounter
## 25849 Dislocation of other parts of neck, subsequent encounter
## 25850 Dislocation of other parts of neck, sequela
## 25851 Sprain of ligaments of cervical spine, initial encounter
## 25852 Sprain of ligaments of cervical spine, subsequent encounter
## 25853 Sprain of ligaments of cervical spine, sequela
## 25854 Sprain of thyroid region, initial encounter
## 25855 Sprain of thyroid region, subsequent encounter
## 25856 Sprain of thyroid region, sequela
## 25857 Sprain of joints and ligaments of other parts of neck, initial encounter
## 25858 Sprain of joints and ligaments of other parts of neck, subsequent encounter
## 25859 Sprain of joints and ligaments of other parts of neck, sequela
## 25860 Sprain of joints and ligaments of unspecified parts of neck, initial encounter
## 25861 Sprain of joints and ligaments of unspecified parts of neck, subsequent encounter
## 25862 Sprain of joints and ligaments of unspecified parts of neck, sequela
## 25863 Concussion and edema of cervical spinal cord, initial encounter
## 25864 Concussion and edema of cervical spinal cord, subsequent encounter
## 25865 Concussion and edema of cervical spinal cord, sequela
## 25866 Unspecified injury at C1 level of cervical spinal cord, initial encounter
## 25867 Unspecified injury at C1 level of cervical spinal cord, subsequent encounter
## 25868 Unspecified injury at C1 level of cervical spinal cord, sequela
## 25869 Unspecified injury at C2 level of cervical spinal cord, initial encounter
## 25870 Unspecified injury at C2 level of cervical spinal cord, subsequent encounter
## 25871 Unspecified injury at C2 level of cervical spinal cord, sequela
## 25872 Unspecified injury at C3 level of cervical spinal cord, initial encounter
## 25873 Unspecified injury at C3 level of cervical spinal cord, subsequent encounter
## 25874 Unspecified injury at C3 level of cervical spinal cord, sequela
## 25875 Unspecified injury at C4 level of cervical spinal cord, initial encounter
## 25876 Unspecified injury at C4 level of cervical spinal cord, subsequent encounter
## 25877 Unspecified injury at C4 level of cervical spinal cord, sequela
## 25878 Unspecified injury at C5 level of cervical spinal cord, initial encounter
## 25879 Unspecified injury at C5 level of cervical spinal cord, subsequent encounter
## 25880 Unspecified injury at C5 level of cervical spinal cord, sequela
## 25881 Unspecified injury at C6 level of cervical spinal cord, initial encounter
## 25882 Unspecified injury at C6 level of cervical spinal cord, subsequent encounter
## 25883 Unspecified injury at C6 level of cervical spinal cord, sequela
## 25884 Unspecified injury at C7 level of cervical spinal cord, initial encounter
## 25885 Unspecified injury at C7 level of cervical spinal cord, subsequent encounter
## 25886 Unspecified injury at C7 level of cervical spinal cord, sequela
## 25887 Unspecified injury at C8 level of cervical spinal cord, initial encounter
## 25888 Unspecified injury at C8 level of cervical spinal cord, subsequent encounter
## 25889 Unspecified injury at C8 level of cervical spinal cord, sequela
## 25890 Unspecified injury at unspecified level of cervical spinal cord, initial encounter
## 25891 Unspecified injury at unspecified level of cervical spinal cord, subsequent encounter
## 25892 Unspecified injury at unspecified level of cervical spinal cord, sequela
## 25893 Complete lesion at C1 level of cervical spinal cord, initial encounter
## 25894 Complete lesion at C1 level of cervical spinal cord, subsequent encounter
## 25895 Complete lesion at C1 level of cervical spinal cord, sequela
## 25896 Complete lesion at C2 level of cervical spinal cord, initial encounter
## 25897 Complete lesion at C2 level of cervical spinal cord, subsequent encounter
## 25898 Complete lesion at C2 level of cervical spinal cord, sequela
## 25899 Complete lesion at C3 level of cervical spinal cord, initial encounter
## 25900 Complete lesion at C3 level of cervical spinal cord, subsequent encounter
## 25901 Complete lesion at C3 level of cervical spinal cord, sequela
## 25902 Complete lesion at C4 level of cervical spinal cord, initial encounter
## 25903 Complete lesion at C4 level of cervical spinal cord, subsequent encounter
## 25904 Complete lesion at C4 level of cervical spinal cord, sequela
## 25905 Complete lesion at C5 level of cervical spinal cord, initial encounter
## 25906 Complete lesion at C5 level of cervical spinal cord, subsequent encounter
## 25907 Complete lesion at C5 level of cervical spinal cord, sequela
## 25908 Complete lesion at C6 level of cervical spinal cord, initial encounter
## 25909 Complete lesion at C6 level of cervical spinal cord, subsequent encounter
## 25910 Complete lesion at C6 level of cervical spinal cord, sequela
## 25911 Complete lesion at C7 level of cervical spinal cord, initial encounter
## 25912 Complete lesion at C7 level of cervical spinal cord, subsequent encounter
## 25913 Complete lesion at C7 level of cervical spinal cord, sequela
## 25914 Complete lesion at C8 level of cervical spinal cord, initial encounter
## 25915 Complete lesion at C8 level of cervical spinal cord, subsequent encounter
## 25916 Complete lesion at C8 level of cervical spinal cord, sequela
## 25917 Complete lesion at unspecified level of cervical spinal cord, initial encounter
## 25918 Complete lesion at unspecified level of cervical spinal cord, subsequent encounter
## 25919 Complete lesion at unspecified level of cervical spinal cord, sequela
## 25920 Central cord syndrome at C1 level of cervical spinal cord, initial encounter
## 25921 Central cord syndrome at C1 level of cervical spinal cord, subsequent encounter
## 25922 Central cord syndrome at C1 level of cervical spinal cord, sequela
## 25923 Central cord syndrome at C2 level of cervical spinal cord, initial encounter
## 25924 Central cord syndrome at C2 level of cervical spinal cord, subsequent encounter
## 25925 Central cord syndrome at C2 level of cervical spinal cord, sequela
## 25926 Central cord syndrome at C3 level of cervical spinal cord, initial encounter
## 25927 Central cord syndrome at C3 level of cervical spinal cord, subsequent encounter
## 25928 Central cord syndrome at C3 level of cervical spinal cord, sequela
## 25929 Central cord syndrome at C4 level of cervical spinal cord, initial encounter
## 25930 Central cord syndrome at C4 level of cervical spinal cord, subsequent encounter
## 25931 Central cord syndrome at C4 level of cervical spinal cord, sequela
## 25932 Central cord syndrome at C5 level of cervical spinal cord, initial encounter
## 25933 Central cord syndrome at C5 level of cervical spinal cord, subsequent encounter
## 25934 Central cord syndrome at C5 level of cervical spinal cord, sequela
## 25935 Central cord syndrome at C6 level of cervical spinal cord, initial encounter
## 25936 Central cord syndrome at C6 level of cervical spinal cord, subsequent encounter
## 25937 Central cord syndrome at C6 level of cervical spinal cord, sequela
## 25938 Central cord syndrome at C7 level of cervical spinal cord, initial encounter
## 25939 Central cord syndrome at C7 level of cervical spinal cord, subsequent encounter
## 25940 Central cord syndrome at C7 level of cervical spinal cord, sequela
## 25941 Central cord syndrome at C8 level of cervical spinal cord, initial encounter
## 25942 Central cord syndrome at C8 level of cervical spinal cord, subsequent encounter
## 25943 Central cord syndrome at C8 level of cervical spinal cord, sequela
## 25944 Central cord syndrome at unspecified level of cervical spinal cord, initial encounter
## 25945 Central cord syndrome at unspecified level of cervical spinal cord, subsequent encounter
## 25946 Central cord syndrome at unspecified level of cervical spinal cord, sequela
## 25947 Anterior cord syndrome at C1 level of cervical spinal cord, initial encounter
## 25948 Anterior cord syndrome at C1 level of cervical spinal cord, subsequent encounter
## 25949 Anterior cord syndrome at C1 level of cervical spinal cord, sequela
## 25950 Anterior cord syndrome at C2 level of cervical spinal cord, initial encounter
## 25951 Anterior cord syndrome at C2 level of cervical spinal cord, subsequent encounter
## 25952 Anterior cord syndrome at C2 level of cervical spinal cord, sequela
## 25953 Anterior cord syndrome at C3 level of cervical spinal cord, initial encounter
## 25954 Anterior cord syndrome at C3 level of cervical spinal cord, subsequent encounter
## 25955 Anterior cord syndrome at C3 level of cervical spinal cord, sequela
## 25956 Anterior cord syndrome at C4 level of cervical spinal cord, initial encounter
## 25957 Anterior cord syndrome at C4 level of cervical spinal cord, subsequent encounter
## 25958 Anterior cord syndrome at C4 level of cervical spinal cord, sequela
## 25959 Anterior cord syndrome at C5 level of cervical spinal cord, initial encounter
## 25960 Anterior cord syndrome at C5 level of cervical spinal cord, subsequent encounter
## 25961 Anterior cord syndrome at C5 level of cervical spinal cord, sequela
## 25962 Anterior cord syndrome at C6 level of cervical spinal cord, initial encounter
## 25963 Anterior cord syndrome at C6 level of cervical spinal cord, subsequent encounter
## 25964 Anterior cord syndrome at C6 level of cervical spinal cord, sequela
## 25965 Anterior cord syndrome at C7 level of cervical spinal cord, initial encounter
## 25966 Anterior cord syndrome at C7 level of cervical spinal cord, subsequent encounter
## 25967 Anterior cord syndrome at C7 level of cervical spinal cord, sequela
## 25968 Anterior cord syndrome at C8 level of cervical spinal cord, initial encounter
## 25969 Anterior cord syndrome at C8 level of cervical spinal cord, subsequent encounter
## 25970 Anterior cord syndrome at C8 level of cervical spinal cord, sequela
## 25971 Anterior cord syndrome at unspecified level of cervical spinal cord, initial encounter
## 25972 Anterior cord syndrome at unspecified level of cervical spinal cord, subsequent encounter
## 25973 Anterior cord syndrome at unspecified level of cervical spinal cord, sequela
## 25974 Brown-Sequard syndrome at C1 level of cervical spinal cord, initial encounter
## 25975 Brown-Sequard syndrome at C1 level of cervical spinal cord, subsequent encounter
## 25976 Brown-Sequard syndrome at C1 level of cervical spinal cord, sequela
## 25977 Brown-Sequard syndrome at C2 level of cervical spinal cord, initial encounter
## 25978 Brown-Sequard syndrome at C2 level of cervical spinal cord, subsequent encounter
## 25979 Brown-Sequard syndrome at C2 level of cervical spinal cord, sequela
## 25980 Brown-Sequard syndrome at C3 level of cervical spinal cord, initial encounter
## 25981 Brown-Sequard syndrome at C3 level of cervical spinal cord, subsequent encounter
## 25982 Brown-Sequard syndrome at C3 level of cervical spinal cord, sequela
## 25983 Brown-Sequard syndrome at C4 level of cervical spinal cord, initial encounter
## 25984 Brown-Sequard syndrome at C4 level of cervical spinal cord, subsequent encounter
## 25985 Brown-Sequard syndrome at C4 level of cervical spinal cord, sequela
## 25986 Brown-Sequard syndrome at C5 level of cervical spinal cord, initial encounter
## 25987 Brown-Sequard syndrome at C5 level of cervical spinal cord, subsequent encounter
## 25988 Brown-Sequard syndrome at C5 level of cervical spinal cord, sequela
## 25989 Brown-Sequard syndrome at C6 level of cervical spinal cord, initial encounter
## 25990 Brown-Sequard syndrome at C6 level of cervical spinal cord, subsequent encounter
## 25991 Brown-Sequard syndrome at C6 level of cervical spinal cord, sequela
## 25992 Brown-Sequard syndrome at C7 level of cervical spinal cord, initial encounter
## 25993 Brown-Sequard syndrome at C7 level of cervical spinal cord, subsequent encounter
## 25994 Brown-Sequard syndrome at C7 level of cervical spinal cord, sequela
## 25995 Brown-Sequard syndrome at C8 level of cervical spinal cord, initial encounter
## 25996 Brown-Sequard syndrome at C8 level of cervical spinal cord, subsequent encounter
## 25997 Brown-Sequard syndrome at C8 level of cervical spinal cord, sequela
## 25998 Brown-Sequard syndrome at unspecified level of cervical spinal cord, initial encounter
## 25999 Brown-Sequard syndrome at unspecified level of cervical spinal cord, subsequent encounter
## 26000 Brown-Sequard syndrome at unspecified level of cervical spinal cord, sequela
## 26001 Other incomplete lesion at C1 level of cervical spinal cord, initial encounter
## 26002 Other incomplete lesion at C1 level of cervical spinal cord, subsequent encounter
## 26003 Other incomplete lesion at C1 level of cervical spinal cord, sequela
## 26004 Other incomplete lesion at C2 level of cervical spinal cord, initial encounter
## 26005 Other incomplete lesion at C2 level of cervical spinal cord, subsequent encounter
## 26006 Other incomplete lesion at C2 level of cervical spinal cord, sequela
## 26007 Other incomplete lesion at C3 level of cervical spinal cord, initial encounter
## 26008 Other incomplete lesion at C3 level of cervical spinal cord, subsequent encounter
## 26009 Other incomplete lesion at C3 level of cervical spinal cord, sequela
## 26010 Other incomplete lesion at C4 level of cervical spinal cord, initial encounter
## 26011 Other incomplete lesion at C4 level of cervical spinal cord, subsequent encounter
## 26012 Other incomplete lesion at C4 level of cervical spinal cord, sequela
## 26013 Other incomplete lesion at C5 level of cervical spinal cord, initial encounter
## 26014 Other incomplete lesion at C5 level of cervical spinal cord, subsequent encounter
## 26015 Other incomplete lesion at C5 level of cervical spinal cord, sequela
## 26016 Other incomplete lesion at C6 level of cervical spinal cord, initial encounter
## 26017 Other incomplete lesion at C6 level of cervical spinal cord, subsequent encounter
## 26018 Other incomplete lesion at C6 level of cervical spinal cord, sequela
## 26019 Other incomplete lesion at C7 level of cervical spinal cord, initial encounter
## 26020 Other incomplete lesion at C7 level of cervical spinal cord, subsequent encounter
## 26021 Other incomplete lesion at C7 level of cervical spinal cord, sequela
## 26022 Other incomplete lesion at C8 level of cervical spinal cord, initial encounter
## 26023 Other incomplete lesion at C8 level of cervical spinal cord, subsequent encounter
## 26024 Other incomplete lesion at C8 level of cervical spinal cord, sequela
## 26025 Other incomplete lesion at unspecified level of cervical spinal cord, initial encounter
## 26026 Other incomplete lesion at unspecified level of cervical spinal cord, subsequent encounter
## 26027 Other incomplete lesion at unspecified level of cervical spinal cord, sequela
## 26028 Injury of nerve root of cervical spine, initial encounter
## 26029 Injury of nerve root of cervical spine, subsequent encounter
## 26030 Injury of nerve root of cervical spine, sequela
## 26031 Injury of brachial plexus, initial encounter
## 26032 Injury of brachial plexus, subsequent encounter
## 26033 Injury of brachial plexus, sequela
## 26034 Injury of peripheral nerves of neck, initial encounter
## 26035 Injury of peripheral nerves of neck, subsequent encounter
## 26036 Injury of peripheral nerves of neck, sequela
## 26037 Injury of cervical sympathetic nerves, initial encounter
## 26038 Injury of cervical sympathetic nerves, subsequent encounter
## 26039 Injury of cervical sympathetic nerves, sequela
## 26040 Injury of other specified nerves of neck, initial encounter
## 26041 Injury of other specified nerves of neck, subsequent encounter
## 26042 Injury of other specified nerves of neck, sequela
## 26043 Injury of unspecified nerves of neck, initial encounter
## 26044 Injury of unspecified nerves of neck, subsequent encounter
## 26045 Injury of unspecified nerves of neck, sequela
## 26046 Unspecified injury of right carotid artery, initial encounter
## 26047 Unspecified injury of right carotid artery, subsequent encounter
## 26048 Unspecified injury of right carotid artery, sequela
## 26049 Unspecified injury of left carotid artery, initial encounter
## 26050 Unspecified injury of left carotid artery, subsequent encounter
## 26051 Unspecified injury of left carotid artery, sequela
## 26052 Unspecified injury of unspecified carotid artery, initial encounter
## 26053 Unspecified injury of unspecified carotid artery, subsequent encounter
## 26054 Unspecified injury of unspecified carotid artery, sequela
## 26055 Minor laceration of right carotid artery, initial encounter
## 26056 Minor laceration of right carotid artery, subsequent encounter
## 26057 Minor laceration of right carotid artery, sequela
## 26058 Minor laceration of left carotid artery, initial encounter
## 26059 Minor laceration of left carotid artery, subsequent encounter
## 26060 Minor laceration of left carotid artery, sequela
## 26061 Minor laceration of unspecified carotid artery, initial encounter
## 26062 Minor laceration of unspecified carotid artery, subsequent encounter
## 26063 Minor laceration of unspecified carotid artery, sequela
## 26064 Major laceration of right carotid artery, initial encounter
## 26065 Major laceration of right carotid artery, subsequent encounter
## 26066 Major laceration of right carotid artery, sequela
## 26067 Major laceration of left carotid artery, initial encounter
## 26068 Major laceration of left carotid artery, subsequent encounter
## 26069 Major laceration of left carotid artery, sequela
## 26070 Major laceration of unspecified carotid artery, initial encounter
## 26071 Major laceration of unspecified carotid artery, subsequent encounter
## 26072 Major laceration of unspecified carotid artery, sequela
## 26073 Other specified injury of right carotid artery, initial encounter
## 26074 Other specified injury of right carotid artery, subsequent encounter
## 26075 Other specified injury of right carotid artery, sequela
## 26076 Other specified injury of left carotid artery, initial encounter
## 26077 Other specified injury of left carotid artery, subsequent encounter
## 26078 Other specified injury of left carotid artery, sequela
## 26079 Other specified injury of unspecified carotid artery, initial encounter
## 26080 Other specified injury of unspecified carotid artery, subsequent encounter
## 26081 Other specified injury of unspecified carotid artery, sequela
## 26082 Unspecified injury of right vertebral artery, initial encounter
## 26083 Unspecified injury of right vertebral artery, subsequent encounter
## 26084 Unspecified injury of right vertebral artery, sequela
## 26085 Unspecified injury of left vertebral artery, initial encounter
## 26086 Unspecified injury of left vertebral artery, subsequent encounter
## 26087 Unspecified injury of left vertebral artery, sequela
## 26088 Unspecified injury of unspecified vertebral artery, initial encounter
## 26089 Unspecified injury of unspecified vertebral artery, subsequent encounter
## 26090 Unspecified injury of unspecified vertebral artery, sequela
## 26091 Minor laceration of right vertebral artery, initial encounter
## 26092 Minor laceration of right vertebral artery, subsequent encounter
## 26093 Minor laceration of right vertebral artery, sequela
## 26094 Minor laceration of left vertebral artery, initial encounter
## 26095 Minor laceration of left vertebral artery, subsequent encounter
## 26096 Minor laceration of left vertebral artery, sequela
## 26097 Minor laceration of unspecified vertebral artery, initial encounter
## 26098 Minor laceration of unspecified vertebral artery, subsequent encounter
## 26099 Minor laceration of unspecified vertebral artery, sequela
## 26100 Major laceration of right vertebral artery, initial encounter
## 26101 Major laceration of right vertebral artery, subsequent encounter
## 26102 Major laceration of right vertebral artery, sequela
## 26103 Major laceration of left vertebral artery, initial encounter
## 26104 Major laceration of left vertebral artery, subsequent encounter
## 26105 Major laceration of left vertebral artery, sequela
## 26106 Major laceration of unspecified vertebral artery, initial encounter
## 26107 Major laceration of unspecified vertebral artery, subsequent encounter
## 26108 Major laceration of unspecified vertebral artery, sequela
## 26109 Other specified injury of right vertebral artery, initial encounter
## 26110 Other specified injury of right vertebral artery, subsequent encounter
## 26111 Other specified injury of right vertebral artery, sequela
## 26112 Other specified injury of left vertebral artery, initial encounter
## 26113 Other specified injury of left vertebral artery, subsequent encounter
## 26114 Other specified injury of left vertebral artery, sequela
## 26115 Other specified injury of unspecified vertebral artery, initial encounter
## 26116 Other specified injury of unspecified vertebral artery, subsequent encounter
## 26117 Other specified injury of unspecified vertebral artery, sequela
## 26118 Unspecified injury of right external jugular vein, initial encounter
## 26119 Unspecified injury of right external jugular vein, subsequent encounter
## 26120 Unspecified injury of right external jugular vein, sequela
## 26121 Unspecified injury of left external jugular vein, initial encounter
## 26122 Unspecified injury of left external jugular vein, subsequent encounter
## 26123 Unspecified injury of left external jugular vein, sequela
## 26124 Unspecified injury of unspecified external jugular vein, initial encounter
## 26125 Unspecified injury of unspecified external jugular vein, subsequent encounter
## 26126 Unspecified injury of unspecified external jugular vein, sequela
## 26127 Minor laceration of right external jugular vein, initial encounter
## 26128 Minor laceration of right external jugular vein, subsequent encounter
## 26129 Minor laceration of right external jugular vein, sequela
## 26130 Minor laceration of left external jugular vein, initial encounter
## 26131 Minor laceration of left external jugular vein, subsequent encounter
## 26132 Minor laceration of left external jugular vein, sequela
## 26133 Minor laceration of unspecified external jugular vein, initial encounter
## 26134 Minor laceration of unspecified external jugular vein, subsequent encounter
## 26135 Minor laceration of unspecified external jugular vein, sequela
## 26136 Major laceration of right external jugular vein, initial encounter
## 26137 Major laceration of right external jugular vein, subsequent encounter
## 26138 Major laceration of right external jugular vein, sequela
## 26139 Major laceration of left external jugular vein, initial encounter
## 26140 Major laceration of left external jugular vein, subsequent encounter
## 26141 Major laceration of left external jugular vein, sequela
## 26142 Major laceration of unspecified external jugular vein, initial encounter
## 26143 Major laceration of unspecified external jugular vein, subsequent encounter
## 26144 Major laceration of unspecified external jugular vein, sequela
## 26145 Other specified injury of right external jugular vein, initial encounter
## 26146 Other specified injury of right external jugular vein, subsequent encounter
## 26147 Other specified injury of right external jugular vein, sequela
## 26148 Other specified injury of left external jugular vein, initial encounter
## 26149 Other specified injury of left external jugular vein, subsequent encounter
## 26150 Other specified injury of left external jugular vein, sequela
## 26151 Other specified injury of unspecified external jugular vein, initial encounter
## 26152 Other specified injury of unspecified external jugular vein, subsequent encounter
## 26153 Other specified injury of unspecified external jugular vein, sequela
## 26154 Unspecified injury of right internal jugular vein, initial encounter
## 26155 Unspecified injury of right internal jugular vein, subsequent encounter
## 26156 Unspecified injury of right internal jugular vein, sequela
## 26157 Unspecified injury of left internal jugular vein, initial encounter
## 26158 Unspecified injury of left internal jugular vein, subsequent encounter
## 26159 Unspecified injury of left internal jugular vein, sequela
## 26160 Unspecified injury of unspecified internal jugular vein, initial encounter
## 26161 Unspecified injury of unspecified internal jugular vein, subsequent encounter
## 26162 Unspecified injury of unspecified internal jugular vein, sequela
## 26163 Minor laceration of right internal jugular vein, initial encounter
## 26164 Minor laceration of right internal jugular vein, subsequent encounter
## 26165 Minor laceration of right internal jugular vein, sequela
## 26166 Minor laceration of left internal jugular vein, initial encounter
## 26167 Minor laceration of left internal jugular vein, subsequent encounter
## 26168 Minor laceration of left internal jugular vein, sequela
## 26169 Minor laceration of unspecified internal jugular vein, initial encounter
## 26170 Minor laceration of unspecified internal jugular vein, subsequent encounter
## 26171 Minor laceration of unspecified internal jugular vein, sequela
## 26172 Major laceration of right internal jugular vein, initial encounter
## 26173 Major laceration of right internal jugular vein, subsequent encounter
## 26174 Major laceration of right internal jugular vein, sequela
## 26175 Major laceration of left internal jugular vein, initial encounter
## 26176 Major laceration of left internal jugular vein, subsequent encounter
## 26177 Major laceration of left internal jugular vein, sequela
## 26178 Major laceration of unspecified internal jugular vein, initial encounter
## 26179 Major laceration of unspecified internal jugular vein, subsequent encounter
## 26180 Major laceration of unspecified internal jugular vein, sequela
## 26181 Other specified injury of right internal jugular vein, initial encounter
## 26182 Other specified injury of right internal jugular vein, subsequent encounter
## 26183 Other specified injury of right internal jugular vein, sequela
## 26184 Other specified injury of left internal jugular vein, initial encounter
## 26185 Other specified injury of left internal jugular vein, subsequent encounter
## 26186 Other specified injury of left internal jugular vein, sequela
## 26187 Other specified injury of unspecified internal jugular vein, initial encounter
## 26188 Other specified injury of unspecified internal jugular vein, subsequent encounter
## 26189 Other specified injury of unspecified internal jugular vein, sequela
## 26190 Injury of other specified blood vessels at neck level, initial encounter
## 26191 Injury of other specified blood vessels at neck level, subsequent encounter
## 26192 Injury of other specified blood vessels at neck level, sequela
## 26193 Injury of unspecified blood vessel at neck level, initial encounter
## 26194 Injury of unspecified blood vessel at neck level, subsequent encounter
## 26195 Injury of unspecified blood vessel at neck level, sequela
## 26196 Strain of muscle, fascia and tendon at neck level, initial encounter
## 26197 Strain of muscle, fascia and tendon at neck level, subsequent encounter
## 26198 Strain of muscle, fascia and tendon at neck level, sequela
## 26199 Laceration of muscle, fascia and tendon at neck level, initial encounter
## 26200 Laceration of muscle, fascia and tendon at neck level, subsequent encounter
## 26201 Laceration of muscle, fascia and tendon at neck level, sequela
## 26202 Other specified injury of muscle, fascia and tendon at neck level, initial encounter
## 26203 Other specified injury of muscle, fascia and tendon at neck level, subsequent encounter
## 26204 Other specified injury of muscle, fascia and tendon at neck level, sequela
## 26205 Unspecified injury of muscle, fascia and tendon at neck level, initial encounter
## 26206 Unspecified injury of muscle, fascia and tendon at neck level, subsequent encounter
## 26207 Unspecified injury of muscle, fascia and tendon at neck level, sequela
## 26208 Crushing injury of larynx and trachea, initial encounter
## 26209 Crushing injury of larynx and trachea, subsequent encounter
## 26210 Crushing injury of larynx and trachea, sequela
## 26211 Crushing injury of other specified parts of neck, initial encounter
## 26212 Crushing injury of other specified parts of neck, subsequent encounter
## 26213 Crushing injury of other specified parts of neck, sequela
## 26214 Crushing injury of neck, part unspecified, initial encounter
## 26215 Crushing injury of neck, part unspecified, subsequent encounter
## 26216 Crushing injury of neck, part unspecified, sequela
## 26217 Other specified injuries of unspecified part of neck, initial encounter
## 26218 Other specified injuries of unspecified part of neck, subsequent encounter
## 26219 Other specified injuries of unspecified part of neck, sequela
## 26220 Other specified injuries of larynx, initial encounter
## 26221 Other specified injuries of larynx, subsequent encounter
## 26222 Other specified injuries of larynx, sequela
## 26223 Other specified injuries of cervical trachea, initial encounter
## 26224 Other specified injuries of cervical trachea, subsequent encounter
## 26225 Other specified injuries of cervical trachea, sequela
## 26226 Other specified injuries of vocal cord, initial encounter
## 26227 Other specified injuries of vocal cord, subsequent encounter
## 26228 Other specified injuries of vocal cord, sequela
## 26229 Other specified injuries of thyroid gland, initial encounter
## 26230 Other specified injuries of thyroid gland, subsequent encounter
## 26231 Other specified injuries of thyroid gland, sequela
## 26232 Other specified injuries of pharynx and cervical esophagus, initial encounter
## 26233 Other specified injuries of pharynx and cervical esophagus, subsequent encounter
## 26234 Other specified injuries of pharynx and cervical esophagus, sequela
## 26235 Other specified injuries of other specified part of neck, initial encounter
## 26236 Other specified injuries of other specified part of neck, subsequent encounter
## 26237 Other specified injuries of other specified part of neck, sequela
## 26238 Unspecified injury of neck, initial encounter
## 26239 Unspecified injury of neck, subsequent encounter
## 26240 Unspecified injury of neck, sequela
## 26241 Contusion of breast, unspecified breast, initial encounter
## 26242 Contusion of breast, unspecified breast, subsequent encounter
## 26243 Contusion of breast, unspecified breast, sequela
## 26244 Contusion of right breast, initial encounter
## 26245 Contusion of right breast, subsequent encounter
## 26246 Contusion of right breast, sequela
## 26247 Contusion of left breast, initial encounter
## 26248 Contusion of left breast, subsequent encounter
## 26249 Contusion of left breast, sequela
## 26250 Unspecified superficial injuries of breast, right breast, initial encounter
## 26251 Unspecified superficial injuries of breast, right breast, subsequent encounter
## 26252 Unspecified superficial injuries of breast, right breast, sequela
## 26253 Unspecified superficial injuries of breast, left breast, initial encounter
## 26254 Unspecified superficial injuries of breast, left breast, subsequent encounter
## 26255 Unspecified superficial injuries of breast, left breast, sequela
## 26256 Unspecified superficial injuries of breast, unspecified breast, initial encounter
## 26257 Unspecified superficial injuries of breast, unspecified breast, subsequent encounter
## 26258 Unspecified superficial injuries of breast, unspecified breast, sequela
## 26259 Abrasion of breast, right breast, initial encounter
## 26260 Abrasion of breast, right breast, subsequent encounter
## 26261 Abrasion of breast, right breast, sequela
## 26262 Abrasion of breast, left breast, initial encounter
## 26263 Abrasion of breast, left breast, subsequent encounter
## 26264 Abrasion of breast, left breast, sequela
## 26265 Abrasion of breast, unspecified breast, initial encounter
## 26266 Abrasion of breast, unspecified breast, subsequent encounter
## 26267 Abrasion of breast, unspecified breast, sequela
## 26268 Blister (nonthermal) of breast, right breast, initial encounter
## 26269 Blister (nonthermal) of breast, right breast, subsequent encounter
## 26270 Blister (nonthermal) of breast, right breast, sequela
## 26271 Blister (nonthermal) of breast, left breast, initial encounter
## 26272 Blister (nonthermal) of breast, left breast, subsequent encounter
## 26273 Blister (nonthermal) of breast, left breast, sequela
## 26274 Blister (nonthermal) of breast, unspecified breast, initial encounter
## 26275 Blister (nonthermal) of breast, unspecified breast, subsequent encounter
## 26276 Blister (nonthermal) of breast, unspecified breast, sequela
## 26277 External constriction of part of breast, right breast, initial encounter
## 26278 External constriction of part of breast, right breast, subsequent encounter
## 26279 External constriction of part of breast, right breast, sequela
## 26280 External constriction of part of breast, left breast, initial encounter
## 26281 External constriction of part of breast, left breast, subsequent encounter
## 26282 External constriction of part of breast, left breast, sequela
## 26283 External constriction of part of breast, unspecified breast, initial encounter
## 26284 External constriction of part of breast, unspecified breast, subsequent encounter
## 26285 External constriction of part of breast, unspecified breast, sequela
## 26286 Superficial foreign body of breast, right breast, initial encounter
## 26287 Superficial foreign body of breast, right breast, subsequent encounter
## 26288 Superficial foreign body of breast, right breast, sequela
## 26289 Superficial foreign body of breast, left breast, initial encounter
## 26290 Superficial foreign body of breast, left breast, subsequent encounter
## 26291 Superficial foreign body of breast, left breast, sequela
## 26292 Superficial foreign body of breast, unspecified breast, initial encounter
## 26293 Superficial foreign body of breast, unspecified breast, subsequent encounter
## 26294 Superficial foreign body of breast, unspecified breast, sequela
## 26295 Insect bite (nonvenomous) of breast, right breast, initial encounter
## 26296 Insect bite (nonvenomous) of breast, right breast, subsequent encounter
## 26297 Insect bite (nonvenomous) of breast, right breast, sequela
## 26298 Insect bite (nonvenomous) of breast, left breast, initial encounter
## 26299 Insect bite (nonvenomous) of breast, left breast, subsequent encounter
## 26300 Insect bite (nonvenomous) of breast, left breast, sequela
## 26301 Insect bite (nonvenomous) of breast, unspecified breast, initial encounter
## 26302 Insect bite (nonvenomous) of breast, unspecified breast, subsequent encounter
## 26303 Insect bite (nonvenomous) of breast, unspecified breast, sequela
## 26304 Other superficial bite of breast, right breast, initial encounter
## 26305 Other superficial bite of breast, right breast, subsequent encounter
## 26306 Other superficial bite of breast, right breast, sequela
## 26307 Other superficial bite of breast, left breast, initial encounter
## 26308 Other superficial bite of breast, left breast, subsequent encounter
## 26309 Other superficial bite of breast, left breast, sequela
## 26310 Other superficial bite of breast, unspecified breast, initial encounter
## 26311 Other superficial bite of breast, unspecified breast, subsequent encounter
## 26312 Other superficial bite of breast, unspecified breast, sequela
## 26313 Contusion of thorax, unspecified, initial encounter
## 26314 Contusion of thorax, unspecified, subsequent encounter
## 26315 Contusion of thorax, unspecified, sequela
## 26316 Contusion of right front wall of thorax, initial encounter
## 26317 Contusion of right front wall of thorax, subsequent encounter
## 26318 Contusion of right front wall of thorax, sequela
## 26319 Contusion of left front wall of thorax, initial encounter
## 26320 Contusion of left front wall of thorax, subsequent encounter
## 26321 Contusion of left front wall of thorax, sequela
## 26322 Contusion of unspecified front wall of thorax, initial encounter
## 26323 Contusion of unspecified front wall of thorax, subsequent encounter
## 26324 Contusion of unspecified front wall of thorax, sequela
## 26325 Contusion of right back wall of thorax, initial encounter
## 26326 Contusion of right back wall of thorax, subsequent encounter
## 26327 Contusion of right back wall of thorax, sequela
## 26328 Contusion of left back wall of thorax, initial encounter
## 26329 Contusion of left back wall of thorax, subsequent encounter
## 26330 Contusion of left back wall of thorax, sequela
## 26331 Contusion of unspecified back wall of thorax, initial encounter
## 26332 Contusion of unspecified back wall of thorax, subsequent encounter
## 26333 Contusion of unspecified back wall of thorax, sequela
## 26334 Unspecified superficial injuries of right front wall of thorax, initial encounter
## 26335 Unspecified superficial injuries of right front wall of thorax, subsequent encounter
## 26336 Unspecified superficial injuries of right front wall of thorax, sequela
## 26337 Unspecified superficial injuries of left front wall of thorax, initial encounter
## 26338 Unspecified superficial injuries of left front wall of thorax, subsequent encounter
## 26339 Unspecified superficial injuries of left front wall of thorax, sequela
## 26340 Unspecified superficial injuries of unspecified front wall of thorax, initial encounter
## 26341 Unspecified superficial injuries of unspecified front wall of thorax, subsequent encounter
## 26342 Unspecified superficial injuries of unspecified front wall of thorax, sequela
## 26343 Abrasion of right front wall of thorax, initial encounter
## 26344 Abrasion of right front wall of thorax, subsequent encounter
## 26345 Abrasion of right front wall of thorax, sequela
## 26346 Abrasion of left front wall of thorax, initial encounter
## 26347 Abrasion of left front wall of thorax, subsequent encounter
## 26348 Abrasion of left front wall of thorax, sequela
## 26349 Abrasion of unspecified front wall of thorax, initial encounter
## 26350 Abrasion of unspecified front wall of thorax, subsequent encounter
## 26351 Abrasion of unspecified front wall of thorax, sequela
## 26352 Blister (nonthermal) of right front wall of thorax, initial encounter
## 26353 Blister (nonthermal) of right front wall of thorax, subsequent encounter
## 26354 Blister (nonthermal) of right front wall of thorax, sequela
## 26355 Blister (nonthermal) of left front wall of thorax, initial encounter
## 26356 Blister (nonthermal) of left front wall of thorax, subsequent encounter
## 26357 Blister (nonthermal) of left front wall of thorax, sequela
## 26358 Blister (nonthermal) of unspecified front wall of thorax, initial encounter
## 26359 Blister (nonthermal) of unspecified front wall of thorax, subsequent encounter
## 26360 Blister (nonthermal) of unspecified front wall of thorax, sequela
## 26361 External constriction of right front wall of thorax, initial encounter
## 26362 External constriction of right front wall of thorax, subsequent encounter
## 26363 External constriction of right front wall of thorax, sequela
## 26364 External constriction of left front wall of thorax, initial encounter
## 26365 External constriction of left front wall of thorax, subsequent encounter
## 26366 External constriction of left front wall of thorax, sequela
## 26367 External constriction of unspecified front wall of thorax, initial encounter
## 26368 External constriction of unspecified front wall of thorax, subsequent encounter
## 26369 External constriction of unspecified front wall of thorax, sequela
## 26370 Superficial foreign body of right front wall of thorax, initial encounter
## 26371 Superficial foreign body of right front wall of thorax, subsequent encounter
## 26372 Superficial foreign body of right front wall of thorax, sequela
## 26373 Superficial foreign body of left front wall of thorax, initial encounter
## 26374 Superficial foreign body of left front wall of thorax, subsequent encounter
## 26375 Superficial foreign body of left front wall of thorax, sequela
## 26376 Superficial foreign body of unspecified front wall of thorax, initial encounter
## 26377 Superficial foreign body of unspecified front wall of thorax, subsequent encounter
## 26378 Superficial foreign body of unspecified front wall of thorax, sequela
## 26379 Insect bite (nonvenomous) of right front wall of thorax, initial encounter
## 26380 Insect bite (nonvenomous) of right front wall of thorax, subsequent encounter
## 26381 Insect bite (nonvenomous) of right front wall of thorax, sequela
## 26382 Insect bite (nonvenomous) of left front wall of thorax, initial encounter
## 26383 Insect bite (nonvenomous) of left front wall of thorax, subsequent encounter
## 26384 Insect bite (nonvenomous) of left front wall of thorax, sequela
## 26385 Insect bite (nonvenomous) of unspecified front wall of thorax, initial encounter
## 26386 Insect bite (nonvenomous) of unspecified front wall of thorax, subsequent encounter
## 26387 Insect bite (nonvenomous) of unspecified front wall of thorax, sequela
## 26388 Other superficial bite of right front wall of thorax, initial encounter
## 26389 Other superficial bite of right front wall of thorax, subsequent encounter
## 26390 Other superficial bite of right front wall of thorax, sequela
## 26391 Other superficial bite of left front wall of thorax, initial encounter
## 26392 Other superficial bite of left front wall of thorax, subsequent encounter
## 26393 Other superficial bite of left front wall of thorax, sequela
## 26394 Other superficial bite of unspecified front wall of thorax, initial encounter
## 26395 Other superficial bite of unspecified front wall of thorax, subsequent encounter
## 26396 Other superficial bite of unspecified front wall of thorax, sequela
## 26397 Unspecified superficial injuries of right back wall of thorax, initial encounter
## 26398 Unspecified superficial injuries of right back wall of thorax, subsequent encounter
## 26399 Unspecified superficial injuries of right back wall of thorax, sequela
## 26400 Unspecified superficial injuries of left back wall of thorax, initial encounter
## 26401 Unspecified superficial injuries of left back wall of thorax, subsequent encounter
## 26402 Unspecified superficial injuries of left back wall of thorax, sequela
## 26403 Unspecified superficial injuries of unspecified back wall of thorax, initial encounter
## 26404 Unspecified superficial injuries of unspecified back wall of thorax, subsequent encounter
## 26405 Unspecified superficial injuries of unspecified back wall of thorax, sequela
## 26406 Abrasion of right back wall of thorax, initial encounter
## 26407 Abrasion of right back wall of thorax, subsequent encounter
## 26408 Abrasion of right back wall of thorax, sequela
## 26409 Abrasion of left back wall of thorax, initial encounter
## 26410 Abrasion of left back wall of thorax, subsequent encounter
## 26411 Abrasion of left back wall of thorax, sequela
## 26412 Abrasion of unspecified back wall of thorax, initial encounter
## 26413 Abrasion of unspecified back wall of thorax, subsequent encounter
## 26414 Abrasion of unspecified back wall of thorax, sequela
## 26415 Blister (nonthermal) of right back wall of thorax, initial encounter
## 26416 Blister (nonthermal) of right back wall of thorax, subsequent encounter
## 26417 Blister (nonthermal) of right back wall of thorax, sequela
## 26418 Blister (nonthermal) of left back wall of thorax, initial encounter
## 26419 Blister (nonthermal) of left back wall of thorax, subsequent encounter
## 26420 Blister (nonthermal) of left back wall of thorax, sequela
## 26421 Blister (nonthermal) of unspecified back wall of thorax, initial encounter
## 26422 Blister (nonthermal) of unspecified back wall of thorax, subsequent encounter
## 26423 Blister (nonthermal) of unspecified back wall of thorax, sequela
## 26424 External constriction of right back wall of thorax, initial encounter
## 26425 External constriction of right back wall of thorax, subsequent encounter
## 26426 External constriction of right back wall of thorax, sequela
## 26427 External constriction of left back wall of thorax, initial encounter
## 26428 External constriction of left back wall of thorax, subsequent encounter
## 26429 External constriction of left back wall of thorax, sequela
## 26430 External constriction of unspecified back wall of thorax, initial encounter
## 26431 External constriction of unspecified back wall of thorax, subsequent encounter
## 26432 External constriction of unspecified back wall of thorax, sequela
## 26433 Superficial foreign body of right back wall of thorax, initial encounter
## 26434 Superficial foreign body of right back wall of thorax, subsequent encounter
## 26435 Superficial foreign body of right back wall of thorax, sequela
## 26436 Superficial foreign body of left back wall of thorax, initial encounter
## 26437 Superficial foreign body of left back wall of thorax, subsequent encounter
## 26438 Superficial foreign body of left back wall of thorax, sequela
## 26439 Superficial foreign body of unspecified back wall of thorax, initial encounter
## 26440 Superficial foreign body of unspecified back wall of thorax, subsequent encounter
## 26441 Superficial foreign body of unspecified back wall of thorax, sequela
## 26442 Insect bite (nonvenomous) of right back wall of thorax, initial encounter
## 26443 Insect bite (nonvenomous) of right back wall of thorax, subsequent encounter
## 26444 Insect bite (nonvenomous) of right back wall of thorax, sequela
## 26445 Insect bite (nonvenomous) of left back wall of thorax, initial encounter
## 26446 Insect bite (nonvenomous) of left back wall of thorax, subsequent encounter
## 26447 Insect bite (nonvenomous) of left back wall of thorax, sequela
## 26448 Insect bite (nonvenomous) of unspecified back wall of thorax, initial encounter
## 26449 Insect bite (nonvenomous) of unspecified back wall of thorax, subsequent encounter
## 26450 Insect bite (nonvenomous) of unspecified back wall of thorax, sequela
## 26451 Other superficial bite of right back wall of thorax, initial encounter
## 26452 Other superficial bite of right back wall of thorax, subsequent encounter
## 26453 Other superficial bite of right back wall of thorax, sequela
## 26454 Other superficial bite of left back wall of thorax, initial encounter
## 26455 Other superficial bite of left back wall of thorax, subsequent encounter
## 26456 Other superficial bite of left back wall of thorax, sequela
## 26457 Other superficial bite of unspecified back wall of thorax, initial encounter
## 26458 Other superficial bite of unspecified back wall of thorax, subsequent encounter
## 26459 Other superficial bite of unspecified back wall of thorax, sequela
## 26460 Unspecified superficial injury of unspecified parts of thorax, initial encounter
## 26461 Unspecified superficial injury of unspecified parts of thorax, subsequent encounter
## 26462 Unspecified superficial injury of unspecified parts of thorax, sequela
## 26463 Abrasion of unspecified parts of thorax, initial encounter
## 26464 Abrasion of unspecified parts of thorax, subsequent encounter
## 26465 Abrasion of unspecified parts of thorax, sequela
## 26466 Blister (nonthermal) of unspecified parts of thorax, initial encounter
## 26467 Blister (nonthermal) of unspecified parts of thorax, subsequent encounter
## 26468 Blister (nonthermal) of unspecified parts of thorax, sequela
## 26469 External constriction of unspecified parts of thorax, initial encounter
## 26470 External constriction of unspecified parts of thorax, subsequent encounter
## 26471 External constriction of unspecified parts of thorax, sequela
## 26472 Superficial foreign body of unspecified parts of thorax, initial encounter
## 26473 Superficial foreign body of unspecified parts of thorax, subsequent encounter
## 26474 Superficial foreign body of unspecified parts of thorax, sequela
## 26475 Insect bite (nonvenomous) of unspecified parts of thorax, initial encounter
## 26476 Insect bite (nonvenomous) of unspecified parts of thorax, subsequent encounter
## 26477 Insect bite (nonvenomous) of unspecified parts of thorax, sequela
## 26478 Other superficial bite of unspecified parts of thorax, initial encounter
## 26479 Other superficial bite of unspecified parts of thorax, subsequent encounter
## 26480 Other superficial bite of unspecified parts of thorax, sequela
## 26481 Unspecified open wound of right breast, initial encounter
## 26482 Unspecified open wound of right breast, subsequent encounter
## 26483 Unspecified open wound of right breast, sequela
## 26484 Unspecified open wound of left breast, initial encounter
## 26485 Unspecified open wound of left breast, subsequent encounter
## 26486 Unspecified open wound of left breast, sequela
## 26487 Unspecified open wound of unspecified breast, initial encounter
## 26488 Unspecified open wound of unspecified breast, subsequent encounter
## 26489 Unspecified open wound of unspecified breast, sequela
## 26490 Laceration without foreign body of right breast, initial encounter
## 26491 Laceration without foreign body of right breast, subsequent encounter
## 26492 Laceration without foreign body of right breast, sequela
## 26493 Laceration without foreign body of left breast, initial encounter
## 26494 Laceration without foreign body of left breast, subsequent encounter
## 26495 Laceration without foreign body of left breast, sequela
## 26496 Laceration without foreign body of unspecified breast, initial encounter
## 26497 Laceration without foreign body of unspecified breast, subsequent encounter
## 26498 Laceration without foreign body of unspecified breast, sequela
## 26499 Laceration with foreign body of right breast, initial encounter
## 26500 Laceration with foreign body of right breast, subsequent encounter
## 26501 Laceration with foreign body of right breast, sequela
## 26502 Laceration with foreign body of left breast, initial encounter
## 26503 Laceration with foreign body of left breast, subsequent encounter
## 26504 Laceration with foreign body of left breast, sequela
## 26505 Laceration with foreign body of unspecified breast, initial encounter
## 26506 Laceration with foreign body of unspecified breast, subsequent encounter
## 26507 Laceration with foreign body of unspecified breast, sequela
## 26508 Puncture wound without foreign body of right breast, initial encounter
## 26509 Puncture wound without foreign body of right breast, subsequent encounter
## 26510 Puncture wound without foreign body of right breast, sequela
## 26511 Puncture wound without foreign body of left breast, initial encounter
## 26512 Puncture wound without foreign body of left breast, subsequent encounter
## 26513 Puncture wound without foreign body of left breast, sequela
## 26514 Puncture wound without foreign body of unspecified breast, initial encounter
## 26515 Puncture wound without foreign body of unspecified breast, subsequent encounter
## 26516 Puncture wound without foreign body of unspecified breast, sequela
## 26517 Puncture wound with foreign body of right breast, initial encounter
## 26518 Puncture wound with foreign body of right breast, subsequent encounter
## 26519 Puncture wound with foreign body of right breast, sequela
## 26520 Puncture wound with foreign body of left breast, initial encounter
## 26521 Puncture wound with foreign body of left breast, subsequent encounter
## 26522 Puncture wound with foreign body of left breast, sequela
## 26523 Puncture wound with foreign body of unspecified breast, initial encounter
## 26524 Puncture wound with foreign body of unspecified breast, subsequent encounter
## 26525 Puncture wound with foreign body of unspecified breast, sequela
## 26526 Open bite of right breast, initial encounter
## 26527 Open bite of right breast, subsequent encounter
## 26528 Open bite of right breast, sequela
## 26529 Open bite of left breast, initial encounter
## 26530 Open bite of left breast, subsequent encounter
## 26531 Open bite of left breast, sequela
## 26532 Open bite of unspecified breast, initial encounter
## 26533 Open bite of unspecified breast, subsequent encounter
## 26534 Open bite of unspecified breast, sequela
## 26535 Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, initial encounter
## 26536 Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26537 Unspecified open wound of right front wall of thorax without penetration into thoracic cavity, sequela
## 26538 Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, initial encounter
## 26539 Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26540 Unspecified open wound of left front wall of thorax without penetration into thoracic cavity, sequela
## 26541 Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter
## 26542 Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26543 Unspecified open wound of unspecified front wall of thorax without penetration into thoracic cavity, sequela
## 26544 Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter
## 26545 Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26546 Laceration without foreign body of right front wall of thorax without penetration into thoracic cavity, sequela
## 26547 Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter
## 26548 Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26549 Laceration without foreign body of left front wall of thorax without penetration into thoracic cavity, sequela
## 26550 Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter
## 26551 Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26552 Laceration without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela
## 26553 Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter
## 26554 Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26555 Laceration with foreign body of right front wall of thorax without penetration into thoracic cavity, sequela
## 26556 Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter
## 26557 Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26558 Laceration with foreign body of left front wall of thorax without penetration into thoracic cavity, sequela
## 26559 Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter
## 26560 Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26561 Laceration with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela
## 26562 Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter
## 26563 Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26564 Puncture wound without foreign body of right front wall of thorax without penetration into thoracic cavity, sequela
## 26565 Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter
## 26566 Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26567 Puncture wound without foreign body of left front wall of thorax without penetration into thoracic cavity, sequela
## 26568 Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter
## 26569 Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26570 Puncture wound without foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela
## 26571 Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, initial encounter
## 26572 Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26573 Puncture wound with foreign body of right front wall of thorax without penetration into thoracic cavity, sequela
## 26574 Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, initial encounter
## 26575 Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26576 Puncture wound with foreign body of left front wall of thorax without penetration into thoracic cavity, sequela
## 26577 Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter
## 26578 Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26579 Puncture wound with foreign body of unspecified front wall of thorax without penetration into thoracic cavity, sequela
## 26580 Open bite of right front wall of thorax without penetration into thoracic cavity, initial encounter
## 26581 Open bite of right front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26582 Open bite of right front wall of thorax without penetration into thoracic cavity, sequela
## 26583 Open bite of left front wall of thorax without penetration into thoracic cavity, initial encounter
## 26584 Open bite of left front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26585 Open bite of left front wall of thorax without penetration into thoracic cavity, sequela
## 26586 Open bite of unspecified front wall of thorax without penetration into thoracic cavity, initial encounter
## 26587 Open bite of unspecified front wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26588 Open bite of unspecified front wall of thorax without penetration into thoracic cavity, sequela
## 26589 Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, initial encounter
## 26590 Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26591 Unspecified open wound of right back wall of thorax without penetration into thoracic cavity, sequela
## 26592 Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, initial encounter
## 26593 Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26594 Unspecified open wound of left back wall of thorax without penetration into thoracic cavity, sequela
## 26595 Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter
## 26596 Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26597 Unspecified open wound of unspecified back wall of thorax without penetration into thoracic cavity, sequela
## 26598 Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter
## 26599 Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26600 Laceration without foreign body of right back wall of thorax without penetration into thoracic cavity, sequela
## 26601 Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter
## 26602 Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26603 Laceration without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela
## 26604 Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter
## 26605 Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26606 Laceration without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela
## 26607 Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter
## 26608 Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26609 Laceration with foreign body of right back wall of thorax without penetration into thoracic cavity, sequela
## 26610 Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter
## 26611 Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26612 Laceration with foreign body of left back wall of thorax without penetration into thoracic cavity, sequela
## 26613 Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter
## 26614 Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26615 Laceration with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela
## 26616 Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter
## 26617 Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26618 Puncture wound without foreign body of right back wall of thorax without penetration into thoracic cavity, sequela
## 26619 Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter
## 26620 Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26621 Puncture wound without foreign body of left back wall of thorax without penetration into thoracic cavity, sequela
## 26622 Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter
## 26623 Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26624 Puncture wound without foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela
## 26625 Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, initial encounter
## 26626 Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26627 Puncture wound with foreign body of right back wall of thorax without penetration into thoracic cavity, sequela
## 26628 Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, initial encounter
## 26629 Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26630 Puncture wound with foreign body of left back wall of thorax without penetration into thoracic cavity, sequela
## 26631 Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter
## 26632 Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26633 Puncture wound with foreign body of unspecified back wall of thorax without penetration into thoracic cavity, sequela
## 26634 Open bite of right back wall of thorax without penetration into thoracic cavity, initial encounter
## 26635 Open bite of right back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26636 Open bite of right back wall of thorax without penetration into thoracic cavity, sequela
## 26637 Open bite of left back wall of thorax without penetration into thoracic cavity, initial encounter
## 26638 Open bite of left back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26639 Open bite of left back wall of thorax without penetration into thoracic cavity, sequela
## 26640 Open bite of unspecified back wall of thorax without penetration into thoracic cavity, initial encounter
## 26641 Open bite of unspecified back wall of thorax without penetration into thoracic cavity, subsequent encounter
## 26642 Open bite of unspecified back wall of thorax without penetration into thoracic cavity, sequela
## 26643 Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, initial encounter
## 26644 Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26645 Unspecified open wound of right front wall of thorax with penetration into thoracic cavity, sequela
## 26646 Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, initial encounter
## 26647 Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26648 Unspecified open wound of left front wall of thorax with penetration into thoracic cavity, sequela
## 26649 Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter
## 26650 Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26651 Unspecified open wound of unspecified front wall of thorax with penetration into thoracic cavity, sequela
## 26652 Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter
## 26653 Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26654 Laceration without foreign body of right front wall of thorax with penetration into thoracic cavity, sequela
## 26655 Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter
## 26656 Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26657 Laceration without foreign body of left front wall of thorax with penetration into thoracic cavity, sequela
## 26658 Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter
## 26659 Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26660 Laceration without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela
## 26661 Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter
## 26662 Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26663 Laceration with foreign body of right front wall of thorax with penetration into thoracic cavity, sequela
## 26664 Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter
## 26665 Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26666 Laceration with foreign body of left front wall of thorax with penetration into thoracic cavity, sequela
## 26667 Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter
## 26668 Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26669 Laceration with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela
## 26670 Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter
## 26671 Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26672 Puncture wound without foreign body of right front wall of thorax with penetration into thoracic cavity, sequela
## 26673 Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter
## 26674 Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26675 Puncture wound without foreign body of left front wall of thorax with penetration into thoracic cavity, sequela
## 26676 Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter
## 26677 Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26678 Puncture wound without foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela
## 26679 Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, initial encounter
## 26680 Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26681 Puncture wound with foreign body of right front wall of thorax with penetration into thoracic cavity, sequela
## 26682 Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, initial encounter
## 26683 Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26684 Puncture wound with foreign body of left front wall of thorax with penetration into thoracic cavity, sequela
## 26685 Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter
## 26686 Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26687 Puncture wound with foreign body of unspecified front wall of thorax with penetration into thoracic cavity, sequela
## 26688 Open bite of right front wall of thorax with penetration into thoracic cavity, initial encounter
## 26689 Open bite of right front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26690 Open bite of right front wall of thorax with penetration into thoracic cavity, sequela
## 26691 Open bite of left front wall of thorax with penetration into thoracic cavity, initial encounter
## 26692 Open bite of left front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26693 Open bite of left front wall of thorax with penetration into thoracic cavity, sequela
## 26694 Open bite of unspecified front wall of thorax with penetration into thoracic cavity, initial encounter
## 26695 Open bite of unspecified front wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26696 Open bite of unspecified front wall of thorax with penetration into thoracic cavity, sequela
## 26697 Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, initial encounter
## 26698 Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26699 Unspecified open wound of right back wall of thorax with penetration into thoracic cavity, sequela
## 26700 Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, initial encounter
## 26701 Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26702 Unspecified open wound of left back wall of thorax with penetration into thoracic cavity, sequela
## 26703 Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter
## 26704 Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26705 Unspecified open wound of unspecified back wall of thorax with penetration into thoracic cavity, sequela
## 26706 Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter
## 26707 Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26708 Laceration without foreign body of right back wall of thorax with penetration into thoracic cavity, sequela
## 26709 Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter
## 26710 Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26711 Laceration without foreign body of left back wall of thorax with penetration into thoracic cavity, sequela
## 26712 Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter
## 26713 Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26714 Laceration without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela
## 26715 Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter
## 26716 Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26717 Laceration with foreign body of right back wall of thorax with penetration into thoracic cavity, sequela
## 26718 Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter
## 26719 Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26720 Laceration with foreign body of left back wall of thorax with penetration into thoracic cavity, sequela
## 26721 Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter
## 26722 Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26723 Laceration with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela
## 26724 Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter
## 26725 Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26726 Puncture wound without foreign body of right back wall of thorax with penetration into thoracic cavity, sequela
## 26727 Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter
## 26728 Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26729 Puncture wound without foreign body of left back wall of thorax with penetration into thoracic cavity, sequela
## 26730 Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter
## 26731 Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26732 Puncture wound without foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela
## 26733 Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, initial encounter
## 26734 Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26735 Puncture wound with foreign body of right back wall of thorax with penetration into thoracic cavity, sequela
## 26736 Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, initial encounter
## 26737 Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26738 Puncture wound with foreign body of left back wall of thorax with penetration into thoracic cavity, sequela
## 26739 Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter
## 26740 Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26741 Puncture wound with foreign body of unspecified back wall of thorax with penetration into thoracic cavity, sequela
## 26742 Open bite of right back wall of thorax with penetration into thoracic cavity, initial encounter
## 26743 Open bite of right back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26744 Open bite of right back wall of thorax with penetration into thoracic cavity, sequela
## 26745 Open bite of left back wall of thorax with penetration into thoracic cavity, initial encounter
## 26746 Open bite of left back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26747 Open bite of left back wall of thorax with penetration into thoracic cavity, sequela
## 26748 Open bite of unspecified back wall of thorax with penetration into thoracic cavity, initial encounter
## 26749 Open bite of unspecified back wall of thorax with penetration into thoracic cavity, subsequent encounter
## 26750 Open bite of unspecified back wall of thorax with penetration into thoracic cavity, sequela
## 26751 Unspecified open wound of unspecified part of thorax, initial encounter
## 26752 Unspecified open wound of unspecified part of thorax, subsequent encounter
## 26753 Unspecified open wound of unspecified part of thorax, sequela
## 26754 Laceration without foreign body of unspecified part of thorax, initial encounter
## 26755 Laceration without foreign body of unspecified part of thorax, subsequent encounter
## 26756 Laceration without foreign body of unspecified part of thorax, sequela
## 26757 Laceration with foreign body of unspecified part of thorax, initial encounter
## 26758 Laceration with foreign body of unspecified part of thorax, subsequent encounter
## 26759 Laceration with foreign body of unspecified part of thorax, sequela
## 26760 Puncture wound without foreign body of unspecified part of thorax, initial encounter
## 26761 Puncture wound without foreign body of unspecified part of thorax, subsequent encounter
## 26762 Puncture wound without foreign body of unspecified part of thorax, sequela
## 26763 Puncture wound with foreign body of unspecified part of thorax, initial encounter
## 26764 Puncture wound with foreign body of unspecified part of thorax, subsequent encounter
## 26765 Puncture wound with foreign body of unspecified part of thorax, sequela
## 26766 Open bite of unspecified part of thorax, initial encounter
## 26767 Open bite of unspecified part of thorax, subsequent encounter
## 26768 Open bite of unspecified part of thorax, sequela
## 26769 Wedge compression fracture of unspecified thoracic vertebra, initial encounter for closed fracture
## 26770 Wedge compression fracture of unspecified thoracic vertebra, initial encounter for open fracture
## 26771 Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing
## 26772 Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26773 Wedge compression fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion
## 26774 Wedge compression fracture of unspecified thoracic vertebra, sequela
## 26775 Stable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture
## 26776 Stable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture
## 26777 Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing
## 26778 Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26779 Stable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion
## 26780 Stable burst fracture of unspecified thoracic vertebra, sequela
## 26781 Unstable burst fracture of unspecified thoracic vertebra, initial encounter for closed fracture
## 26782 Unstable burst fracture of unspecified thoracic vertebra, initial encounter for open fracture
## 26783 Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing
## 26784 Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26785 Unstable burst fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion
## 26786 Unstable burst fracture of unspecified thoracic vertebra, sequela
## 26787 Other fracture of unspecified thoracic vertebra, initial encounter for closed fracture
## 26788 Other fracture of unspecified thoracic vertebra, initial encounter for open fracture
## 26789 Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing
## 26790 Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26791 Other fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion
## 26792 Other fracture of unspecified thoracic vertebra, sequela
## 26793 Unspecified fracture of unspecified thoracic vertebra, initial encounter for closed fracture
## 26794 Unspecified fracture of unspecified thoracic vertebra, initial encounter for open fracture
## 26795 Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with routine healing
## 26796 Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26797 Unspecified fracture of unspecified thoracic vertebra, subsequent encounter for fracture with nonunion
## 26798 Unspecified fracture of unspecified thoracic vertebra, sequela
## 26799 Wedge compression fracture of first thoracic vertebra, initial encounter for closed fracture
## 26800 Wedge compression fracture of first thoracic vertebra, initial encounter for open fracture
## 26801 Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing
## 26802 Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26803 Wedge compression fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion
## 26804 Wedge compression fracture of first thoracic vertebra, sequela
## 26805 Stable burst fracture of first thoracic vertebra, initial encounter for closed fracture
## 26806 Stable burst fracture of first thoracic vertebra, initial encounter for open fracture
## 26807 Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing
## 26808 Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26809 Stable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion
## 26810 Stable burst fracture of first thoracic vertebra, sequela
## 26811 Unstable burst fracture of first thoracic vertebra, initial encounter for closed fracture
## 26812 Unstable burst fracture of first thoracic vertebra, initial encounter for open fracture
## 26813 Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing
## 26814 Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26815 Unstable burst fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion
## 26816 Unstable burst fracture of first thoracic vertebra, sequela
## 26817 Other fracture of first thoracic vertebra, initial encounter for closed fracture
## 26818 Other fracture of first thoracic vertebra, initial encounter for open fracture
## 26819 Other fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing
## 26820 Other fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26821 Other fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion
## 26822 Other fracture of first thoracic vertebra, sequela
## 26823 Unspecified fracture of first thoracic vertebra, initial encounter for closed fracture
## 26824 Unspecified fracture of first thoracic vertebra, initial encounter for open fracture
## 26825 Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with routine healing
## 26826 Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26827 Unspecified fracture of first thoracic vertebra, subsequent encounter for fracture with nonunion
## 26828 Unspecified fracture of first thoracic vertebra, sequela
## 26829 Wedge compression fracture of second thoracic vertebra, initial encounter for closed fracture
## 26830 Wedge compression fracture of second thoracic vertebra, initial encounter for open fracture
## 26831 Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing
## 26832 Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26833 Wedge compression fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion
## 26834 Wedge compression fracture of second thoracic vertebra, sequela
## 26835 Stable burst fracture of second thoracic vertebra, initial encounter for closed fracture
## 26836 Stable burst fracture of second thoracic vertebra, initial encounter for open fracture
## 26837 Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing
## 26838 Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26839 Stable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion
## 26840 Stable burst fracture of second thoracic vertebra, sequela
## 26841 Unstable burst fracture of second thoracic vertebra, initial encounter for closed fracture
## 26842 Unstable burst fracture of second thoracic vertebra, initial encounter for open fracture
## 26843 Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing
## 26844 Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26845 Unstable burst fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion
## 26846 Unstable burst fracture of second thoracic vertebra, sequela
## 26847 Other fracture of second thoracic vertebra, initial encounter for closed fracture
## 26848 Other fracture of second thoracic vertebra, initial encounter for open fracture
## 26849 Other fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing
## 26850 Other fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26851 Other fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion
## 26852 Other fracture of second thoracic vertebra, sequela
## 26853 Unspecified fracture of second thoracic vertebra, initial encounter for closed fracture
## 26854 Unspecified fracture of second thoracic vertebra, initial encounter for open fracture
## 26855 Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with routine healing
## 26856 Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26857 Unspecified fracture of second thoracic vertebra, subsequent encounter for fracture with nonunion
## 26858 Unspecified fracture of second thoracic vertebra, sequela
## 26859 Wedge compression fracture of third thoracic vertebra, initial encounter for closed fracture
## 26860 Wedge compression fracture of third thoracic vertebra, initial encounter for open fracture
## 26861 Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing
## 26862 Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26863 Wedge compression fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion
## 26864 Wedge compression fracture of third thoracic vertebra, sequela
## 26865 Stable burst fracture of third thoracic vertebra, initial encounter for closed fracture
## 26866 Stable burst fracture of third thoracic vertebra, initial encounter for open fracture
## 26867 Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing
## 26868 Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26869 Stable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion
## 26870 Stable burst fracture of third thoracic vertebra, sequela
## 26871 Unstable burst fracture of third thoracic vertebra, initial encounter for closed fracture
## 26872 Unstable burst fracture of third thoracic vertebra, initial encounter for open fracture
## 26873 Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing
## 26874 Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26875 Unstable burst fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion
## 26876 Unstable burst fracture of third thoracic vertebra, sequela
## 26877 Other fracture of third thoracic vertebra, initial encounter for closed fracture
## 26878 Other fracture of third thoracic vertebra, initial encounter for open fracture
## 26879 Other fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing
## 26880 Other fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26881 Other fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion
## 26882 Other fracture of third thoracic vertebra, sequela
## 26883 Unspecified fracture of third thoracic vertebra, initial encounter for closed fracture
## 26884 Unspecified fracture of third thoracic vertebra, initial encounter for open fracture
## 26885 Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with routine healing
## 26886 Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26887 Unspecified fracture of third thoracic vertebra, subsequent encounter for fracture with nonunion
## 26888 Unspecified fracture of third thoracic vertebra, sequela
## 26889 Wedge compression fracture of fourth thoracic vertebra, initial encounter for closed fracture
## 26890 Wedge compression fracture of fourth thoracic vertebra, initial encounter for open fracture
## 26891 Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing
## 26892 Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26893 Wedge compression fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion
## 26894 Wedge compression fracture of fourth thoracic vertebra, sequela
## 26895 Stable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture
## 26896 Stable burst fracture of fourth thoracic vertebra, initial encounter for open fracture
## 26897 Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing
## 26898 Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26899 Stable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion
## 26900 Stable burst fracture of fourth thoracic vertebra, sequela
## 26901 Unstable burst fracture of fourth thoracic vertebra, initial encounter for closed fracture
## 26902 Unstable burst fracture of fourth thoracic vertebra, initial encounter for open fracture
## 26903 Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing
## 26904 Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26905 Unstable burst fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion
## 26906 Unstable burst fracture of fourth thoracic vertebra, sequela
## 26907 Other fracture of fourth thoracic vertebra, initial encounter for closed fracture
## 26908 Other fracture of fourth thoracic vertebra, initial encounter for open fracture
## 26909 Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing
## 26910 Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26911 Other fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion
## 26912 Other fracture of fourth thoracic vertebra, sequela
## 26913 Unspecified fracture of fourth thoracic vertebra, initial encounter for closed fracture
## 26914 Unspecified fracture of fourth thoracic vertebra, initial encounter for open fracture
## 26915 Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with routine healing
## 26916 Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26917 Unspecified fracture of fourth thoracic vertebra, subsequent encounter for fracture with nonunion
## 26918 Unspecified fracture of fourth thoracic vertebra, sequela
## 26919 Wedge compression fracture of T5-T6 vertebra, initial encounter for closed fracture
## 26920 Wedge compression fracture of T5-T6 vertebra, initial encounter for open fracture
## 26921 Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing
## 26922 Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing
## 26923 Wedge compression fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion
## 26924 Wedge compression fracture of T5-T6 vertebra, sequela
## 26925 Stable burst fracture of T5-T6 vertebra, initial encounter for closed fracture
## 26926 Stable burst fracture of T5-T6 vertebra, initial encounter for open fracture
## 26927 Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing
## 26928 Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing
## 26929 Stable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion
## 26930 Stable burst fracture of T5-T6 vertebra, sequela
## 26931 Unstable burst fracture of T5-T6 vertebra, initial encounter for closed fracture
## 26932 Unstable burst fracture of T5-T6 vertebra, initial encounter for open fracture
## 26933 Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing
## 26934 Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing
## 26935 Unstable burst fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion
## 26936 Unstable burst fracture of T5-T6 vertebra, sequela
## 26937 Other fracture of T5-T6 vertebra, initial encounter for closed fracture
## 26938 Other fracture of T5-T6 vertebra, initial encounter for open fracture
## 26939 Other fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing
## 26940 Other fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing
## 26941 Other fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion
## 26942 Other fracture of T5-T6 vertebra, sequela
## 26943 Unspecified fracture of T5-T6 vertebra, initial encounter for closed fracture
## 26944 Unspecified fracture of T5-T6 vertebra, initial encounter for open fracture
## 26945 Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with routine healing
## 26946 Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with delayed healing
## 26947 Unspecified fracture of T5-T6 vertebra, subsequent encounter for fracture with nonunion
## 26948 Unspecified fracture of T5-T6 vertebra, sequela
## 26949 Wedge compression fracture of T7-T8 vertebra, initial encounter for closed fracture
## 26950 Wedge compression fracture of T7-T8 vertebra, initial encounter for open fracture
## 26951 Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing
## 26952 Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing
## 26953 Wedge compression fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion
## 26954 Wedge compression fracture of T7-T8 vertebra, sequela
## 26955 Stable burst fracture of T7-T8 vertebra, initial encounter for closed fracture
## 26956 Stable burst fracture of T7-T8 vertebra, initial encounter for open fracture
## 26957 Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing
## 26958 Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing
## 26959 Stable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion
## 26960 Stable burst fracture of T7-T8 vertebra, sequela
## 26961 Unstable burst fracture of T7-T8 vertebra, initial encounter for closed fracture
## 26962 Unstable burst fracture of T7-T8 vertebra, initial encounter for open fracture
## 26963 Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing
## 26964 Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing
## 26965 Unstable burst fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion
## 26966 Unstable burst fracture of T7-T8 vertebra, sequela
## 26967 Other fracture of T7-T8 thoracic vertebra, initial encounter for closed fracture
## 26968 Other fracture of T7-T8 thoracic vertebra, initial encounter for open fracture
## 26969 Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with routine healing
## 26970 Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with delayed healing
## 26971 Other fracture of T7-T8 thoracic vertebra, subsequent encounter for fracture with nonunion
## 26972 Other fracture of T7-T8 thoracic vertebra, sequela
## 26973 Unspecified fracture of T7-T8 vertebra, initial encounter for closed fracture
## 26974 Unspecified fracture of T7-T8 vertebra, initial encounter for open fracture
## 26975 Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with routine healing
## 26976 Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with delayed healing
## 26977 Unspecified fracture of T7-T8 vertebra, subsequent encounter for fracture with nonunion
## 26978 Unspecified fracture of T7-T8 vertebra, sequela
## 26979 Wedge compression fracture of T9-T10 vertebra, initial encounter for closed fracture
## 26980 Wedge compression fracture of T9-T10 vertebra, initial encounter for open fracture
## 26981 Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing
## 26982 Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing
## 26983 Wedge compression fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion
## 26984 Wedge compression fracture of T9-T10 vertebra, sequela
## 26985 Stable burst fracture of T9-T10 vertebra, initial encounter for closed fracture
## 26986 Stable burst fracture of T9-T10 vertebra, initial encounter for open fracture
## 26987 Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing
## 26988 Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing
## 26989 Stable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion
## 26990 Stable burst fracture of T9-T10 vertebra, sequela
## 26991 Unstable burst fracture of T9-T10 vertebra, initial encounter for closed fracture
## 26992 Unstable burst fracture of T9-T10 vertebra, initial encounter for open fracture
## 26993 Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing
## 26994 Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing
## 26995 Unstable burst fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion
## 26996 Unstable burst fracture of T9-T10 vertebra, sequela
## 26997 Other fracture of T9-T10 vertebra, initial encounter for closed fracture
## 26998 Other fracture of T9-T10 vertebra, initial encounter for open fracture
## 26999 Other fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing
## 27000 Other fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing
## 27001 Other fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion
## 27002 Other fracture of T9-T10 vertebra, sequela
## 27003 Unspecified fracture of T9-T10 vertebra, initial encounter for closed fracture
## 27004 Unspecified fracture of T9-T10 vertebra, initial encounter for open fracture
## 27005 Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with routine healing
## 27006 Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with delayed healing
## 27007 Unspecified fracture of T9-T10 vertebra, subsequent encounter for fracture with nonunion
## 27008 Unspecified fracture of T9-T10 vertebra, sequela
## 27009 Wedge compression fracture of T11-T12 vertebra, initial encounter for closed fracture
## 27010 Wedge compression fracture of T11-T12 vertebra, initial encounter for open fracture
## 27011 Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing
## 27012 Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing
## 27013 Wedge compression fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion
## 27014 Wedge compression fracture of T11-T12 vertebra, sequela
## 27015 Stable burst fracture of T11-T12 vertebra, initial encounter for closed fracture
## 27016 Stable burst fracture of T11-T12 vertebra, initial encounter for open fracture
## 27017 Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing
## 27018 Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing
## 27019 Stable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion
## 27020 Stable burst fracture of T11-T12 vertebra, sequela
## 27021 Unstable burst fracture of T11-T12 vertebra, initial encounter for closed fracture
## 27022 Unstable burst fracture of T11-T12 vertebra, initial encounter for open fracture
## 27023 Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing
## 27024 Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing
## 27025 Unstable burst fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion
## 27026 Unstable burst fracture of T11-T12 vertebra, sequela
## 27027 Other fracture of T11-T12 vertebra, initial encounter for closed fracture
## 27028 Other fracture of T11-T12 vertebra, initial encounter for open fracture
## 27029 Other fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing
## 27030 Other fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing
## 27031 Other fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion
## 27032 Other fracture of T11-T12 vertebra, sequela
## 27033 Unspecified fracture of T11-T12 vertebra, initial encounter for closed fracture
## 27034 Unspecified fracture of T11-T12 vertebra, initial encounter for open fracture
## 27035 Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with routine healing
## 27036 Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with delayed healing
## 27037 Unspecified fracture of T11-T12 vertebra, subsequent encounter for fracture with nonunion
## 27038 Unspecified fracture of T11-T12 vertebra, sequela
## 27039 Unspecified fracture of sternum, initial encounter for closed fracture
## 27040 Unspecified fracture of sternum, initial encounter for open fracture
## 27041 Unspecified fracture of sternum, subsequent encounter for fracture with routine healing
## 27042 Unspecified fracture of sternum, subsequent encounter for fracture with delayed healing
## 27043 Unspecified fracture of sternum, subsequent encounter for fracture with nonunion
## 27044 Unspecified fracture of sternum, sequela
## 27045 Fracture of manubrium, initial encounter for closed fracture
## 27046 Fracture of manubrium, initial encounter for open fracture
## 27047 Fracture of manubrium, subsequent encounter for fracture with routine healing
## 27048 Fracture of manubrium, subsequent encounter for fracture with delayed healing
## 27049 Fracture of manubrium, subsequent encounter for fracture with nonunion
## 27050 Fracture of manubrium, sequela
## 27051 Fracture of body of sternum, initial encounter for closed fracture
## 27052 Fracture of body of sternum, initial encounter for open fracture
## 27053 Fracture of body of sternum, subsequent encounter for fracture with routine healing
## 27054 Fracture of body of sternum, subsequent encounter for fracture with delayed healing
## 27055 Fracture of body of sternum, subsequent encounter for fracture with nonunion
## 27056 Fracture of body of sternum, sequela
## 27057 Sternal manubrial dissociation, initial encounter for closed fracture
## 27058 Sternal manubrial dissociation, initial encounter for open fracture
## 27059 Sternal manubrial dissociation, subsequent encounter for fracture with routine healing
## 27060 Sternal manubrial dissociation, subsequent encounter for fracture with delayed healing
## 27061 Sternal manubrial dissociation, subsequent encounter for fracture with nonunion
## 27062 Sternal manubrial dissociation, sequela
## 27063 Fracture of xiphoid process, initial encounter for closed fracture
## 27064 Fracture of xiphoid process, initial encounter for open fracture
## 27065 Fracture of xiphoid process, subsequent encounter for fracture with routine healing
## 27066 Fracture of xiphoid process, subsequent encounter for fracture with delayed healing
## 27067 Fracture of xiphoid process, subsequent encounter for fracture with nonunion
## 27068 Fracture of xiphoid process, sequela
## 27069 Fracture of one rib, right side, initial encounter for closed fracture
## 27070 Fracture of one rib, right side, initial encounter for open fracture
## 27071 Fracture of one rib, right side, subsequent encounter for fracture with routine healing
## 27072 Fracture of one rib, right side, subsequent encounter for fracture with delayed healing
## 27073 Fracture of one rib, right side, subsequent encounter for fracture with nonunion
## 27074 Fracture of one rib, right side, sequela
## 27075 Fracture of one rib, left side, initial encounter for closed fracture
## 27076 Fracture of one rib, left side, initial encounter for open fracture
## 27077 Fracture of one rib, left side, subsequent encounter for fracture with routine healing
## 27078 Fracture of one rib, left side, subsequent encounter for fracture with delayed healing
## 27079 Fracture of one rib, left side, subsequent encounter for fracture with nonunion
## 27080 Fracture of one rib, left side, sequela
## 27081 Fracture of one rib, unspecified side, initial encounter for closed fracture
## 27082 Fracture of one rib, unspecified side, initial encounter for open fracture
## 27083 Fracture of one rib, unspecified side, subsequent encounter for fracture with routine healing
## 27084 Fracture of one rib, unspecified side, subsequent encounter for fracture with delayed healing
## 27085 Fracture of one rib, unspecified side, subsequent encounter for fracture with nonunion
## 27086 Fracture of one rib, unspecified side, sequela
## 27087 Multiple fractures of ribs, right side, initial encounter for closed fracture
## 27088 Multiple fractures of ribs, right side, initial encounter for open fracture
## 27089 Multiple fractures of ribs, right side, subsequent encounter for fracture with routine healing
## 27090 Multiple fractures of ribs, right side, subsequent encounter for fracture with delayed healing
## 27091 Multiple fractures of ribs, right side, subsequent encounter for fracture with nonunion
## 27092 Multiple fractures of ribs, right side, sequela
## 27093 Multiple fractures of ribs, left side, initial encounter for closed fracture
## 27094 Multiple fractures of ribs, left side, initial encounter for open fracture
## 27095 Multiple fractures of ribs, left side, subsequent encounter for fracture with routine healing
## 27096 Multiple fractures of ribs, left side, subsequent encounter for fracture with delayed healing
## 27097 Multiple fractures of ribs, left side, subsequent encounter for fracture with nonunion
## 27098 Multiple fractures of ribs, left side, sequela
## 27099 Multiple fractures of ribs, bilateral, initial encounter for closed fracture
## 27100 Multiple fractures of ribs, bilateral, initial encounter for open fracture
## 27101 Multiple fractures of ribs, bilateral, subsequent encounter for fracture with routine healing
## 27102 Multiple fractures of ribs, bilateral, subsequent encounter for fracture with delayed healing
## 27103 Multiple fractures of ribs, bilateral, subsequent encounter for fracture with nonunion
## 27104 Multiple fractures of ribs, bilateral, sequela
## 27105 Multiple fractures of ribs, unspecified side, initial encounter for closed fracture
## 27106 Multiple fractures of ribs, unspecified side, initial encounter for open fracture
## 27107 Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with routine healing
## 27108 Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with delayed healing
## 27109 Multiple fractures of ribs, unspecified side, subsequent encounter for fracture with nonunion
## 27110 Multiple fractures of ribs, unspecified side, sequela
## 27111 Flail chest, initial encounter for closed fracture
## 27112 Flail chest, initial encounter for open fracture
## 27113 Flail chest, subsequent encounter for fracture with routine healing
## 27114 Flail chest, subsequent encounter for fracture with delayed healing
## 27115 Flail chest, subsequent encounter for fracture with nonunion
## 27116 Flail chest, sequela
## 27117 Fracture of bony thorax, part unspecified, initial encounter for closed fracture
## 27118 Fracture of bony thorax, part unspecified, initial encounter for open fracture
## 27119 Fracture of bony thorax, part unspecified, subsequent encounter for fracture with routine healing
## 27120 Fracture of bony thorax, part unspecified, subsequent encounter for fracture with delayed healing
## 27121 Fracture of bony thorax, part unspecified, subsequent encounter for fracture with nonunion
## 27122 Fracture of bony thorax, part unspecified, sequela
## 27123 Traumatic rupture of thoracic intervertebral disc, initial encounter
## 27124 Traumatic rupture of thoracic intervertebral disc, subsequent encounter
## 27125 Traumatic rupture of thoracic intervertebral disc, sequela
## 27126 Subluxation of unspecified thoracic vertebra, initial encounter
## 27127 Subluxation of unspecified thoracic vertebra, subsequent encounter
## 27128 Subluxation of unspecified thoracic vertebra, sequela
## 27129 Dislocation of unspecified thoracic vertebra, initial encounter
## 27130 Dislocation of unspecified thoracic vertebra, subsequent encounter
## 27131 Dislocation of unspecified thoracic vertebra, sequela
## 27132 Subluxation of T1/T2 thoracic vertebra, initial encounter
## 27133 Subluxation of T1/T2 thoracic vertebra, subsequent encounter
## 27134 Subluxation of T1/T2 thoracic vertebra, sequela
## 27135 Dislocation of T1/T2 thoracic vertebra, initial encounter
## 27136 Dislocation of T1/T2 thoracic vertebra, subsequent encounter
## 27137 Dislocation of T1/T2 thoracic vertebra, sequela
## 27138 Subluxation of T2/T3 thoracic vertebra, initial encounter
## 27139 Subluxation of T2/T3 thoracic vertebra, subsequent encounter
## 27140 Subluxation of T2/T3 thoracic vertebra, sequela
## 27141 Dislocation of T2/T3 thoracic vertebra, initial encounter
## 27142 Dislocation of T2/T3 thoracic vertebra, subsequent encounter
## 27143 Dislocation of T2/T3 thoracic vertebra, sequela
## 27144 Subluxation of T3/T4 thoracic vertebra, initial encounter
## 27145 Subluxation of T3/T4 thoracic vertebra, subsequent encounter
## 27146 Subluxation of T3/T4 thoracic vertebra, sequela
## 27147 Dislocation of T3/T4 thoracic vertebra, initial encounter
## 27148 Dislocation of T3/T4 thoracic vertebra, subsequent encounter
## 27149 Dislocation of T3/T4 thoracic vertebra, sequela
## 27150 Subluxation of T4/T5 thoracic vertebra, initial encounter
## 27151 Subluxation of T4/T5 thoracic vertebra, subsequent encounter
## 27152 Subluxation of T4/T5 thoracic vertebra, sequela
## 27153 Dislocation of T4/T5 thoracic vertebra, initial encounter
## 27154 Dislocation of T4/T5 thoracic vertebra, subsequent encounter
## 27155 Dislocation of T4/T5 thoracic vertebra, sequela
## 27156 Subluxation of T5/T6 thoracic vertebra, initial encounter
## 27157 Subluxation of T5/T6 thoracic vertebra, subsequent encounter
## 27158 Subluxation of T5/T6 thoracic vertebra, sequela
## 27159 Dislocation of T5/T6 thoracic vertebra, initial encounter
## 27160 Dislocation of T5/T6 thoracic vertebra, subsequent encounter
## 27161 Dislocation of T5/T6 thoracic vertebra, sequela
## 27162 Subluxation of T6/T7 thoracic vertebra, initial encounter
## 27163 Subluxation of T6/T7 thoracic vertebra, subsequent encounter
## 27164 Subluxation of T6/T7 thoracic vertebra, sequela
## 27165 Dislocation of T6/T7 thoracic vertebra, initial encounter
## 27166 Dislocation of T6/T7 thoracic vertebra, subsequent encounter
## 27167 Dislocation of T6/T7 thoracic vertebra, sequela
## 27168 Subluxation of T7/T8 thoracic vertebra, initial encounter
## 27169 Subluxation of T7/T8 thoracic vertebra, subsequent encounter
## 27170 Subluxation of T7/T8 thoracic vertebra, sequela
## 27171 Dislocation of T7/T8 thoracic vertebra, initial encounter
## 27172 Dislocation of T7/T8 thoracic vertebra, subsequent encounter
## 27173 Dislocation of T7/T8 thoracic vertebra, sequela
## 27174 Subluxation of T8/T9 thoracic vertebra, initial encounter
## 27175 Subluxation of T8/T9 thoracic vertebra, subsequent encounter
## 27176 Subluxation of T8/T9 thoracic vertebra, sequela
## 27177 Dislocation of T8/T9 thoracic vertebra, initial encounter
## 27178 Dislocation of T8/T9 thoracic vertebra, subsequent encounter
## 27179 Dislocation of T8/T9 thoracic vertebra, sequela
## 27180 Subluxation of T9/T10 thoracic vertebra, initial encounter
## 27181 Subluxation of T9/T10 thoracic vertebra, subsequent encounter
## 27182 Subluxation of T9/T10 thoracic vertebra, sequela
## 27183 Dislocation of T9/T10 thoracic vertebra, initial encounter
## 27184 Dislocation of T9/T10 thoracic vertebra, subsequent encounter
## 27185 Dislocation of T9/T10 thoracic vertebra, sequela
## 27186 Subluxation of T10/T11 thoracic vertebra, initial encounter
## 27187 Subluxation of T10/T11 thoracic vertebra, subsequent encounter
## 27188 Subluxation of T10/T11 thoracic vertebra, sequela
## 27189 Dislocation of T10/T11 thoracic vertebra, initial encounter
## 27190 Dislocation of T10/T11 thoracic vertebra, subsequent encounter
## 27191 Dislocation of T10/T11 thoracic vertebra, sequela
## 27192 Subluxation of T11/T12 thoracic vertebra, initial encounter
## 27193 Subluxation of T11/T12 thoracic vertebra, subsequent encounter
## 27194 Subluxation of T11/T12 thoracic vertebra, sequela
## 27195 Dislocation of T11/T12 thoracic vertebra, initial encounter
## 27196 Dislocation of T11/T12 thoracic vertebra, subsequent encounter
## 27197 Dislocation of T11/T12 thoracic vertebra, sequela
## 27198 Subluxation of T12/L1 thoracic vertebra, initial encounter
## 27199 Subluxation of T12/L1 thoracic vertebra, subsequent encounter
## 27200 Subluxation of T12/L1 thoracic vertebra, sequela
## 27201 Dislocation of T12/L1 thoracic vertebra, initial encounter
## 27202 Dislocation of T12/L1 thoracic vertebra, subsequent encounter
## 27203 Dislocation of T12/L1 thoracic vertebra, sequela
## 27204 Dislocation of unspecified part of thorax, initial encounter
## 27205 Dislocation of unspecified part of thorax, subsequent encounter
## 27206 Dislocation of unspecified part of thorax, sequela
## 27207 Dislocation of other parts of thorax, initial encounter
## 27208 Dislocation of other parts of thorax, subsequent encounter
## 27209 Dislocation of other parts of thorax, sequela
## 27210 Sprain of ligaments of thoracic spine, initial encounter
## 27211 Sprain of ligaments of thoracic spine, subsequent encounter
## 27212 Sprain of ligaments of thoracic spine, sequela
## 27213 Sprain of ribs, initial encounter
## 27214 Sprain of ribs, subsequent encounter
## 27215 Sprain of ribs, sequela
## 27216 Sprain of sternoclavicular (joint) (ligament), initial encounter
## 27217 Sprain of sternoclavicular (joint) (ligament), subsequent encounter
## 27218 Sprain of sternoclavicular (joint) (ligament), sequela
## 27219 Sprain of chondrosternal joint, initial encounter
## 27220 Sprain of chondrosternal joint, subsequent encounter
## 27221 Sprain of chondrosternal joint, sequela
## 27222 Other sprain of sternum, initial encounter
## 27223 Other sprain of sternum, subsequent encounter
## 27224 Other sprain of sternum, sequela
## 27225 Unspecified sprain of sternum, initial encounter
## 27226 Unspecified sprain of sternum, subsequent encounter
## 27227 Unspecified sprain of sternum, sequela
## 27228 Sprain of other specified parts of thorax, initial encounter
## 27229 Sprain of other specified parts of thorax, subsequent encounter
## 27230 Sprain of other specified parts of thorax, sequela
## 27231 Sprain of unspecified parts of thorax, initial encounter
## 27232 Sprain of unspecified parts of thorax, subsequent encounter
## 27233 Sprain of unspecified parts of thorax, sequela
## 27234 Concussion and edema of thoracic spinal cord, initial encounter
## 27235 Concussion and edema of thoracic spinal cord, subsequent encounter
## 27236 Concussion and edema of thoracic spinal cord, sequela
## 27237 Unspecified injury at T1 level of thoracic spinal cord, initial encounter
## 27238 Unspecified injury at T1 level of thoracic spinal cord, subsequent encounter
## 27239 Unspecified injury at T1 level of thoracic spinal cord, sequela
## 27240 Unspecified injury at T2-T6 level of thoracic spinal cord, initial encounter
## 27241 Unspecified injury at T2-T6 level of thoracic spinal cord, subsequent encounter
## 27242 Unspecified injury at T2-T6 level of thoracic spinal cord, sequela
## 27243 Unspecified injury at T7-T10 level of thoracic spinal cord, initial encounter
## 27244 Unspecified injury at T7-T10 level of thoracic spinal cord, subsequent encounter
## 27245 Unspecified injury at T7-T10 level of thoracic spinal cord, sequela
## 27246 Unspecified injury at T11-T12 level of thoracic spinal cord, initial encounter
## 27247 Unspecified injury at T11-T12 level of thoracic spinal cord, subsequent encounter
## 27248 Unspecified injury at T11-T12 level of thoracic spinal cord, sequela
## 27249 Unspecified injury at unspecified level of thoracic spinal cord, initial encounter
## 27250 Unspecified injury at unspecified level of thoracic spinal cord, subsequent encounter
## 27251 Unspecified injury at unspecified level of thoracic spinal cord, sequela
## 27252 Complete lesion at T1 level of thoracic spinal cord, initial encounter
## 27253 Complete lesion at T1 level of thoracic spinal cord, subsequent encounter
## 27254 Complete lesion at T1 level of thoracic spinal cord, sequela
## 27255 Complete lesion at T2-T6 level of thoracic spinal cord, initial encounter
## 27256 Complete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter
## 27257 Complete lesion at T2-T6 level of thoracic spinal cord, sequela
## 27258 Complete lesion at T7-T10 level of thoracic spinal cord, initial encounter
## 27259 Complete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter
## 27260 Complete lesion at T7-T10 level of thoracic spinal cord, sequela
## 27261 Complete lesion at T11-T12 level of thoracic spinal cord, initial encounter
## 27262 Complete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter
## 27263 Complete lesion at T11-T12 level of thoracic spinal cord, sequela
## 27264 Complete lesion at unspecified level of thoracic spinal cord, initial encounter
## 27265 Complete lesion at unspecified level of thoracic spinal cord, subsequent encounter
## 27266 Complete lesion at unspecified level of thoracic spinal cord, sequela
## 27267 Anterior cord syndrome at T1 level of thoracic spinal cord, initial encounter
## 27268 Anterior cord syndrome at T1 level of thoracic spinal cord, subsequent encounter
## 27269 Anterior cord syndrome at T1 level of thoracic spinal cord, sequela
## 27270 Anterior cord syndrome at T2-T6 level of thoracic spinal cord, initial encounter
## 27271 Anterior cord syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter
## 27272 Anterior cord syndrome at T2-T6 level of thoracic spinal cord, sequela
## 27273 Anterior cord syndrome at T7-T10 level of thoracic spinal cord, initial encounter
## 27274 Anterior cord syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter
## 27275 Anterior cord syndrome at T7-T10 level of thoracic spinal cord, sequela
## 27276 Anterior cord syndrome at T11-T12 level of thoracic spinal cord, initial encounter
## 27277 Anterior cord syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter
## 27278 Anterior cord syndrome at T11-T12 level of thoracic spinal cord, sequela
## 27279 Anterior cord syndrome at unspecified level of thoracic spinal cord, initial encounter
## 27280 Anterior cord syndrome at unspecified level of thoracic spinal cord, subsequent encounter
## 27281 Anterior cord syndrome at unspecified level of thoracic spinal cord, sequela
## 27282 Brown-Sequard syndrome at T1 level of thoracic spinal cord, initial encounter
## 27283 Brown-Sequard syndrome at T1 level of thoracic spinal cord, subsequent encounter
## 27284 Brown-Sequard syndrome at T1 level of thoracic spinal cord, sequela
## 27285 Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, initial encounter
## 27286 Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, subsequent encounter
## 27287 Brown-Sequard syndrome at T2-T6 level of thoracic spinal cord, sequela
## 27288 Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, initial encounter
## 27289 Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, subsequent encounter
## 27290 Brown-Sequard syndrome at T7-T10 level of thoracic spinal cord, sequela
## 27291 Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, initial encounter
## 27292 Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, subsequent encounter
## 27293 Brown-Sequard syndrome at T11-T12 level of thoracic spinal cord, sequela
## 27294 Brown-Sequard syndrome at unspecified level of thoracic spinal cord, initial encounter
## 27295 Brown-Sequard syndrome at unspecified level of thoracic spinal cord, subsequent encounter
## 27296 Brown-Sequard syndrome at unspecified level of thoracic spinal cord, sequela
## 27297 Other incomplete lesion at T1 level of thoracic spinal cord, initial encounter
## 27298 Other incomplete lesion at T1 level of thoracic spinal cord, subsequent encounter
## 27299 Other incomplete lesion at T1 level of thoracic spinal cord, sequela
## 27300 Other incomplete lesion at T2-T6 level of thoracic spinal cord, initial encounter
## 27301 Other incomplete lesion at T2-T6 level of thoracic spinal cord, subsequent encounter
## 27302 Other incomplete lesion at T2-T6 level of thoracic spinal cord, sequela
## 27303 Other incomplete lesion at T7-T10 level of thoracic spinal cord, initial encounter
## 27304 Other incomplete lesion at T7-T10 level of thoracic spinal cord, subsequent encounter
## 27305 Other incomplete lesion at T7-T10 level of thoracic spinal cord, sequela
## 27306 Other incomplete lesion at T11-T12 level of thoracic spinal cord, initial encounter
## 27307 Other incomplete lesion at T11-T12 level of thoracic spinal cord, subsequent encounter
## 27308 Other incomplete lesion at T11-T12 level of thoracic spinal cord, sequela
## 27309 Other incomplete lesion at unspecified level of thoracic spinal cord, initial encounter
## 27310 Other incomplete lesion at unspecified level of thoracic spinal cord, subsequent encounter
## 27311 Other incomplete lesion at unspecified level of thoracic spinal cord, sequela
## 27312 Injury of nerve root of thoracic spine, initial encounter
## 27313 Injury of nerve root of thoracic spine, subsequent encounter
## 27314 Injury of nerve root of thoracic spine, sequela
## 27315 Injury of peripheral nerves of thorax, initial encounter
## 27316 Injury of peripheral nerves of thorax, subsequent encounter
## 27317 Injury of peripheral nerves of thorax, sequela
## 27318 Injury of thoracic sympathetic nervous system, initial encounter
## 27319 Injury of thoracic sympathetic nervous system, subsequent encounter
## 27320 Injury of thoracic sympathetic nervous system, sequela
## 27321 Injury of other specified nerves of thorax, initial encounter
## 27322 Injury of other specified nerves of thorax, subsequent encounter
## 27323 Injury of other specified nerves of thorax, sequela
## 27324 Injury of unspecified nerve of thorax, initial encounter
## 27325 Injury of unspecified nerve of thorax, subsequent encounter
## 27326 Injury of unspecified nerve of thorax, sequela
## 27327 Unspecified injury of thoracic aorta, initial encounter
## 27328 Unspecified injury of thoracic aorta, subsequent encounter
## 27329 Unspecified injury of thoracic aorta, sequela
## 27330 Minor laceration of thoracic aorta, initial encounter
## 27331 Minor laceration of thoracic aorta, subsequent encounter
## 27332 Minor laceration of thoracic aorta, sequela
## 27333 Major laceration of thoracic aorta, initial encounter
## 27334 Major laceration of thoracic aorta, subsequent encounter
## 27335 Major laceration of thoracic aorta, sequela
## 27336 Other specified injury of thoracic aorta, initial encounter
## 27337 Other specified injury of thoracic aorta, subsequent encounter
## 27338 Other specified injury of thoracic aorta, sequela
## 27339 Unspecified injury of right innominate or subclavian artery, initial encounter
## 27340 Unspecified injury of right innominate or subclavian artery, subsequent encounter
## 27341 Unspecified injury of right innominate or subclavian artery, sequela
## 27342 Unspecified injury of left innominate or subclavian artery, initial encounter
## 27343 Unspecified injury of left innominate or subclavian artery, subsequent encounter
## 27344 Unspecified injury of left innominate or subclavian artery, sequela
## 27345 Unspecified injury of unspecified innominate or subclavian artery, initial encounter
## 27346 Unspecified injury of unspecified innominate or subclavian artery, subsequent encounter
## 27347 Unspecified injury of unspecified innominate or subclavian artery, sequela
## 27348 Minor laceration of right innominate or subclavian artery, initial encounter
## 27349 Minor laceration of right innominate or subclavian artery, subsequent encounter
## 27350 Minor laceration of right innominate or subclavian artery, sequela
## 27351 Minor laceration of left innominate or subclavian artery, initial encounter
## 27352 Minor laceration of left innominate or subclavian artery, subsequent encounter
## 27353 Minor laceration of left innominate or subclavian artery, sequela
## 27354 Minor laceration of unspecified innominate or subclavian artery, initial encounter
## 27355 Minor laceration of unspecified innominate or subclavian artery, subsequent encounter
## 27356 Minor laceration of unspecified innominate or subclavian artery, sequela
## 27357 Major laceration of right innominate or subclavian artery, initial encounter
## 27358 Major laceration of right innominate or subclavian artery, subsequent encounter
## 27359 Major laceration of right innominate or subclavian artery, sequela
## 27360 Major laceration of left innominate or subclavian artery, initial encounter
## 27361 Major laceration of left innominate or subclavian artery, subsequent encounter
## 27362 Major laceration of left innominate or subclavian artery, sequela
## 27363 Major laceration of unspecified innominate or subclavian artery, initial encounter
## 27364 Major laceration of unspecified innominate or subclavian artery, subsequent encounter
## 27365 Major laceration of unspecified innominate or subclavian artery, sequela
## 27366 Other specified injury of right innominate or subclavian artery, initial encounter
## 27367 Other specified injury of right innominate or subclavian artery, subsequent encounter
## 27368 Other specified injury of right innominate or subclavian artery, sequela
## 27369 Other specified injury of left innominate or subclavian artery, initial encounter
## 27370 Other specified injury of left innominate or subclavian artery, subsequent encounter
## 27371 Other specified injury of left innominate or subclavian artery, sequela
## 27372 Other specified injury of unspecified innominate or subclavian artery, initial encounter
## 27373 Other specified injury of unspecified innominate or subclavian artery, subsequent encounter
## 27374 Other specified injury of unspecified innominate or subclavian artery, sequela
## 27375 Unspecified injury of superior vena cava, initial encounter
## 27376 Unspecified injury of superior vena cava, subsequent encounter
## 27377 Unspecified injury of superior vena cava, sequela
## 27378 Minor laceration of superior vena cava, initial encounter
## 27379 Minor laceration of superior vena cava, subsequent encounter
## 27380 Minor laceration of superior vena cava, sequela
## 27381 Major laceration of superior vena cava, initial encounter
## 27382 Major laceration of superior vena cava, subsequent encounter
## 27383 Major laceration of superior vena cava, sequela
## 27384 Other specified injury of superior vena cava, initial encounter
## 27385 Other specified injury of superior vena cava, subsequent encounter
## 27386 Other specified injury of superior vena cava, sequela
## 27387 Unspecified injury of right innominate or subclavian vein, initial encounter
## 27388 Unspecified injury of right innominate or subclavian vein, subsequent encounter
## 27389 Unspecified injury of right innominate or subclavian vein, sequela
## 27390 Unspecified injury of left innominate or subclavian vein, initial encounter
## 27391 Unspecified injury of left innominate or subclavian vein, subsequent encounter
## 27392 Unspecified injury of left innominate or subclavian vein, sequela
## 27393 Unspecified injury of unspecified innominate or subclavian vein, initial encounter
## 27394 Unspecified injury of unspecified innominate or subclavian vein, subsequent encounter
## 27395 Unspecified injury of unspecified innominate or subclavian vein, sequela
## 27396 Minor laceration of right innominate or subclavian vein, initial encounter
## 27397 Minor laceration of right innominate or subclavian vein, subsequent encounter
## 27398 Minor laceration of right innominate or subclavian vein, sequela
## 27399 Minor laceration of left innominate or subclavian vein, initial encounter
## 27400 Minor laceration of left innominate or subclavian vein, subsequent encounter
## 27401 Minor laceration of left innominate or subclavian vein, sequela
## 27402 Minor laceration of unspecified innominate or subclavian vein, initial encounter
## 27403 Minor laceration of unspecified innominate or subclavian vein, subsequent encounter
## 27404 Minor laceration of unspecified innominate or subclavian vein, sequela
## 27405 Major laceration of right innominate or subclavian vein, initial encounter
## 27406 Major laceration of right innominate or subclavian vein, subsequent encounter
## 27407 Major laceration of right innominate or subclavian vein, sequela
## 27408 Major laceration of left innominate or subclavian vein, initial encounter
## 27409 Major laceration of left innominate or subclavian vein, subsequent encounter
## 27410 Major laceration of left innominate or subclavian vein, sequela
## 27411 Major laceration of unspecified innominate or subclavian vein, initial encounter
## 27412 Major laceration of unspecified innominate or subclavian vein, subsequent encounter
## 27413 Major laceration of unspecified innominate or subclavian vein, sequela
## 27414 Other specified injury of right innominate or subclavian vein, initial encounter
## 27415 Other specified injury of right innominate or subclavian vein, subsequent encounter
## 27416 Other specified injury of right innominate or subclavian vein, sequela
## 27417 Other specified injury of left innominate or subclavian vein, initial encounter
## 27418 Other specified injury of left innominate or subclavian vein, subsequent encounter
## 27419 Other specified injury of left innominate or subclavian vein, sequela
## 27420 Other specified injury of unspecified innominate or subclavian vein, initial encounter
## 27421 Other specified injury of unspecified innominate or subclavian vein, subsequent encounter
## 27422 Other specified injury of unspecified innominate or subclavian vein, sequela
## 27423 Unspecified injury of right pulmonary blood vessels, initial encounter
## 27424 Unspecified injury of right pulmonary blood vessels, subsequent encounter
## 27425 Unspecified injury of right pulmonary blood vessels, sequela
## 27426 Unspecified injury of left pulmonary blood vessels, initial encounter
## 27427 Unspecified injury of left pulmonary blood vessels, subsequent encounter
## 27428 Unspecified injury of left pulmonary blood vessels, sequela
## 27429 Unspecified injury of unspecified pulmonary blood vessels, initial encounter
## 27430 Unspecified injury of unspecified pulmonary blood vessels, subsequent encounter
## 27431 Unspecified injury of unspecified pulmonary blood vessels, sequela
## 27432 Minor laceration of right pulmonary blood vessels, initial encounter
## 27433 Minor laceration of right pulmonary blood vessels, subsequent encounter
## 27434 Minor laceration of right pulmonary blood vessels, sequela
## 27435 Minor laceration of left pulmonary blood vessels, initial encounter
## 27436 Minor laceration of left pulmonary blood vessels, subsequent encounter
## 27437 Minor laceration of left pulmonary blood vessels, sequela
## 27438 Minor laceration of unspecified pulmonary blood vessels, initial encounter
## 27439 Minor laceration of unspecified pulmonary blood vessels, subsequent encounter
## 27440 Minor laceration of unspecified pulmonary blood vessels, sequela
## 27441 Major laceration of right pulmonary blood vessels, initial encounter
## 27442 Major laceration of right pulmonary blood vessels, subsequent encounter
## 27443 Major laceration of right pulmonary blood vessels, sequela
## 27444 Major laceration of left pulmonary blood vessels, initial encounter
## 27445 Major laceration of left pulmonary blood vessels, subsequent encounter
## 27446 Major laceration of left pulmonary blood vessels, sequela
## 27447 Major laceration of unspecified pulmonary blood vessels, initial encounter
## 27448 Major laceration of unspecified pulmonary blood vessels, subsequent encounter
## 27449 Major laceration of unspecified pulmonary blood vessels, sequela
## 27450 Other specified injury of right pulmonary blood vessels, initial encounter
## 27451 Other specified injury of right pulmonary blood vessels, subsequent encounter
## 27452 Other specified injury of right pulmonary blood vessels, sequela
## 27453 Other specified injury of left pulmonary blood vessels, initial encounter
## 27454 Other specified injury of left pulmonary blood vessels, subsequent encounter
## 27455 Other specified injury of left pulmonary blood vessels, sequela
## 27456 Other specified injury of unspecified pulmonary blood vessels, initial encounter
## 27457 Other specified injury of unspecified pulmonary blood vessels, subsequent encounter
## 27458 Other specified injury of unspecified pulmonary blood vessels, sequela
## 27459 Unspecified injury of intercostal blood vessels, right side, initial encounter
## 27460 Unspecified injury of intercostal blood vessels, right side, subsequent encounter
## 27461 Unspecified injury of intercostal blood vessels, right side, sequela
## 27462 Unspecified injury of intercostal blood vessels, left side, initial encounter
## 27463 Unspecified injury of intercostal blood vessels, left side, subsequent encounter
## 27464 Unspecified injury of intercostal blood vessels, left side, sequela
## 27465 Unspecified injury of intercostal blood vessels, unspecified side, initial encounter
## 27466 Unspecified injury of intercostal blood vessels, unspecified side, subsequent encounter
## 27467 Unspecified injury of intercostal blood vessels, unspecified side, sequela
## 27468 Laceration of intercostal blood vessels, right side, initial encounter
## 27469 Laceration of intercostal blood vessels, right side, subsequent encounter
## 27470 Laceration of intercostal blood vessels, right side, sequela
## 27471 Laceration of intercostal blood vessels, left side, initial encounter
## 27472 Laceration of intercostal blood vessels, left side, subsequent encounter
## 27473 Laceration of intercostal blood vessels, left side, sequela
## 27474 Laceration of intercostal blood vessels, unspecified side, initial encounter
## 27475 Laceration of intercostal blood vessels, unspecified side, subsequent encounter
## 27476 Laceration of intercostal blood vessels, unspecified side, sequela
## 27477 Other specified injury of intercostal blood vessels, right side, initial encounter
## 27478 Other specified injury of intercostal blood vessels, right side, subsequent encounter
## 27479 Other specified injury of intercostal blood vessels, right side, sequela
## 27480 Other specified injury of intercostal blood vessels, left side, initial encounter
## 27481 Other specified injury of intercostal blood vessels, left side, subsequent encounter
## 27482 Other specified injury of intercostal blood vessels, left side, sequela
## 27483 Other specified injury of intercostal blood vessels, unspecified side, initial encounter
## 27484 Other specified injury of intercostal blood vessels, unspecified side, subsequent encounter
## 27485 Other specified injury of intercostal blood vessels, unspecified side, sequela
## 27486 Unspecified injury of other blood vessels of thorax, right side, initial encounter
## 27487 Unspecified injury of other blood vessels of thorax, right side, subsequent encounter
## 27488 Unspecified injury of other blood vessels of thorax, right side, sequela
## 27489 Unspecified injury of other blood vessels of thorax, left side, initial encounter
## 27490 Unspecified injury of other blood vessels of thorax, left side, subsequent encounter
## 27491 Unspecified injury of other blood vessels of thorax, left side, sequela
## 27492 Unspecified injury of other blood vessels of thorax, unspecified side, initial encounter
## 27493 Unspecified injury of other blood vessels of thorax, unspecified side, subsequent encounter
## 27494 Unspecified injury of other blood vessels of thorax, unspecified side, sequela
## 27495 Laceration of other blood vessels of thorax, right side, initial encounter
## 27496 Laceration of other blood vessels of thorax, right side, subsequent encounter
## 27497 Laceration of other blood vessels of thorax, right side, sequela
## 27498 Laceration of other blood vessels of thorax, left side, initial encounter
## 27499 Laceration of other blood vessels of thorax, left side, subsequent encounter
## 27500 Laceration of other blood vessels of thorax, left side, sequela
## 27501 Laceration of other blood vessels of thorax, unspecified side, initial encounter
## 27502 Laceration of other blood vessels of thorax, unspecified side, subsequent encounter
## 27503 Laceration of other blood vessels of thorax, unspecified side, sequela
## 27504 Other specified injury of other blood vessels of thorax, right side, initial encounter
## 27505 Other specified injury of other blood vessels of thorax, right side, subsequent encounter
## 27506 Other specified injury of other blood vessels of thorax, right side, sequela
## 27507 Other specified injury of other blood vessels of thorax, left side, initial encounter
## 27508 Other specified injury of other blood vessels of thorax, left side, subsequent encounter
## 27509 Other specified injury of other blood vessels of thorax, left side, sequela
## 27510 Other specified injury of other blood vessels of thorax, unspecified side, initial encounter
## 27511 Other specified injury of other blood vessels of thorax, unspecified side, subsequent encounter
## 27512 Other specified injury of other blood vessels of thorax, unspecified side, sequela
## 27513 Unspecified injury of unspecified blood vessel of thorax, initial encounter
## 27514 Unspecified injury of unspecified blood vessel of thorax, subsequent encounter
## 27515 Unspecified injury of unspecified blood vessel of thorax, sequela
## 27516 Laceration of unspecified blood vessel of thorax, initial encounter
## 27517 Laceration of unspecified blood vessel of thorax, subsequent encounter
## 27518 Laceration of unspecified blood vessel of thorax, sequela
## 27519 Other specified injury of unspecified blood vessel of thorax, initial encounter
## 27520 Other specified injury of unspecified blood vessel of thorax, subsequent encounter
## 27521 Other specified injury of unspecified blood vessel of thorax, sequela
## 27522 Unspecified injury of heart with hemopericardium, initial encounter
## 27523 Unspecified injury of heart with hemopericardium, subsequent encounter
## 27524 Unspecified injury of heart with hemopericardium, sequela
## 27525 Contusion of heart with hemopericardium, initial encounter
## 27526 Contusion of heart with hemopericardium, subsequent encounter
## 27527 Contusion of heart with hemopericardium, sequela
## 27528 Mild laceration of heart with hemopericardium, initial encounter
## 27529 Mild laceration of heart with hemopericardium, subsequent encounter
## 27530 Mild laceration of heart with hemopericardium, sequela
## 27531 Moderate laceration of heart with hemopericardium, initial encounter
## 27532 Moderate laceration of heart with hemopericardium, subsequent encounter
## 27533 Moderate laceration of heart with hemopericardium, sequela
## 27534 Major laceration of heart with hemopericardium, initial encounter
## 27535 Major laceration of heart with hemopericardium, subsequent encounter
## 27536 Major laceration of heart with hemopericardium, sequela
## 27537 Other injury of heart with hemopericardium, initial encounter
## 27538 Other injury of heart with hemopericardium, subsequent encounter
## 27539 Other injury of heart with hemopericardium, sequela
## 27540 Unspecified injury of heart without hemopericardium, initial encounter
## 27541 Unspecified injury of heart without hemopericardium, subsequent encounter
## 27542 Unspecified injury of heart without hemopericardium, sequela
## 27543 Contusion of heart without hemopericardium, initial encounter
## 27544 Contusion of heart without hemopericardium, subsequent encounter
## 27545 Contusion of heart without hemopericardium, sequela
## 27546 Laceration of heart without hemopericardium, initial encounter
## 27547 Laceration of heart without hemopericardium, subsequent encounter
## 27548 Laceration of heart without hemopericardium, sequela
## 27549 Other injury of heart without hemopericardium, initial encounter
## 27550 Other injury of heart without hemopericardium, subsequent encounter
## 27551 Other injury of heart without hemopericardium, sequela
## 27552 Unspecified injury of heart, unspecified with or without hemopericardium, initial encounter
## 27553 Unspecified injury of heart, unspecified with or without hemopericardium, subsequent encounter
## 27554 Unspecified injury of heart, unspecified with or without hemopericardium, sequela
## 27555 Contusion of heart, unspecified with or without hemopericardium, initial encounter
## 27556 Contusion of heart, unspecified with or without hemopericardium, subsequent encounter
## 27557 Contusion of heart, unspecified with or without hemopericardium, sequela
## 27558 Laceration of heart, unspecified with or without hemopericardium, initial encounter
## 27559 Laceration of heart, unspecified with or without hemopericardium, subsequent encounter
## 27560 Laceration of heart, unspecified with or without hemopericardium, sequela
## 27561 Other injury of heart, unspecified with or without hemopericardium, initial encounter
## 27562 Other injury of heart, unspecified with or without hemopericardium, subsequent encounter
## 27563 Other injury of heart, unspecified with or without hemopericardium, sequela
## 27564 Traumatic pneumothorax, initial encounter
## 27565 Traumatic pneumothorax, subsequent encounter
## 27566 Traumatic pneumothorax, sequela
## 27567 Traumatic hemothorax, initial encounter
## 27568 Traumatic hemothorax, subsequent encounter
## 27569 Traumatic hemothorax, sequela
## 27570 Traumatic hemopneumothorax, initial encounter
## 27571 Traumatic hemopneumothorax, subsequent encounter
## 27572 Traumatic hemopneumothorax, sequela
## 27573 Unspecified injury of lung, unilateral, initial encounter
## 27574 Unspecified injury of lung, unilateral, subsequent encounter
## 27575 Unspecified injury of lung, unilateral, sequela
## 27576 Unspecified injury of lung, bilateral, initial encounter
## 27577 Unspecified injury of lung, bilateral, subsequent encounter
## 27578 Unspecified injury of lung, bilateral, sequela
## 27579 Unspecified injury of lung, unspecified, initial encounter
## 27580 Unspecified injury of lung, unspecified, subsequent encounter
## 27581 Unspecified injury of lung, unspecified, sequela
## 27582 Primary blast injury of lung, unilateral, initial encounter
## 27583 Primary blast injury of lung, unilateral, subsequent encounter
## 27584 Primary blast injury of lung, unilateral, sequela
## 27585 Primary blast injury of lung, bilateral, initial encounter
## 27586 Primary blast injury of lung, bilateral, subsequent encounter
## 27587 Primary blast injury of lung, bilateral, sequela
## 27588 Primary blast injury of lung, unspecified, initial encounter
## 27589 Primary blast injury of lung, unspecified, subsequent encounter
## 27590 Primary blast injury of lung, unspecified, sequela
## 27591 Contusion of lung, unilateral, initial encounter
## 27592 Contusion of lung, unilateral, subsequent encounter
## 27593 Contusion of lung, unilateral, sequela
## 27594 Contusion of lung, bilateral, initial encounter
## 27595 Contusion of lung, bilateral, subsequent encounter
## 27596 Contusion of lung, bilateral, sequela
## 27597 Contusion of lung, unspecified, initial encounter
## 27598 Contusion of lung, unspecified, subsequent encounter
## 27599 Contusion of lung, unspecified, sequela
## 27600 Laceration of lung, unilateral, initial encounter
## 27601 Laceration of lung, unilateral, subsequent encounter
## 27602 Laceration of lung, unilateral, sequela
## 27603 Laceration of lung, bilateral, initial encounter
## 27604 Laceration of lung, bilateral, subsequent encounter
## 27605 Laceration of lung, bilateral, sequela
## 27606 Laceration of lung, unspecified, initial encounter
## 27607 Laceration of lung, unspecified, subsequent encounter
## 27608 Laceration of lung, unspecified, sequela
## 27609 Other injuries of lung, unilateral, initial encounter
## 27610 Other injuries of lung, unilateral, subsequent encounter
## 27611 Other injuries of lung, unilateral, sequela
## 27612 Other injuries of lung, bilateral, initial encounter
## 27613 Other injuries of lung, bilateral, subsequent encounter
## 27614 Other injuries of lung, bilateral, sequela
## 27615 Other injuries of lung, unspecified, initial encounter
## 27616 Other injuries of lung, unspecified, subsequent encounter
## 27617 Other injuries of lung, unspecified, sequela
## 27618 Unspecified injury of bronchus, unilateral, initial encounter
## 27619 Unspecified injury of bronchus, unilateral, subsequent encounter
## 27620 Unspecified injury of bronchus, unilateral, sequela
## 27621 Unspecified injury of bronchus, bilateral, initial encounter
## 27622 Unspecified injury of bronchus, bilateral, subsequent encounter
## 27623 Unspecified injury of bronchus, bilateral, sequela
## 27624 Unspecified injury of bronchus, unspecified, initial encounter
## 27625 Unspecified injury of bronchus, unspecified, subsequent encounter
## 27626 Unspecified injury of bronchus, unspecified, sequela
## 27627 Primary blast injury of bronchus, unilateral, initial encounter
## 27628 Primary blast injury of bronchus, unilateral, subsequent encounter
## 27629 Primary blast injury of bronchus, unilateral, sequela
## 27630 Primary blast injury of bronchus, bilateral, initial encounter
## 27631 Primary blast injury of bronchus, bilateral, subsequent encounter
## 27632 Primary blast injury of bronchus, bilateral, sequela
## 27633 Primary blast injury of bronchus, unspecified, initial encounter
## 27634 Primary blast injury of bronchus, unspecified, subsequent encounter
## 27635 Primary blast injury of bronchus, unspecified, sequela
## 27636 Contusion of bronchus, unilateral, initial encounter
## 27637 Contusion of bronchus, unilateral, subsequent encounter
## 27638 Contusion of bronchus, unilateral, sequela
## 27639 Contusion of bronchus, bilateral, initial encounter
## 27640 Contusion of bronchus, bilateral, subsequent encounter
## 27641 Contusion of bronchus, bilateral, sequela
## 27642 Contusion of bronchus, unspecified, initial encounter
## 27643 Contusion of bronchus, unspecified, subsequent encounter
## 27644 Contusion of bronchus, unspecified, sequela
## 27645 Laceration of bronchus, unilateral, initial encounter
## 27646 Laceration of bronchus, unilateral, subsequent encounter
## 27647 Laceration of bronchus, unilateral, sequela
## 27648 Laceration of bronchus, bilateral, initial encounter
## 27649 Laceration of bronchus, bilateral, subsequent encounter
## 27650 Laceration of bronchus, bilateral, sequela
## 27651 Laceration of bronchus, unspecified, initial encounter
## 27652 Laceration of bronchus, unspecified, subsequent encounter
## 27653 Laceration of bronchus, unspecified, sequela
## 27654 Other injury of bronchus, unilateral, initial encounter
## 27655 Other injury of bronchus, unilateral, subsequent encounter
## 27656 Other injury of bronchus, unilateral, sequela
## 27657 Other injury of bronchus, bilateral, initial encounter
## 27658 Other injury of bronchus, bilateral, subsequent encounter
## 27659 Other injury of bronchus, bilateral, sequela
## 27660 Other injury of bronchus, unspecified, initial encounter
## 27661 Other injury of bronchus, unspecified, subsequent encounter
## 27662 Other injury of bronchus, unspecified, sequela
## 27663 Unspecified injury of thoracic trachea, initial encounter
## 27664 Unspecified injury of thoracic trachea, subsequent encounter
## 27665 Unspecified injury of thoracic trachea, sequela
## 27666 Primary blast injury of thoracic trachea, initial encounter
## 27667 Primary blast injury of thoracic trachea, subsequent encounter
## 27668 Primary blast injury of thoracic trachea, sequela
## 27669 Contusion of thoracic trachea, initial encounter
## 27670 Contusion of thoracic trachea, subsequent encounter
## 27671 Contusion of thoracic trachea, sequela
## 27672 Laceration of thoracic trachea, initial encounter
## 27673 Laceration of thoracic trachea, subsequent encounter
## 27674 Laceration of thoracic trachea, sequela
## 27675 Other injury of thoracic trachea, initial encounter
## 27676 Other injury of thoracic trachea, subsequent encounter
## 27677 Other injury of thoracic trachea, sequela
## 27678 Unspecified injury of pleura, initial encounter
## 27679 Unspecified injury of pleura, subsequent encounter
## 27680 Unspecified injury of pleura, sequela
## 27681 Laceration of pleura, initial encounter
## 27682 Laceration of pleura, subsequent encounter
## 27683 Laceration of pleura, sequela
## 27684 Other injury of pleura, initial encounter
## 27685 Other injury of pleura, subsequent encounter
## 27686 Other injury of pleura, sequela
## 27687 Contusion of diaphragm, initial encounter
## 27688 Contusion of diaphragm, subsequent encounter
## 27689 Contusion of diaphragm, sequela
## 27690 Laceration of diaphragm, initial encounter
## 27691 Laceration of diaphragm, subsequent encounter
## 27692 Laceration of diaphragm, sequela
## 27693 Other injury of diaphragm, initial encounter
## 27694 Other injury of diaphragm, subsequent encounter
## 27695 Other injury of diaphragm, sequela
## 27696 Unspecified injury of diaphragm, initial encounter
## 27697 Unspecified injury of diaphragm, subsequent encounter
## 27698 Unspecified injury of diaphragm, sequela
## 27699 Contusion of esophagus (thoracic part), initial encounter
## 27700 Contusion of esophagus (thoracic part), subsequent encounter
## 27701 Contusion of esophagus (thoracic part), sequela
## 27702 Laceration of esophagus (thoracic part), initial encounter
## 27703 Laceration of esophagus (thoracic part), subsequent encounter
## 27704 Laceration of esophagus (thoracic part), sequela
## 27705 Other injury of esophagus (thoracic part), initial encounter
## 27706 Other injury of esophagus (thoracic part), subsequent encounter
## 27707 Other injury of esophagus (thoracic part), sequela
## 27708 Unspecified injury of esophagus (thoracic part), initial encounter
## 27709 Unspecified injury of esophagus (thoracic part), subsequent encounter
## 27710 Unspecified injury of esophagus (thoracic part), sequela
## 27711 Contusion of other specified intrathoracic organs, initial encounter
## 27712 Contusion of other specified intrathoracic organs, subsequent encounter
## 27713 Contusion of other specified intrathoracic organs, sequela
## 27714 Laceration of other specified intrathoracic organs, initial encounter
## 27715 Laceration of other specified intrathoracic organs, subsequent encounter
## 27716 Laceration of other specified intrathoracic organs, sequela
## 27717 Other injury of other specified intrathoracic organs, initial encounter
## 27718 Other injury of other specified intrathoracic organs, subsequent encounter
## 27719 Other injury of other specified intrathoracic organs, sequela
## 27720 Unspecified injury of other specified intrathoracic organs, initial encounter
## 27721 Unspecified injury of other specified intrathoracic organs, subsequent encounter
## 27722 Unspecified injury of other specified intrathoracic organs, sequela
## 27723 Injury of unspecified intrathoracic organ, initial encounter
## 27724 Injury of unspecified intrathoracic organ, subsequent encounter
## 27725 Injury of unspecified intrathoracic organ, sequela
## 27726 Crushed chest, initial encounter
## 27727 Crushed chest, subsequent encounter
## 27728 Crushed chest, sequela
## 27729 Traumatic amputation (partial) of part of thorax, except breast, initial encounter
## 27730 Traumatic amputation (partial) of part of thorax, except breast, subsequent encounter
## 27731 Traumatic amputation (partial) of part of thorax, except breast, sequela
## 27732 Complete traumatic amputation of right breast, initial encounter
## 27733 Complete traumatic amputation of right breast, subsequent encounter
## 27734 Complete traumatic amputation of right breast, sequela
## 27735 Complete traumatic amputation of left breast, initial encounter
## 27736 Complete traumatic amputation of left breast, subsequent encounter
## 27737 Complete traumatic amputation of left breast, sequela
## 27738 Complete traumatic amputation of unspecified breast, initial encounter
## 27739 Complete traumatic amputation of unspecified breast, subsequent encounter
## 27740 Complete traumatic amputation of unspecified breast, sequela
## 27741 Partial traumatic amputation of right breast, initial encounter
## 27742 Partial traumatic amputation of right breast, subsequent encounter
## 27743 Partial traumatic amputation of right breast, sequela
## 27744 Partial traumatic amputation of left breast, initial encounter
## 27745 Partial traumatic amputation of left breast, subsequent encounter
## 27746 Partial traumatic amputation of left breast, sequela
## 27747 Partial traumatic amputation of unspecified breast, initial encounter
## 27748 Partial traumatic amputation of unspecified breast, subsequent encounter
## 27749 Partial traumatic amputation of unspecified breast, sequela
## 27750 Unspecified injury of muscle and tendon of front wall of thorax, initial encounter
## 27751 Unspecified injury of muscle and tendon of front wall of thorax, subsequent encounter
## 27752 Unspecified injury of muscle and tendon of front wall of thorax, sequela
## 27753 Unspecified injury of muscle and tendon of back wall of thorax, initial encounter
## 27754 Unspecified injury of muscle and tendon of back wall of thorax, subsequent encounter
## 27755 Unspecified injury of muscle and tendon of back wall of thorax, sequela
## 27756 Unspecified injury of muscle and tendon of unspecified wall of thorax, initial encounter
## 27757 Unspecified injury of muscle and tendon of unspecified wall of thorax, subsequent encounter
## 27758 Unspecified injury of muscle and tendon of unspecified wall of thorax, sequela
## 27759 Strain of muscle and tendon of front wall of thorax, initial encounter
## 27760 Strain of muscle and tendon of front wall of thorax, subsequent encounter
## 27761 Strain of muscle and tendon of front wall of thorax, sequela
## 27762 Strain of muscle and tendon of back wall of thorax, initial encounter
## 27763 Strain of muscle and tendon of back wall of thorax, subsequent encounter
## 27764 Strain of muscle and tendon of back wall of thorax, sequela
## 27765 Strain of muscle and tendon of unspecified wall of thorax, initial encounter
## 27766 Strain of muscle and tendon of unspecified wall of thorax, subsequent encounter
## 27767 Strain of muscle and tendon of unspecified wall of thorax, sequela
## 27768 Laceration of muscle and tendon of front wall of thorax, initial encounter
## 27769 Laceration of muscle and tendon of front wall of thorax, subsequent encounter
## 27770 Laceration of muscle and tendon of front wall of thorax, sequela
## 27771 Laceration of muscle and tendon of back wall of thorax, initial encounter
## 27772 Laceration of muscle and tendon of back wall of thorax, subsequent encounter
## 27773 Laceration of muscle and tendon of back wall of thorax, sequela
## 27774 Laceration of muscle and tendon of unspecified wall of thorax, initial encounter
## 27775 Laceration of muscle and tendon of unspecified wall of thorax, subsequent encounter
## 27776 Laceration of muscle and tendon of unspecified wall of thorax, sequela
## 27777 Other injury of muscle and tendon of front wall of thorax, initial encounter
## 27778 Other injury of muscle and tendon of front wall of thorax, subsequent encounter
## 27779 Other injury of muscle and tendon of front wall of thorax, sequela
## 27780 Other injury of muscle and tendon of back wall of thorax, initial encounter
## 27781 Other injury of muscle and tendon of back wall of thorax, subsequent encounter
## 27782 Other injury of muscle and tendon of back wall of thorax, sequela
## 27783 Other injury of muscle and tendon of unspecified wall of thorax, initial encounter
## 27784 Other injury of muscle and tendon of unspecified wall of thorax, subsequent encounter
## 27785 Other injury of muscle and tendon of unspecified wall of thorax, sequela
## 27786 Other specified injuries of thorax, initial encounter
## 27787 Other specified injuries of thorax, subsequent encounter
## 27788 Other specified injuries of thorax, sequela
## 27789 Unspecified injury of thorax, initial encounter
## 27790 Unspecified injury of thorax, subsequent encounter
## 27791 Unspecified injury of thorax, sequela
## 27792 Contusion of lower back and pelvis, initial encounter
## 27793 Contusion of lower back and pelvis, subsequent encounter
## 27794 Contusion of lower back and pelvis, sequela
## 27795 Contusion of abdominal wall, initial encounter
## 27796 Contusion of abdominal wall, subsequent encounter
## 27797 Contusion of abdominal wall, sequela
## 27798 Contusion of unspecified external genital organ, male, initial encounter
## 27799 Contusion of unspecified external genital organ, male, subsequent encounter
## 27800 Contusion of unspecified external genital organ, male, sequela
## 27801 Contusion of unspecified external genital organ, female, initial encounter
## 27802 Contusion of unspecified external genital organ, female, subsequent encounter
## 27803 Contusion of unspecified external genital organ, female, sequela
## 27804 Contusion of penis, initial encounter
## 27805 Contusion of penis, subsequent encounter
## 27806 Contusion of penis, sequela
## 27807 Contusion of scrotum and testes, initial encounter
## 27808 Contusion of scrotum and testes, subsequent encounter
## 27809 Contusion of scrotum and testes, sequela
## 27810 Contusion of vagina and vulva, initial encounter
## 27811 Contusion of vagina and vulva, subsequent encounter
## 27812 Contusion of vagina and vulva, sequela
## 27813 Contusion of anus, initial encounter
## 27814 Contusion of anus, subsequent encounter
## 27815 Contusion of anus, sequela
## 27816 Abrasion of lower back and pelvis, initial encounter
## 27817 Abrasion of lower back and pelvis, subsequent encounter
## 27818 Abrasion of lower back and pelvis, sequela
## 27819 Abrasion of abdominal wall, initial encounter
## 27820 Abrasion of abdominal wall, subsequent encounter
## 27821 Abrasion of abdominal wall, sequela
## 27822 Abrasion of penis, initial encounter
## 27823 Abrasion of penis, subsequent encounter
## 27824 Abrasion of penis, sequela
## 27825 Abrasion of scrotum and testes, initial encounter
## 27826 Abrasion of scrotum and testes, subsequent encounter
## 27827 Abrasion of scrotum and testes, sequela
## 27828 Abrasion of vagina and vulva, initial encounter
## 27829 Abrasion of vagina and vulva, subsequent encounter
## 27830 Abrasion of vagina and vulva, sequela
## 27831 Abrasion of unspecified external genital organs, male, initial encounter
## 27832 Abrasion of unspecified external genital organs, male, subsequent encounter
## 27833 Abrasion of unspecified external genital organs, male, sequela
## 27834 Abrasion of unspecified external genital organs, female, initial encounter
## 27835 Abrasion of unspecified external genital organs, female, subsequent encounter
## 27836 Abrasion of unspecified external genital organs, female, sequela
## 27837 Abrasion of anus, initial encounter
## 27838 Abrasion of anus, subsequent encounter
## 27839 Abrasion of anus, sequela
## 27840 Blister (nonthermal) of lower back and pelvis, initial encounter
## 27841 Blister (nonthermal) of lower back and pelvis, subsequent encounter
## 27842 Blister (nonthermal) of lower back and pelvis, sequela
## 27843 Blister (nonthermal) of abdominal wall, initial encounter
## 27844 Blister (nonthermal) of abdominal wall, subsequent encounter
## 27845 Blister (nonthermal) of abdominal wall, sequela
## 27846 Blister (nonthermal) of penis, initial encounter
## 27847 Blister (nonthermal) of penis, subsequent encounter
## 27848 Blister (nonthermal) of penis, sequela
## 27849 Blister (nonthermal) of scrotum and testes, initial encounter
## 27850 Blister (nonthermal) of scrotum and testes, subsequent encounter
## 27851 Blister (nonthermal) of scrotum and testes, sequela
## 27852 Blister (nonthermal) of vagina and vulva, initial encounter
## 27853 Blister (nonthermal) of vagina and vulva, subsequent encounter
## 27854 Blister (nonthermal) of vagina and vulva, sequela
## 27855 Blister (nonthermal) of unspecified external genital organs, male, initial encounter
## 27856 Blister (nonthermal) of unspecified external genital organs, male, subsequent encounter
## 27857 Blister (nonthermal) of unspecified external genital organs, male, sequela
## 27858 Blister (nonthermal) of unspecified external genital organs, female, initial encounter
## 27859 Blister (nonthermal) of unspecified external genital organs, female, subsequent encounter
## 27860 Blister (nonthermal) of unspecified external genital organs, female, sequela
## 27861 Blister (nonthermal) of anus, initial encounter
## 27862 Blister (nonthermal) of anus, subsequent encounter
## 27863 Blister (nonthermal) of anus, sequela
## 27864 External constriction of lower back and pelvis, initial encounter
## 27865 External constriction of lower back and pelvis, subsequent encounter
## 27866 External constriction of lower back and pelvis, sequela
## 27867 External constriction of abdominal wall, initial encounter
## 27868 External constriction of abdominal wall, subsequent encounter
## 27869 External constriction of abdominal wall, sequela
## 27870 External constriction of penis, initial encounter
## 27871 External constriction of penis, subsequent encounter
## 27872 External constriction of penis, sequela
## 27873 External constriction of scrotum and testes, initial encounter
## 27874 External constriction of scrotum and testes, subsequent encounter
## 27875 External constriction of scrotum and testes, sequela
## 27876 External constriction of vagina and vulva, initial encounter
## 27877 External constriction of vagina and vulva, subsequent encounter
## 27878 External constriction of vagina and vulva, sequela
## 27879 External constriction of unspecified external genital organs, male, initial encounter
## 27880 External constriction of unspecified external genital organs, male, subsequent encounter
## 27881 External constriction of unspecified external genital organs, male, sequela
## 27882 External constriction of unspecified external genital organs, female, initial encounter
## 27883 External constriction of unspecified external genital organs, female, subsequent encounter
## 27884 External constriction of unspecified external genital organs, female, sequela
## 27885 Superficial foreign body of lower back and pelvis, initial encounter
## 27886 Superficial foreign body of lower back and pelvis, subsequent encounter
## 27887 Superficial foreign body of lower back and pelvis, sequela
## 27888 Superficial foreign body of abdominal wall, initial encounter
## 27889 Superficial foreign body of abdominal wall, subsequent encounter
## 27890 Superficial foreign body of abdominal wall, sequela
## 27891 Superficial foreign body of penis, initial encounter
## 27892 Superficial foreign body of penis, subsequent encounter
## 27893 Superficial foreign body of penis, sequela
## 27894 Superficial foreign body of scrotum and testes, initial encounter
## 27895 Superficial foreign body of scrotum and testes, subsequent encounter
## 27896 Superficial foreign body of scrotum and testes, sequela
## 27897 Superficial foreign body of vagina and vulva, initial encounter
## 27898 Superficial foreign body of vagina and vulva, subsequent encounter
## 27899 Superficial foreign body of vagina and vulva, sequela
## 27900 Superficial foreign body of unspecified external genital organs, male, initial encounter
## 27901 Superficial foreign body of unspecified external genital organs, male, subsequent encounter
## 27902 Superficial foreign body of unspecified external genital organs, male, sequela
## 27903 Superficial foreign body of unspecified external genital organs, female, initial encounter
## 27904 Superficial foreign body of unspecified external genital organs, female, subsequent encounter
## 27905 Superficial foreign body of unspecified external genital organs, female, sequela
## 27906 Superficial foreign body of anus, initial encounter
## 27907 Superficial foreign body of anus, subsequent encounter
## 27908 Superficial foreign body of anus, sequela
## 27909 Insect bite (nonvenomous) of lower back and pelvis, initial encounter
## 27910 Insect bite (nonvenomous) of lower back and pelvis, subsequent encounter
## 27911 Insect bite (nonvenomous) of lower back and pelvis, sequela
## 27912 Insect bite (nonvenomous) of abdominal wall, initial encounter
## 27913 Insect bite (nonvenomous) of abdominal wall, subsequent encounter
## 27914 Insect bite (nonvenomous) of abdominal wall, sequela
## 27915 Insect bite (nonvenomous) of penis, initial encounter
## 27916 Insect bite (nonvenomous) of penis, subsequent encounter
## 27917 Insect bite (nonvenomous) of penis, sequela
## 27918 Insect bite (nonvenomous) of scrotum and testes, initial encounter
## 27919 Insect bite (nonvenomous) of scrotum and testes, subsequent encounter
## 27920 Insect bite (nonvenomous) of scrotum and testes, sequela
## 27921 Insect bite (nonvenomous) of vagina and vulva, initial encounter
## 27922 Insect bite (nonvenomous) of vagina and vulva, subsequent encounter
## 27923 Insect bite (nonvenomous) of vagina and vulva, sequela
## 27924 Insect bite (nonvenomous) of unspecified external genital organs, male, initial encounter
## 27925 Insect bite (nonvenomous) of unspecified external genital organs, male, subsequent encounter
## 27926 Insect bite (nonvenomous) of unspecified external genital organs, male, sequela
## 27927 Insect bite (nonvenomous) of unspecified external genital organs, female, initial encounter
## 27928 Insect bite (nonvenomous) of unspecified external genital organs, female, subsequent encounter
## 27929 Insect bite (nonvenomous) of unspecified external genital organs, female, sequela
## 27930 Insect bite (nonvenomous) of anus, initial encounter
## 27931 Insect bite (nonvenomous) of anus, subsequent encounter
## 27932 Insect bite (nonvenomous) of anus, sequela
## 27933 Other superficial bite of lower back and pelvis, initial encounter
## 27934 Other superficial bite of lower back and pelvis, subsequent encounter
## 27935 Other superficial bite of lower back and pelvis, sequela
## 27936 Other superficial bite of abdominal wall, initial encounter
## 27937 Other superficial bite of abdominal wall, subsequent encounter
## 27938 Other superficial bite of abdominal wall, sequela
## 27939 Other superficial bite of penis, initial encounter
## 27940 Other superficial bite of penis, subsequent encounter
## 27941 Other superficial bite of penis, sequela
## 27942 Other superficial bite of scrotum and testes, initial encounter
## 27943 Other superficial bite of scrotum and testes, subsequent encounter
## 27944 Other superficial bite of scrotum and testes, sequela
## 27945 Other superficial bite of vagina and vulva, initial encounter
## 27946 Other superficial bite of vagina and vulva, subsequent encounter
## 27947 Other superficial bite of vagina and vulva, sequela
## 27948 Other superficial bite of unspecified external genital organs, male, initial encounter
## 27949 Other superficial bite of unspecified external genital organs, male, subsequent encounter
## 27950 Other superficial bite of unspecified external genital organs, male, sequela
## 27951 Other superficial bite of unspecified external genital organs, female, initial encounter
## 27952 Other superficial bite of unspecified external genital organs, female, subsequent encounter
## 27953 Other superficial bite of unspecified external genital organs, female, sequela
## 27954 Other superficial bite of anus, initial encounter
## 27955 Other superficial bite of anus, subsequent encounter
## 27956 Other superficial bite of anus, sequela
## 27957 Unspecified superficial injury of lower back and pelvis, initial encounter
## 27958 Unspecified superficial injury of lower back and pelvis, subsequent encounter
## 27959 Unspecified superficial injury of lower back and pelvis, sequela
## 27960 Unspecified superficial injury of abdominal wall, initial encounter
## 27961 Unspecified superficial injury of abdominal wall, subsequent encounter
## 27962 Unspecified superficial injury of abdominal wall, sequela
## 27963 Unspecified superficial injury of penis, initial encounter
## 27964 Unspecified superficial injury of penis, subsequent encounter
## 27965 Unspecified superficial injury of penis, sequela
## 27966 Unspecified superficial injury of scrotum and testes, initial encounter
## 27967 Unspecified superficial injury of scrotum and testes, subsequent encounter
## 27968 Unspecified superficial injury of scrotum and testes, sequela
## 27969 Unspecified superficial injury of vagina and vulva, initial encounter
## 27970 Unspecified superficial injury of vagina and vulva, subsequent encounter
## 27971 Unspecified superficial injury of vagina and vulva, sequela
## 27972 Unspecified superficial injury of unspecified external genital organs, male, initial encounter
## 27973 Unspecified superficial injury of unspecified external genital organs, male, subsequent encounter
## 27974 Unspecified superficial injury of unspecified external genital organs, male, sequela
## 27975 Unspecified superficial injury of unspecified external genital organs, female, initial encounter
## 27976 Unspecified superficial injury of unspecified external genital organs, female, subsequent encounter
## 27977 Unspecified superficial injury of unspecified external genital organs, female, sequela
## 27978 Unspecified superficial injury of anus, initial encounter
## 27979 Unspecified superficial injury of anus, subsequent encounter
## 27980 Unspecified superficial injury of anus, sequela
## 27981 Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, initial encounter
## 27982 Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, subsequent encounter
## 27983 Unspecified open wound of lower back and pelvis without penetration into retroperitoneum, sequela
## 27984 Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, initial encounter
## 27985 Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, subsequent encounter
## 27986 Unspecified open wound of lower back and pelvis with penetration into retroperitoneum, sequela
## 27987 Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter
## 27988 Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter
## 27989 Laceration without foreign body of lower back and pelvis without penetration into retroperitoneum, sequela
## 27990 Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter
## 27991 Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter
## 27992 Laceration without foreign body of lower back and pelvis with penetration into retroperitoneum, sequela
## 27993 Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter
## 27994 Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter
## 27995 Laceration with foreign body of lower back and pelvis without penetration into retroperitoneum, sequela
## 27996 Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter
## 27997 Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter
## 27998 Laceration with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela
## 27999 Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter
## 28000 Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter
## 28001 Puncture wound without foreign body of lower back and pelvis without penetration into retroperitoneum, sequela
## 28002 Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter
## 28003 Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter
## 28004 Puncture wound without foreign body of lower back and pelvis with penetration into retroperitoneum, sequela
## 28005 Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, initial encounter
## 28006 Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, subsequent encounter
## 28007 Puncture wound with foreign body of lower back and pelvis without penetration into retroperitoneum, sequela
## 28008 Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, initial encounter
## 28009 Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, subsequent encounter
## 28010 Puncture wound with foreign body of lower back and pelvis with penetration into retroperitoneum, sequela
## 28011 Open bite of lower back and pelvis without penetration into retroperitoneum, initial encounter
## 28012 Open bite of lower back and pelvis without penetration into retroperitoneum, subsequent encounter
## 28013 Open bite of lower back and pelvis without penetration into retroperitoneum, sequela
## 28014 Open bite of lower back and pelvis with penetration into retroperitoneum, initial encounter
## 28015 Open bite of lower back and pelvis with penetration into retroperitoneum, subsequent encounter
## 28016 Open bite of lower back and pelvis with penetration into retroperitoneum, sequela
## 28017 Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter
## 28018 Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28019 Unspecified open wound of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela
## 28020 Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter
## 28021 Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28022 Unspecified open wound of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela
## 28023 Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter
## 28024 Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter
## 28025 Unspecified open wound of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela
## 28026 Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter
## 28027 Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28028 Unspecified open wound of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela
## 28029 Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter
## 28030 Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28031 Unspecified open wound of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela
## 28032 Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter
## 28033 Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter
## 28034 Unspecified open wound of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela
## 28035 Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter
## 28036 Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter
## 28037 Unspecified open wound of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela
## 28038 Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter
## 28039 Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28040 Laceration without foreign body of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela
## 28041 Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter
## 28042 Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28043 Laceration without foreign body of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela
## 28044 Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter
## 28045 Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter
## 28046 Laceration without foreign body of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela
## 28047 Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter
## 28048 Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28049 Laceration without foreign body of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela
## 28050 Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter
## 28051 Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28052 Laceration without foreign body of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela
## 28053 Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter
## 28054 Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter
## 28055 Laceration without foreign body of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela
## 28056 Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter
## 28057 Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter
## 28058 Laceration without foreign body of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela
## 28059 Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter
## 28060 Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28061 Laceration of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, sequela
## 28062 Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter
## 28063 Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28064 Laceration of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, sequela
## 28065 Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, initial encounter
## 28066 Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter
## 28067 Laceration of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, sequela
## 28068 Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter
## 28069 Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28070 Laceration of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, sequela
## 28071 Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter
## 28072 Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28073 Laceration of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, sequela
## 28074 Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter
## 28075 Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter
## 28076 Laceration of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, sequela
## 28077 Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter
## 28078 Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter
## 28079 Laceration of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela
## 28080 Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter
## 28081 Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28082 Puncture wound of abdominal wall without foreign body, right upper quadrant without penetration into peritoneal cavity, sequela
## 28083 Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter
## 28084 Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28085 Puncture wound of abdominal wall without foreign body, left upper quadrant without penetration into peritoneal cavity, sequela
## 28086 Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, initial encounter
## 28087 Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter
## 28088 Puncture wound of abdominal wall without foreign body, epigastric region without penetration into peritoneal cavity, sequela
## 28089 Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter
## 28090 Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28091 Puncture wound of abdominal wall without foreign body, right lower quadrant without penetration into peritoneal cavity, sequela
## 28092 Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter
## 28093 Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28094 Puncture wound of abdominal wall without foreign body, left lower quadrant without penetration into peritoneal cavity, sequela
## 28095 Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter
## 28096 Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter
## 28097 Puncture wound of abdominal wall without foreign body, periumbilic region without penetration into peritoneal cavity, sequela
## 28098 Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter
## 28099 Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter
## 28100 Puncture wound of abdominal wall without foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela
## 28101 Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, initial encounter
## 28102 Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28103 Puncture wound of abdominal wall with foreign body, right upper quadrant without penetration into peritoneal cavity, sequela
## 28104 Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, initial encounter
## 28105 Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28106 Puncture wound of abdominal wall with foreign body, left upper quadrant without penetration into peritoneal cavity, sequela
## 28107 Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, initial encounter
## 28108 Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, subsequent encounter
## 28109 Puncture wound of abdominal wall with foreign body, epigastric region without penetration into peritoneal cavity, sequela
## 28110 Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, initial encounter
## 28111 Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28112 Puncture wound of abdominal wall with foreign body, right lower quadrant without penetration into peritoneal cavity, sequela
## 28113 Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, initial encounter
## 28114 Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28115 Puncture wound of abdominal wall with foreign body, left lower quadrant without penetration into peritoneal cavity, sequela
## 28116 Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, initial encounter
## 28117 Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, subsequent encounter
## 28118 Puncture wound of abdominal wall with foreign body, periumbilic region without penetration into peritoneal cavity, sequela
## 28119 Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, initial encounter
## 28120 Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter
## 28121 Puncture wound of abdominal wall with foreign body, unspecified quadrant without penetration into peritoneal cavity, sequela
## 28122 Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, initial encounter
## 28123 Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28124 Open bite of abdominal wall, right upper quadrant without penetration into peritoneal cavity, sequela
## 28125 Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, initial encounter
## 28126 Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, subsequent encounter
## 28127 Open bite of abdominal wall, left upper quadrant without penetration into peritoneal cavity, sequela
## 28128 Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, initial encounter
## 28129 Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, subsequent encounter
## 28130 Open bite of abdominal wall, epigastric region without penetration into peritoneal cavity, sequela
## 28131 Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, initial encounter
## 28132 Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28133 Open bite of abdominal wall, right lower quadrant without penetration into peritoneal cavity, sequela
## 28134 Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, initial encounter
## 28135 Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, subsequent encounter
## 28136 Open bite of abdominal wall, left lower quadrant without penetration into peritoneal cavity, sequela
## 28137 Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, initial encounter
## 28138 Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, subsequent encounter
## 28139 Open bite of abdominal wall, periumbilic region without penetration into peritoneal cavity, sequela
## 28140 Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, initial encounter
## 28141 Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, subsequent encounter
## 28142 Open bite of abdominal wall, unspecified quadrant without penetration into peritoneal cavity, sequela
## 28143 Unspecified open wound of penis, initial encounter
## 28144 Unspecified open wound of penis, subsequent encounter
## 28145 Unspecified open wound of penis, sequela
## 28146 Laceration without foreign body of penis, initial encounter
## 28147 Laceration without foreign body of penis, subsequent encounter
## 28148 Laceration without foreign body of penis, sequela
## 28149 Laceration with foreign body of penis, initial encounter
## 28150 Laceration with foreign body of penis, subsequent encounter
## 28151 Laceration with foreign body of penis, sequela
## 28152 Puncture wound without foreign body of penis, initial encounter
## 28153 Puncture wound without foreign body of penis, subsequent encounter
## 28154 Puncture wound without foreign body of penis, sequela
## 28155 Puncture wound with foreign body of penis, initial encounter
## 28156 Puncture wound with foreign body of penis, subsequent encounter
## 28157 Puncture wound with foreign body of penis, sequela
## 28158 Open bite of penis, initial encounter
## 28159 Open bite of penis, subsequent encounter
## 28160 Open bite of penis, sequela
## 28161 Unspecified open wound of scrotum and testes, initial encounter
## 28162 Unspecified open wound of scrotum and testes, subsequent encounter
## 28163 Unspecified open wound of scrotum and testes, sequela
## 28164 Laceration without foreign body of scrotum and testes, initial encounter
## 28165 Laceration without foreign body of scrotum and testes, subsequent encounter
## 28166 Laceration without foreign body of scrotum and testes, sequela
## 28167 Laceration with foreign body of scrotum and testes, initial encounter
## 28168 Laceration with foreign body of scrotum and testes, subsequent encounter
## 28169 Laceration with foreign body of scrotum and testes, sequela
## 28170 Puncture wound without foreign body of scrotum and testes, initial encounter
## 28171 Puncture wound without foreign body of scrotum and testes, subsequent encounter
## 28172 Puncture wound without foreign body of scrotum and testes, sequela
## 28173 Puncture wound with foreign body of scrotum and testes, initial encounter
## 28174 Puncture wound with foreign body of scrotum and testes, subsequent encounter
## 28175 Puncture wound with foreign body of scrotum and testes, sequela
## 28176 Open bite of scrotum and testes, initial encounter
## 28177 Open bite of scrotum and testes, subsequent encounter
## 28178 Open bite of scrotum and testes, sequela
## 28179 Unspecified open wound of vagina and vulva, initial encounter
## 28180 Unspecified open wound of vagina and vulva, subsequent encounter
## 28181 Unspecified open wound of vagina and vulva, sequela
## 28182 Laceration without foreign body of vagina and vulva, initial encounter
## 28183 Laceration without foreign body of vagina and vulva, subsequent encounter
## 28184 Laceration without foreign body of vagina and vulva, sequela
## 28185 Laceration with foreign body of vagina and vulva, initial encounter
## 28186 Laceration with foreign body of vagina and vulva, subsequent encounter
## 28187 Laceration with foreign body of vagina and vulva, sequela
## 28188 Puncture wound without foreign body of vagina and vulva, initial encounter
## 28189 Puncture wound without foreign body of vagina and vulva, subsequent encounter
## 28190 Puncture wound without foreign body of vagina and vulva, sequela
## 28191 Puncture wound with foreign body of vagina and vulva, initial encounter
## 28192 Puncture wound with foreign body of vagina and vulva, subsequent encounter
## 28193 Puncture wound with foreign body of vagina and vulva, sequela
## 28194 Open bite of vagina and vulva, initial encounter
## 28195 Open bite of vagina and vulva, subsequent encounter
## 28196 Open bite of vagina and vulva, sequela
## 28197 Unspecified open wound of unspecified external genital organs, male, initial encounter
## 28198 Unspecified open wound of unspecified external genital organs, male, subsequent encounter
## 28199 Unspecified open wound of unspecified external genital organs, male, sequela
## 28200 Unspecified open wound of unspecified external genital organs, female, initial encounter
## 28201 Unspecified open wound of unspecified external genital organs, female, subsequent encounter
## 28202 Unspecified open wound of unspecified external genital organs, female, sequela
## 28203 Laceration without foreign body of unspecified external genital organs, male, initial encounter
## 28204 Laceration without foreign body of unspecified external genital organs, male, subsequent encounter
## 28205 Laceration without foreign body of unspecified external genital organs, male, sequela
## 28206 Laceration without foreign body of unspecified external genital organs, female, initial encounter
## 28207 Laceration without foreign body of unspecified external genital organs, female, subsequent encounter
## 28208 Laceration without foreign body of unspecified external genital organs, female, sequela
## 28209 Laceration with foreign body of unspecified external genital organs, male, initial encounter
## 28210 Laceration with foreign body of unspecified external genital organs, male, subsequent encounter
## 28211 Laceration with foreign body of unspecified external genital organs, male, sequela
## 28212 Laceration with foreign body of unspecified external genital organs, female, initial encounter
## 28213 Laceration with foreign body of unspecified external genital organs, female, subsequent encounter
## 28214 Laceration with foreign body of unspecified external genital organs, female, sequela
## 28215 Puncture wound without foreign body of unspecified external genital organs, male, initial encounter
## 28216 Puncture wound without foreign body of unspecified external genital organs, male, subsequent encounter
## 28217 Puncture wound without foreign body of unspecified external genital organs, male, sequela
## 28218 Puncture wound without foreign body of unspecified external genital organs, female, initial encounter
## 28219 Puncture wound without foreign body of unspecified external genital organs, female, subsequent encounter
## 28220 Puncture wound without foreign body of unspecified external genital organs, female, sequela
## 28221 Puncture wound with foreign body of unspecified external genital organs, male, initial encounter
## 28222 Puncture wound with foreign body of unspecified external genital organs, male, subsequent encounter
## 28223 Puncture wound with foreign body of unspecified external genital organs, male, sequela
## 28224 Puncture wound with foreign body of unspecified external genital organs, female, initial encounter
## 28225 Puncture wound with foreign body of unspecified external genital organs, female, subsequent encounter
## 28226 Puncture wound with foreign body of unspecified external genital organs, female, sequela
## 28227 Open bite of unspecified external genital organs, male, initial encounter
## 28228 Open bite of unspecified external genital organs, male, subsequent encounter
## 28229 Open bite of unspecified external genital organs, male, sequela
## 28230 Open bite of unspecified external genital organs, female, initial encounter
## 28231 Open bite of unspecified external genital organs, female, subsequent encounter
## 28232 Open bite of unspecified external genital organs, female, sequela
## 28233 Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter
## 28234 Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28235 Unspecified open wound of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela
## 28236 Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter
## 28237 Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28238 Unspecified open wound of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela
## 28239 Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter
## 28240 Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter
## 28241 Unspecified open wound of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela
## 28242 Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter
## 28243 Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28244 Unspecified open wound of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela
## 28245 Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter
## 28246 Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28247 Unspecified open wound of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela
## 28248 Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter
## 28249 Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter
## 28250 Unspecified open wound of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela
## 28251 Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter
## 28252 Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter
## 28253 Unspecified open wound of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela
## 28254 Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter
## 28255 Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28256 Laceration without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela
## 28257 Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter
## 28258 Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28259 Laceration without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela
## 28260 Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter
## 28261 Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter
## 28262 Laceration without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela
## 28263 Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter
## 28264 Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28265 Laceration without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela
## 28266 Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter
## 28267 Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28268 Laceration without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela
## 28269 Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter
## 28270 Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter
## 28271 Laceration without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela
## 28272 Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter
## 28273 Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter
## 28274 Laceration without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela
## 28275 Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter
## 28276 Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28277 Laceration with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela
## 28278 Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter
## 28279 Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28280 Laceration with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela
## 28281 Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter
## 28282 Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter
## 28283 Laceration with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela
## 28284 Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter
## 28285 Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28286 Laceration with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela
## 28287 Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter
## 28288 Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28289 Laceration with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela
## 28290 Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter
## 28291 Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter
## 28292 Laceration with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela
## 28293 Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter
## 28294 Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter
## 28295 Laceration with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela
## 28296 Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter
## 28297 Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28298 Puncture wound without foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela
## 28299 Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter
## 28300 Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28301 Puncture wound without foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela
## 28302 Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter
## 28303 Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter
## 28304 Puncture wound without foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela
## 28305 Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter
## 28306 Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28307 Puncture wound without foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela
## 28308 Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter
## 28309 Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28310 Puncture wound without foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela
## 28311 Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter
## 28312 Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter
## 28313 Puncture wound without foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela
## 28314 Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter
## 28315 Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter
## 28316 Puncture wound without foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela
## 28317 Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter
## 28318 Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28319 Puncture wound with foreign body of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela
## 28320 Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter
## 28321 Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28322 Puncture wound with foreign body of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela
## 28323 Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter
## 28324 Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter
## 28325 Puncture wound with foreign body of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela
## 28326 Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter
## 28327 Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28328 Puncture wound with foreign body of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela
## 28329 Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter
## 28330 Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28331 Puncture wound with foreign body of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela
## 28332 Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter
## 28333 Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter
## 28334 Puncture wound with foreign body of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela
## 28335 Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter
## 28336 Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter
## 28337 Puncture wound with foreign body of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela
## 28338 Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, initial encounter
## 28339 Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28340 Open bite of abdominal wall, right upper quadrant with penetration into peritoneal cavity, sequela
## 28341 Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, initial encounter
## 28342 Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, subsequent encounter
## 28343 Open bite of abdominal wall, left upper quadrant with penetration into peritoneal cavity, sequela
## 28344 Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, initial encounter
## 28345 Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, subsequent encounter
## 28346 Open bite of abdominal wall, epigastric region with penetration into peritoneal cavity, sequela
## 28347 Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, initial encounter
## 28348 Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28349 Open bite of abdominal wall, right lower quadrant with penetration into peritoneal cavity, sequela
## 28350 Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, initial encounter
## 28351 Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, subsequent encounter
## 28352 Open bite of abdominal wall, left lower quadrant with penetration into peritoneal cavity, sequela
## 28353 Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, initial encounter
## 28354 Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, subsequent encounter
## 28355 Open bite of abdominal wall, periumbilic region with penetration into peritoneal cavity, sequela
## 28356 Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, initial encounter
## 28357 Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, subsequent encounter
## 28358 Open bite of abdominal wall, unspecified quadrant with penetration into peritoneal cavity, sequela
## 28359 Laceration without foreign body of unspecified buttock, initial encounter
## 28360 Laceration without foreign body of unspecified buttock, subsequent encounter
## 28361 Laceration without foreign body of unspecified buttock, sequela
## 28362 Laceration with foreign body of unspecified buttock, initial encounter
## 28363 Laceration with foreign body of unspecified buttock, subsequent encounter
## 28364 Laceration with foreign body of unspecified buttock, sequela
## 28365 Puncture wound without foreign body of unspecified buttock, initial encounter
## 28366 Puncture wound without foreign body of unspecified buttock, subsequent encounter
## 28367 Puncture wound without foreign body of unspecified buttock, sequela
## 28368 Puncture wound with foreign body of unspecified buttock, initial encounter
## 28369 Puncture wound with foreign body of unspecified buttock, subsequent encounter
## 28370 Puncture wound with foreign body of unspecified buttock, sequela
## 28371 Open bite of unspecified buttock, initial encounter
## 28372 Open bite of unspecified buttock, subsequent encounter
## 28373 Open bite of unspecified buttock, sequela
## 28374 Unspecified open wound of unspecified buttock, initial encounter
## 28375 Unspecified open wound of unspecified buttock, subsequent encounter
## 28376 Unspecified open wound of unspecified buttock, sequela
## 28377 Laceration without foreign body of right buttock, initial encounter
## 28378 Laceration without foreign body of right buttock, subsequent encounter
## 28379 Laceration without foreign body of right buttock, sequela
## 28380 Laceration with foreign body of right buttock, initial encounter
## 28381 Laceration with foreign body of right buttock, subsequent encounter
## 28382 Laceration with foreign body of right buttock, sequela
## 28383 Puncture wound without foreign body of right buttock, initial encounter
## 28384 Puncture wound without foreign body of right buttock, subsequent encounter
## 28385 Puncture wound without foreign body of right buttock, sequela
## 28386 Puncture wound with foreign body of right buttock, initial encounter
## 28387 Puncture wound with foreign body of right buttock, subsequent encounter
## 28388 Puncture wound with foreign body of right buttock, sequela
## 28389 Open bite of right buttock, initial encounter
## 28390 Open bite of right buttock, subsequent encounter
## 28391 Open bite of right buttock, sequela
## 28392 Unspecified open wound of right buttock, initial encounter
## 28393 Unspecified open wound of right buttock, subsequent encounter
## 28394 Unspecified open wound of right buttock, sequela
## 28395 Laceration without foreign body of left buttock, initial encounter
## 28396 Laceration without foreign body of left buttock, subsequent encounter
## 28397 Laceration without foreign body of left buttock, sequela
## 28398 Laceration with foreign body of left buttock, initial encounter
## 28399 Laceration with foreign body of left buttock, subsequent encounter
## 28400 Laceration with foreign body of left buttock, sequela
## 28401 Puncture wound without foreign body of left buttock, initial encounter
## 28402 Puncture wound without foreign body of left buttock, subsequent encounter
## 28403 Puncture wound without foreign body of left buttock, sequela
## 28404 Puncture wound with foreign body of left buttock, initial encounter
## 28405 Puncture wound with foreign body of left buttock, subsequent encounter
## 28406 Puncture wound with foreign body of left buttock, sequela
## 28407 Open bite of left buttock, initial encounter
## 28408 Open bite of left buttock, subsequent encounter
## 28409 Open bite of left buttock, sequela
## 28410 Unspecified open wound of left buttock, initial encounter
## 28411 Unspecified open wound of left buttock, subsequent encounter
## 28412 Unspecified open wound of left buttock, sequela
## 28413 Laceration without foreign body of anus, initial encounter
## 28414 Laceration without foreign body of anus, subsequent encounter
## 28415 Laceration without foreign body of anus, sequela
## 28416 Laceration with foreign body of anus, initial encounter
## 28417 Laceration with foreign body of anus, subsequent encounter
## 28418 Laceration with foreign body of anus, sequela
## 28419 Puncture wound without foreign body of anus, initial encounter
## 28420 Puncture wound without foreign body of anus, subsequent encounter
## 28421 Puncture wound without foreign body of anus, sequela
## 28422 Puncture wound with foreign body of anus, initial encounter
## 28423 Puncture wound with foreign body of anus, subsequent encounter
## 28424 Puncture wound with foreign body of anus, sequela
## 28425 Open bite of anus, initial encounter
## 28426 Open bite of anus, subsequent encounter
## 28427 Open bite of anus, sequela
## 28428 Unspecified open wound of anus, initial encounter
## 28429 Unspecified open wound of anus, subsequent encounter
## 28430 Unspecified open wound of anus, sequela
## 28431 Wedge compression fracture of unspecified lumbar vertebra, initial encounter for closed fracture
## 28432 Wedge compression fracture of unspecified lumbar vertebra, initial encounter for open fracture
## 28433 Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing
## 28434 Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28435 Wedge compression fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion
## 28436 Wedge compression fracture of unspecified lumbar vertebra, sequela
## 28437 Stable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture
## 28438 Stable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture
## 28439 Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing
## 28440 Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28441 Stable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion
## 28442 Stable burst fracture of unspecified lumbar vertebra, sequela
## 28443 Unstable burst fracture of unspecified lumbar vertebra, initial encounter for closed fracture
## 28444 Unstable burst fracture of unspecified lumbar vertebra, initial encounter for open fracture
## 28445 Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing
## 28446 Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28447 Unstable burst fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion
## 28448 Unstable burst fracture of unspecified lumbar vertebra, sequela
## 28449 Other fracture of unspecified lumbar vertebra, initial encounter for closed fracture
## 28450 Other fracture of unspecified lumbar vertebra, initial encounter for open fracture
## 28451 Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing
## 28452 Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28453 Other fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion
## 28454 Other fracture of unspecified lumbar vertebra, sequela
## 28455 Unspecified fracture of unspecified lumbar vertebra, initial encounter for closed fracture
## 28456 Unspecified fracture of unspecified lumbar vertebra, initial encounter for open fracture
## 28457 Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with routine healing
## 28458 Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28459 Unspecified fracture of unspecified lumbar vertebra, subsequent encounter for fracture with nonunion
## 28460 Unspecified fracture of unspecified lumbar vertebra, sequela
## 28461 Wedge compression fracture of first lumbar vertebra, initial encounter for closed fracture
## 28462 Wedge compression fracture of first lumbar vertebra, initial encounter for open fracture
## 28463 Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing
## 28464 Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28465 Wedge compression fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion
## 28466 Wedge compression fracture of first lumbar vertebra, sequela
## 28467 Stable burst fracture of first lumbar vertebra, initial encounter for closed fracture
## 28468 Stable burst fracture of first lumbar vertebra, initial encounter for open fracture
## 28469 Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing
## 28470 Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28471 Stable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion
## 28472 Stable burst fracture of first lumbar vertebra, sequela
## 28473 Unstable burst fracture of first lumbar vertebra, initial encounter for closed fracture
## 28474 Unstable burst fracture of first lumbar vertebra, initial encounter for open fracture
## 28475 Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing
## 28476 Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28477 Unstable burst fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion
## 28478 Unstable burst fracture of first lumbar vertebra, sequela
## 28479 Other fracture of first lumbar vertebra, initial encounter for closed fracture
## 28480 Other fracture of first lumbar vertebra, initial encounter for open fracture
## 28481 Other fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing
## 28482 Other fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28483 Other fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion
## 28484 Other fracture of first lumbar vertebra, sequela
## 28485 Unspecified fracture of first lumbar vertebra, initial encounter for closed fracture
## 28486 Unspecified fracture of first lumbar vertebra, initial encounter for open fracture
## 28487 Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with routine healing
## 28488 Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28489 Unspecified fracture of first lumbar vertebra, subsequent encounter for fracture with nonunion
## 28490 Unspecified fracture of first lumbar vertebra, sequela
## 28491 Wedge compression fracture of second lumbar vertebra, initial encounter for closed fracture
## 28492 Wedge compression fracture of second lumbar vertebra, initial encounter for open fracture
## 28493 Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing
## 28494 Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28495 Wedge compression fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion
## 28496 Wedge compression fracture of second lumbar vertebra, sequela
## 28497 Stable burst fracture of second lumbar vertebra, initial encounter for closed fracture
## 28498 Stable burst fracture of second lumbar vertebra, initial encounter for open fracture
## 28499 Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing
## 28500 Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28501 Stable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion
## 28502 Stable burst fracture of second lumbar vertebra, sequela
## 28503 Unstable burst fracture of second lumbar vertebra, initial encounter for closed fracture
## 28504 Unstable burst fracture of second lumbar vertebra, initial encounter for open fracture
## 28505 Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing
## 28506 Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28507 Unstable burst fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion
## 28508 Unstable burst fracture of second lumbar vertebra, sequela
## 28509 Other fracture of second lumbar vertebra, initial encounter for closed fracture
## 28510 Other fracture of second lumbar vertebra, initial encounter for open fracture
## 28511 Other fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing
## 28512 Other fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28513 Other fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion
## 28514 Other fracture of second lumbar vertebra, sequela
## 28515 Unspecified fracture of second lumbar vertebra, initial encounter for closed fracture
## 28516 Unspecified fracture of second lumbar vertebra, initial encounter for open fracture
## 28517 Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with routine healing
## 28518 Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28519 Unspecified fracture of second lumbar vertebra, subsequent encounter for fracture with nonunion
## 28520 Unspecified fracture of second lumbar vertebra, sequela
## 28521 Wedge compression fracture of third lumbar vertebra, initial encounter for closed fracture
## 28522 Wedge compression fracture of third lumbar vertebra, initial encounter for open fracture
## 28523 Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing
## 28524 Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28525 Wedge compression fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion
## 28526 Wedge compression fracture of third lumbar vertebra, sequela
## 28527 Stable burst fracture of third lumbar vertebra, initial encounter for closed fracture
## 28528 Stable burst fracture of third lumbar vertebra, initial encounter for open fracture
## 28529 Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing
## 28530 Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28531 Stable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion
## 28532 Stable burst fracture of third lumbar vertebra, sequela
## 28533 Unstable burst fracture of third lumbar vertebra, initial encounter for closed fracture
## 28534 Unstable burst fracture of third lumbar vertebra, initial encounter for open fracture
## 28535 Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing
## 28536 Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28537 Unstable burst fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion
## 28538 Unstable burst fracture of third lumbar vertebra, sequela
## 28539 Other fracture of third lumbar vertebra, initial encounter for closed fracture
## 28540 Other fracture of third lumbar vertebra, initial encounter for open fracture
## 28541 Other fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing
## 28542 Other fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28543 Other fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion
## 28544 Other fracture of third lumbar vertebra, sequela
## 28545 Unspecified fracture of third lumbar vertebra, initial encounter for closed fracture
## 28546 Unspecified fracture of third lumbar vertebra, initial encounter for open fracture
## 28547 Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with routine healing
## 28548 Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28549 Unspecified fracture of third lumbar vertebra, subsequent encounter for fracture with nonunion
## 28550 Unspecified fracture of third lumbar vertebra, sequela
## 28551 Wedge compression fracture of fourth lumbar vertebra, initial encounter for closed fracture
## 28552 Wedge compression fracture of fourth lumbar vertebra, initial encounter for open fracture
## 28553 Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28554 Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28555 Wedge compression fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28556 Wedge compression fracture of fourth lumbar vertebra, sequela
## 28557 Stable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture
## 28558 Stable burst fracture of fourth lumbar vertebra, initial encounter for open fracture
## 28559 Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28560 Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28561 Stable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28562 Stable burst fracture of fourth lumbar vertebra, sequela
## 28563 Unstable burst fracture of fourth lumbar vertebra, initial encounter for closed fracture
## 28564 Unstable burst fracture of fourth lumbar vertebra, initial encounter for open fracture
## 28565 Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28566 Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28567 Unstable burst fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28568 Unstable burst fracture of fourth lumbar vertebra, sequela
## 28569 Other fracture of fourth lumbar vertebra, initial encounter for closed fracture
## 28570 Other fracture of fourth lumbar vertebra, initial encounter for open fracture
## 28571 Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28572 Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28573 Other fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28574 Other fracture of fourth lumbar vertebra, sequela
## 28575 Unspecified fracture of fourth lumbar vertebra, initial encounter for closed fracture
## 28576 Unspecified fracture of fourth lumbar vertebra, initial encounter for open fracture
## 28577 Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28578 Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28579 Unspecified fracture of fourth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28580 Unspecified fracture of fourth lumbar vertebra, sequela
## 28581 Wedge compression fracture of fifth lumbar vertebra, initial encounter for closed fracture
## 28582 Wedge compression fracture of fifth lumbar vertebra, initial encounter for open fracture
## 28583 Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28584 Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28585 Wedge compression fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28586 Wedge compression fracture of fifth lumbar vertebra, sequela
## 28587 Stable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture
## 28588 Stable burst fracture of fifth lumbar vertebra, initial encounter for open fracture
## 28589 Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28590 Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28591 Stable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28592 Stable burst fracture of fifth lumbar vertebra, sequela
## 28593 Unstable burst fracture of fifth lumbar vertebra, initial encounter for closed fracture
## 28594 Unstable burst fracture of fifth lumbar vertebra, initial encounter for open fracture
## 28595 Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28596 Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28597 Unstable burst fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28598 Unstable burst fracture of fifth lumbar vertebra, sequela
## 28599 Other fracture of fifth lumbar vertebra, initial encounter for closed fracture
## 28600 Other fracture of fifth lumbar vertebra, initial encounter for open fracture
## 28601 Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28602 Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28603 Other fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28604 Other fracture of fifth lumbar vertebra, sequela
## 28605 Unspecified fracture of fifth lumbar vertebra, initial encounter for closed fracture
## 28606 Unspecified fracture of fifth lumbar vertebra, initial encounter for open fracture
## 28607 Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with routine healing
## 28608 Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with delayed healing
## 28609 Unspecified fracture of fifth lumbar vertebra, subsequent encounter for fracture with nonunion
## 28610 Unspecified fracture of fifth lumbar vertebra, sequela
## 28611 Unspecified fracture of sacrum, initial encounter for closed fracture
## 28612 Unspecified fracture of sacrum, initial encounter for open fracture
## 28613 Unspecified fracture of sacrum, subsequent encounter for fracture with routine healing
## 28614 Unspecified fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28615 Unspecified fracture of sacrum, subsequent encounter for fracture with nonunion
## 28616 Unspecified fracture of sacrum, sequela
## 28617 Nondisplaced Zone I fracture of sacrum, initial encounter for closed fracture
## 28618 Nondisplaced Zone I fracture of sacrum, initial encounter for open fracture
## 28619 Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing
## 28620 Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28621 Nondisplaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion
## 28622 Nondisplaced Zone I fracture of sacrum, sequela
## 28623 Minimally displaced Zone I fracture of sacrum, initial encounter for closed fracture
## 28624 Minimally displaced Zone I fracture of sacrum, initial encounter for open fracture
## 28625 Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing
## 28626 Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28627 Minimally displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion
## 28628 Minimally displaced Zone I fracture of sacrum, sequela
## 28629 Severely displaced Zone I fracture of sacrum, initial encounter for closed fracture
## 28630 Severely displaced Zone I fracture of sacrum, initial encounter for open fracture
## 28631 Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with routine healing
## 28632 Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28633 Severely displaced Zone I fracture of sacrum, subsequent encounter for fracture with nonunion
## 28634 Severely displaced Zone I fracture of sacrum, sequela
## 28635 Unspecified Zone I fracture of sacrum, initial encounter for closed fracture
## 28636 Unspecified Zone I fracture of sacrum, initial encounter for open fracture
## 28637 Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with routine healing
## 28638 Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28639 Unspecified Zone I fracture of sacrum, subsequent encounter for fracture with nonunion
## 28640 Unspecified Zone I fracture of sacrum, sequela
## 28641 Nondisplaced Zone II fracture of sacrum, initial encounter for closed fracture
## 28642 Nondisplaced Zone II fracture of sacrum, initial encounter for open fracture
## 28643 Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing
## 28644 Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28645 Nondisplaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion
## 28646 Nondisplaced Zone II fracture of sacrum, sequela
## 28647 Minimally displaced Zone II fracture of sacrum, initial encounter for closed fracture
## 28648 Minimally displaced Zone II fracture of sacrum, initial encounter for open fracture
## 28649 Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing
## 28650 Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28651 Minimally displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion
## 28652 Minimally displaced Zone II fracture of sacrum, sequela
## 28653 Severely displaced Zone II fracture of sacrum, initial encounter for closed fracture
## 28654 Severely displaced Zone II fracture of sacrum, initial encounter for open fracture
## 28655 Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with routine healing
## 28656 Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28657 Severely displaced Zone II fracture of sacrum, subsequent encounter for fracture with nonunion
## 28658 Severely displaced Zone II fracture of sacrum, sequela
## 28659 Unspecified Zone II fracture of sacrum, initial encounter for closed fracture
## 28660 Unspecified Zone II fracture of sacrum, initial encounter for open fracture
## 28661 Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with routine healing
## 28662 Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28663 Unspecified Zone II fracture of sacrum, subsequent encounter for fracture with nonunion
## 28664 Unspecified Zone II fracture of sacrum, sequela
## 28665 Nondisplaced Zone III fracture of sacrum, initial encounter for closed fracture
## 28666 Nondisplaced Zone III fracture of sacrum, initial encounter for open fracture
## 28667 Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing
## 28668 Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28669 Nondisplaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion
## 28670 Nondisplaced Zone III fracture of sacrum, sequela
## 28671 Minimally displaced Zone III fracture of sacrum, initial encounter for closed fracture
## 28672 Minimally displaced Zone III fracture of sacrum, initial encounter for open fracture
## 28673 Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing
## 28674 Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28675 Minimally displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion
## 28676 Minimally displaced Zone III fracture of sacrum, sequela
## 28677 Severely displaced Zone III fracture of sacrum, initial encounter for closed fracture
## 28678 Severely displaced Zone III fracture of sacrum, initial encounter for open fracture
## 28679 Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with routine healing
## 28680 Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28681 Severely displaced Zone III fracture of sacrum, subsequent encounter for fracture with nonunion
## 28682 Severely displaced Zone III fracture of sacrum, sequela
## 28683 Unspecified Zone III fracture of sacrum, initial encounter for closed fracture
## 28684 Unspecified Zone III fracture of sacrum, initial encounter for open fracture
## 28685 Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with routine healing
## 28686 Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28687 Unspecified Zone III fracture of sacrum, subsequent encounter for fracture with nonunion
## 28688 Unspecified Zone III fracture of sacrum, sequela
## 28689 Type 1 fracture of sacrum, initial encounter for closed fracture
## 28690 Type 1 fracture of sacrum, initial encounter for open fracture
## 28691 Type 1 fracture of sacrum, subsequent encounter for fracture with routine healing
## 28692 Type 1 fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28693 Type 1 fracture of sacrum, subsequent encounter for fracture with nonunion
## 28694 Type 1 fracture of sacrum, sequela
## 28695 Type 2 fracture of sacrum, initial encounter for closed fracture
## 28696 Type 2 fracture of sacrum, initial encounter for open fracture
## 28697 Type 2 fracture of sacrum, subsequent encounter for fracture with routine healing
## 28698 Type 2 fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28699 Type 2 fracture of sacrum, subsequent encounter for fracture with nonunion
## 28700 Type 2 fracture of sacrum, sequela
## 28701 Type 3 fracture of sacrum, initial encounter for closed fracture
## 28702 Type 3 fracture of sacrum, initial encounter for open fracture
## 28703 Type 3 fracture of sacrum, subsequent encounter for fracture with routine healing
## 28704 Type 3 fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28705 Type 3 fracture of sacrum, subsequent encounter for fracture with nonunion
## 28706 Type 3 fracture of sacrum, sequela
## 28707 Type 4 fracture of sacrum, initial encounter for closed fracture
## 28708 Type 4 fracture of sacrum, initial encounter for open fracture
## 28709 Type 4 fracture of sacrum, subsequent encounter for fracture with routine healing
## 28710 Type 4 fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28711 Type 4 fracture of sacrum, subsequent encounter for fracture with nonunion
## 28712 Type 4 fracture of sacrum, sequela
## 28713 Other fracture of sacrum, initial encounter for closed fracture
## 28714 Other fracture of sacrum, initial encounter for open fracture
## 28715 Other fracture of sacrum, subsequent encounter for fracture with routine healing
## 28716 Other fracture of sacrum, subsequent encounter for fracture with delayed healing
## 28717 Other fracture of sacrum, subsequent encounter for fracture with nonunion
## 28718 Other fracture of sacrum, sequela
## 28719 Fracture of coccyx, initial encounter for closed fracture
## 28720 Fracture of coccyx, initial encounter for open fracture
## 28721 Fracture of coccyx, subsequent encounter for fracture with routine healing
## 28722 Fracture of coccyx, subsequent encounter for fracture with delayed healing
## 28723 Fracture of coccyx, subsequent encounter for fracture with nonunion
## 28724 Fracture of coccyx, sequela
## 28725 Unspecified fracture of right ilium, initial encounter for closed fracture
## 28726 Unspecified fracture of right ilium, initial encounter for open fracture
## 28727 Unspecified fracture of right ilium, subsequent encounter for fracture with routine healing
## 28728 Unspecified fracture of right ilium, subsequent encounter for fracture with delayed healing
## 28729 Unspecified fracture of right ilium, subsequent encounter for fracture with nonunion
## 28730 Unspecified fracture of right ilium, sequela
## 28731 Unspecified fracture of left ilium, initial encounter for closed fracture
## 28732 Unspecified fracture of left ilium, initial encounter for open fracture
## 28733 Unspecified fracture of left ilium, subsequent encounter for fracture with routine healing
## 28734 Unspecified fracture of left ilium, subsequent encounter for fracture with delayed healing
## 28735 Unspecified fracture of left ilium, subsequent encounter for fracture with nonunion
## 28736 Unspecified fracture of left ilium, sequela
## 28737 Unspecified fracture of unspecified ilium, initial encounter for closed fracture
## 28738 Unspecified fracture of unspecified ilium, initial encounter for open fracture
## 28739 Unspecified fracture of unspecified ilium, subsequent encounter for fracture with routine healing
## 28740 Unspecified fracture of unspecified ilium, subsequent encounter for fracture with delayed healing
## 28741 Unspecified fracture of unspecified ilium, subsequent encounter for fracture with nonunion
## 28742 Unspecified fracture of unspecified ilium, sequela
## 28743 Displaced avulsion fracture of right ilium, initial encounter for closed fracture
## 28744 Displaced avulsion fracture of right ilium, initial encounter for open fracture
## 28745 Displaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing
## 28746 Displaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing
## 28747 Displaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion
## 28748 Displaced avulsion fracture of right ilium, sequela
## 28749 Displaced avulsion fracture of left ilium, initial encounter for closed fracture
## 28750 Displaced avulsion fracture of left ilium, initial encounter for open fracture
## 28751 Displaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing
## 28752 Displaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing
## 28753 Displaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion
## 28754 Displaced avulsion fracture of left ilium, sequela
## 28755 Displaced avulsion fracture of unspecified ilium, initial encounter for closed fracture
## 28756 Displaced avulsion fracture of unspecified ilium, initial encounter for open fracture
## 28757 Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with routine healing
## 28758 Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with delayed healing
## 28759 Displaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion
## 28760 Displaced avulsion fracture of unspecified ilium, sequela
## 28761 Nondisplaced avulsion fracture of right ilium, initial encounter for closed fracture
## 28762 Nondisplaced avulsion fracture of right ilium, initial encounter for open fracture
## 28763 Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with routine healing
## 28764 Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with delayed healing
## 28765 Nondisplaced avulsion fracture of right ilium, subsequent encounter for fracture with nonunion
## 28766 Nondisplaced avulsion fracture of right ilium, sequela
## 28767 Nondisplaced avulsion fracture of left ilium, initial encounter for closed fracture
## 28768 Nondisplaced avulsion fracture of left ilium, initial encounter for open fracture
## 28769 Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with routine healing
## 28770 Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with delayed healing
## 28771 Nondisplaced avulsion fracture of left ilium, subsequent encounter for fracture with nonunion
## 28772 Nondisplaced avulsion fracture of left ilium, sequela
## 28773 Nondisplaced avulsion fracture of unspecified ilium, initial encounter for closed fracture
## 28774 Nondisplaced avulsion fracture of unspecified ilium, initial encounter for open fracture
## 28775 Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with routine healing
## 28776 Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with delayed healing
## 28777 Nondisplaced avulsion fracture of unspecified ilium, subsequent encounter for fracture with nonunion
## 28778 Nondisplaced avulsion fracture of unspecified ilium, sequela
## 28779 Other fracture of right ilium, initial encounter for closed fracture
## 28780 Other fracture of right ilium, initial encounter for open fracture
## 28781 Other fracture of right ilium, subsequent encounter for fracture with routine healing
## 28782 Other fracture of right ilium, subsequent encounter for fracture with delayed healing
## 28783 Other fracture of right ilium, subsequent encounter for fracture with nonunion
## 28784 Other fracture of right ilium, sequela
## 28785 Other fracture of left ilium, initial encounter for closed fracture
## 28786 Other fracture of left ilium, initial encounter for open fracture
## 28787 Other fracture of left ilium, subsequent encounter for fracture with routine healing
## 28788 Other fracture of left ilium, subsequent encounter for fracture with delayed healing
## 28789 Other fracture of left ilium, subsequent encounter for fracture with nonunion
## 28790 Other fracture of left ilium, sequela
## 28791 Other fracture of unspecified ilium, initial encounter for closed fracture
## 28792 Other fracture of unspecified ilium, initial encounter for open fracture
## 28793 Other fracture of unspecified ilium, subsequent encounter for fracture with routine healing
## 28794 Other fracture of unspecified ilium, subsequent encounter for fracture with delayed healing
## 28795 Other fracture of unspecified ilium, subsequent encounter for fracture with nonunion
## 28796 Other fracture of unspecified ilium, sequela
## 28797 Unspecified fracture of right acetabulum, initial encounter for closed fracture
## 28798 Unspecified fracture of right acetabulum, initial encounter for open fracture
## 28799 Unspecified fracture of right acetabulum, subsequent encounter for fracture with routine healing
## 28800 Unspecified fracture of right acetabulum, subsequent encounter for fracture with delayed healing
## 28801 Unspecified fracture of right acetabulum, subsequent encounter for fracture with nonunion
## 28802 Unspecified fracture of right acetabulum, sequela
## 28803 Unspecified fracture of left acetabulum, initial encounter for closed fracture
## 28804 Unspecified fracture of left acetabulum, initial encounter for open fracture
## 28805 Unspecified fracture of left acetabulum, subsequent encounter for fracture with routine healing
## 28806 Unspecified fracture of left acetabulum, subsequent encounter for fracture with delayed healing
## 28807 Unspecified fracture of left acetabulum, subsequent encounter for fracture with nonunion
## 28808 Unspecified fracture of left acetabulum, sequela
## 28809 Unspecified fracture of unspecified acetabulum, initial encounter for closed fracture
## 28810 Unspecified fracture of unspecified acetabulum, initial encounter for open fracture
## 28811 Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28812 Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28813 Unspecified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28814 Unspecified fracture of unspecified acetabulum, sequela
## 28815 Displaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture
## 28816 Displaced fracture of anterior wall of right acetabulum, initial encounter for open fracture
## 28817 Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with routine healing
## 28818 Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with delayed healing
## 28819 Displaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with nonunion
## 28820 Displaced fracture of anterior wall of right acetabulum, sequela
## 28821 Displaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture
## 28822 Displaced fracture of anterior wall of left acetabulum, initial encounter for open fracture
## 28823 Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with routine healing
## 28824 Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with delayed healing
## 28825 Displaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with nonunion
## 28826 Displaced fracture of anterior wall of left acetabulum, sequela
## 28827 Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture
## 28828 Displaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture
## 28829 Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28830 Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28831 Displaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28832 Displaced fracture of anterior wall of unspecified acetabulum, sequela
## 28833 Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for closed fracture
## 28834 Nondisplaced fracture of anterior wall of right acetabulum, initial encounter for open fracture
## 28835 Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with routine healing
## 28836 Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with delayed healing
## 28837 Nondisplaced fracture of anterior wall of right acetabulum, subsequent encounter for fracture with nonunion
## 28838 Nondisplaced fracture of anterior wall of right acetabulum, sequela
## 28839 Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for closed fracture
## 28840 Nondisplaced fracture of anterior wall of left acetabulum, initial encounter for open fracture
## 28841 Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with routine healing
## 28842 Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with delayed healing
## 28843 Nondisplaced fracture of anterior wall of left acetabulum, subsequent encounter for fracture with nonunion
## 28844 Nondisplaced fracture of anterior wall of left acetabulum, sequela
## 28845 Nondisplaced fracture of anterior wall of unspecified acetabulum, initial encounter for closed fracture
## 28846 Nondisplaced fracture of anterior wall of unspecified acetabulum, initial encounter for open fracture
## 28847 Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28848 Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28849 Nondisplaced fracture of anterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28850 Nondisplaced fracture of anterior wall of unspecified acetabulum, sequela
## 28851 Displaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture
## 28852 Displaced fracture of posterior wall of right acetabulum, initial encounter for open fracture
## 28853 Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with routine healing
## 28854 Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with delayed healing
## 28855 Displaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with nonunion
## 28856 Displaced fracture of posterior wall of right acetabulum, sequela
## 28857 Displaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture
## 28858 Displaced fracture of posterior wall of left acetabulum, initial encounter for open fracture
## 28859 Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with routine healing
## 28860 Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with delayed healing
## 28861 Displaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with nonunion
## 28862 Displaced fracture of posterior wall of left acetabulum, sequela
## 28863 Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for closed fracture
## 28864 Displaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture
## 28865 Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28866 Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28867 Displaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28868 Displaced fracture of posterior wall of unspecified acetabulum, sequela
## 28869 Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for closed fracture
## 28870 Nondisplaced fracture of posterior wall of right acetabulum, initial encounter for open fracture
## 28871 Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with routine healing
## 28872 Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with delayed healing
## 28873 Nondisplaced fracture of posterior wall of right acetabulum, subsequent encounter for fracture with nonunion
## 28874 Nondisplaced fracture of posterior wall of right acetabulum, sequela
## 28875 Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for closed fracture
## 28876 Nondisplaced fracture of posterior wall of left acetabulum, initial encounter for open fracture
## 28877 Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with routine healing
## 28878 Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with delayed healing
## 28879 Nondisplaced fracture of posterior wall of left acetabulum, subsequent encounter for fracture with nonunion
## 28880 Nondisplaced fracture of posterior wall of left acetabulum, sequela
## 28881 Nondisplaced fracture of posterior wall of unspecified acetabulum, initial encounter for closed fracture
## 28882 Nondisplaced fracture of posterior wall of unspecified acetabulum, initial encounter for open fracture
## 28883 Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28884 Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28885 Nondisplaced fracture of posterior wall of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28886 Nondisplaced fracture of posterior wall of unspecified acetabulum, sequela
## 28887 Displaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for closed fracture
## 28888 Displaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for open fracture
## 28889 Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with routine healing
## 28890 Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with delayed healing
## 28891 Displaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with nonunion
## 28892 Displaced fracture of anterior column [iliopubic] of right acetabulum, sequela
## 28893 Displaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for closed fracture
## 28894 Displaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for open fracture
## 28895 Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with routine healing
## 28896 Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with delayed healing
## 28897 Displaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with nonunion
## 28898 Displaced fracture of anterior column [iliopubic] of left acetabulum, sequela
## 28899 Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for closed fracture
## 28900 Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for open fracture
## 28901 Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28902 Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28903 Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28904 Displaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela
## 28905 Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for closed fracture
## 28906 Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, initial encounter for open fracture
## 28907 Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with routine healing
## 28908 Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with delayed healing
## 28909 Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, subsequent encounter for fracture with nonunion
## 28910 Nondisplaced fracture of anterior column [iliopubic] of right acetabulum, sequela
## 28911 Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for closed fracture
## 28912 Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, initial encounter for open fracture
## 28913 Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with routine healing
## 28914 Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with delayed healing
## 28915 Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, subsequent encounter for fracture with nonunion
## 28916 Nondisplaced fracture of anterior column [iliopubic] of left acetabulum, sequela
## 28917 Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for closed fracture
## 28918 Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, initial encounter for open fracture
## 28919 Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28920 Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28921 Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28922 Nondisplaced fracture of anterior column [iliopubic] of unspecified acetabulum, sequela
## 28923 Displaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for closed fracture
## 28924 Displaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for open fracture
## 28925 Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with routine healing
## 28926 Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with delayed healing
## 28927 Displaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with nonunion
## 28928 Displaced fracture of posterior column [ilioischial] of right acetabulum, sequela
## 28929 Displaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for closed fracture
## 28930 Displaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for open fracture
## 28931 Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with routine healing
## 28932 Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with delayed healing
## 28933 Displaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with nonunion
## 28934 Displaced fracture of posterior column [ilioischial] of left acetabulum, sequela
## 28935 Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for closed fracture
## 28936 Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for open fracture
## 28937 Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28938 Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28939 Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28940 Displaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela
## 28941 Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for closed fracture
## 28942 Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, initial encounter for open fracture
## 28943 Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with routine healing
## 28944 Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with delayed healing
## 28945 Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, subsequent encounter for fracture with nonunion
## 28946 Nondisplaced fracture of posterior column [ilioischial] of right acetabulum, sequela
## 28947 Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for closed fracture
## 28948 Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, initial encounter for open fracture
## 28949 Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with routine healing
## 28950 Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with delayed healing
## 28951 Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, subsequent encounter for fracture with nonunion
## 28952 Nondisplaced fracture of posterior column [ilioischial] of left acetabulum, sequela
## 28953 Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for closed fracture
## 28954 Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, initial encounter for open fracture
## 28955 Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28956 Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28957 Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28958 Nondisplaced fracture of posterior column [ilioischial] of unspecified acetabulum, sequela
## 28959 Displaced transverse fracture of right acetabulum, initial encounter for closed fracture
## 28960 Displaced transverse fracture of right acetabulum, initial encounter for open fracture
## 28961 Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with routine healing
## 28962 Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with delayed healing
## 28963 Displaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion
## 28964 Displaced transverse fracture of right acetabulum, sequela
## 28965 Displaced transverse fracture of left acetabulum, initial encounter for closed fracture
## 28966 Displaced transverse fracture of left acetabulum, initial encounter for open fracture
## 28967 Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with routine healing
## 28968 Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with delayed healing
## 28969 Displaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion
## 28970 Displaced transverse fracture of left acetabulum, sequela
## 28971 Displaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture
## 28972 Displaced transverse fracture of unspecified acetabulum, initial encounter for open fracture
## 28973 Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28974 Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28975 Displaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28976 Displaced transverse fracture of unspecified acetabulum, sequela
## 28977 Nondisplaced transverse fracture of right acetabulum, initial encounter for closed fracture
## 28978 Nondisplaced transverse fracture of right acetabulum, initial encounter for open fracture
## 28979 Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with routine healing
## 28980 Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with delayed healing
## 28981 Nondisplaced transverse fracture of right acetabulum, subsequent encounter for fracture with nonunion
## 28982 Nondisplaced transverse fracture of right acetabulum, sequela
## 28983 Nondisplaced transverse fracture of left acetabulum, initial encounter for closed fracture
## 28984 Nondisplaced transverse fracture of left acetabulum, initial encounter for open fracture
## 28985 Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with routine healing
## 28986 Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with delayed healing
## 28987 Nondisplaced transverse fracture of left acetabulum, subsequent encounter for fracture with nonunion
## 28988 Nondisplaced transverse fracture of left acetabulum, sequela
## 28989 Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for closed fracture
## 28990 Nondisplaced transverse fracture of unspecified acetabulum, initial encounter for open fracture
## 28991 Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 28992 Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 28993 Nondisplaced transverse fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 28994 Nondisplaced transverse fracture of unspecified acetabulum, sequela
## 28995 Displaced associated transverse-posterior fracture of right acetabulum, initial encounter for closed fracture
## 28996 Displaced associated transverse-posterior fracture of right acetabulum, initial encounter for open fracture
## 28997 Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with routine healing
## 28998 Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing
## 28999 Displaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with nonunion
## 29000 Displaced associated transverse-posterior fracture of right acetabulum, sequela
## 29001 Displaced associated transverse-posterior fracture of left acetabulum, initial encounter for closed fracture
## 29002 Displaced associated transverse-posterior fracture of left acetabulum, initial encounter for open fracture
## 29003 Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with routine healing
## 29004 Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with delayed healing
## 29005 Displaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with nonunion
## 29006 Displaced associated transverse-posterior fracture of left acetabulum, sequela
## 29007 Displaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for closed fracture
## 29008 Displaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for open fracture
## 29009 Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 29010 Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 29011 Displaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 29012 Displaced associated transverse-posterior fracture of unspecified acetabulum, sequela
## 29013 Nondisplaced associated transverse-posterior fracture of right acetabulum, initial encounter for closed fracture
## 29014 Nondisplaced associated transverse-posterior fracture of right acetabulum, initial encounter for open fracture
## 29015 Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with routine healing
## 29016 Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with delayed healing
## 29017 Nondisplaced associated transverse-posterior fracture of right acetabulum, subsequent encounter for fracture with nonunion
## 29018 Nondisplaced associated transverse-posterior fracture of right acetabulum, sequela
## 29019 Nondisplaced associated transverse-posterior fracture of left acetabulum, initial encounter for closed fracture
## 29020 Nondisplaced associated transverse-posterior fracture of left acetabulum, initial encounter for open fracture
## 29021 Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with routine healing
## 29022 Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with delayed healing
## 29023 Nondisplaced associated transverse-posterior fracture of left acetabulum, subsequent encounter for fracture with nonunion
## 29024 Nondisplaced associated transverse-posterior fracture of left acetabulum, sequela
## 29025 Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for closed fracture
## 29026 Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, initial encounter for open fracture
## 29027 Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 29028 Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 29029 Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 29030 Nondisplaced associated transverse-posterior fracture of unspecified acetabulum, sequela
## 29031 Displaced fracture of medial wall of right acetabulum, initial encounter for closed fracture
## 29032 Displaced fracture of medial wall of right acetabulum, initial encounter for open fracture
## 29033 Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with routine healing
## 29034 Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with delayed healing
## 29035 Displaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with nonunion
## 29036 Displaced fracture of medial wall of right acetabulum, sequela
## 29037 Displaced fracture of medial wall of left acetabulum, initial encounter for closed fracture
## 29038 Displaced fracture of medial wall of left acetabulum, initial encounter for open fracture
## 29039 Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with routine healing
## 29040 Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with delayed healing
## 29041 Displaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with nonunion
## 29042 Displaced fracture of medial wall of left acetabulum, sequela
## 29043 Displaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture
## 29044 Displaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture
## 29045 Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 29046 Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 29047 Displaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 29048 Displaced fracture of medial wall of unspecified acetabulum, sequela
## 29049 Nondisplaced fracture of medial wall of right acetabulum, initial encounter for closed fracture
## 29050 Nondisplaced fracture of medial wall of right acetabulum, initial encounter for open fracture
## 29051 Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with routine healing
## 29052 Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with delayed healing
## 29053 Nondisplaced fracture of medial wall of right acetabulum, subsequent encounter for fracture with nonunion
## 29054 Nondisplaced fracture of medial wall of right acetabulum, sequela
## 29055 Nondisplaced fracture of medial wall of left acetabulum, initial encounter for closed fracture
## 29056 Nondisplaced fracture of medial wall of left acetabulum, initial encounter for open fracture
## 29057 Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with routine healing
## 29058 Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with delayed healing
## 29059 Nondisplaced fracture of medial wall of left acetabulum, subsequent encounter for fracture with nonunion
## 29060 Nondisplaced fracture of medial wall of left acetabulum, sequela
## 29061 Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for closed fracture
## 29062 Nondisplaced fracture of medial wall of unspecified acetabulum, initial encounter for open fracture
## 29063 Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 29064 Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 29065 Nondisplaced fracture of medial wall of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 29066 Nondisplaced fracture of medial wall of unspecified acetabulum, sequela
## 29067 Displaced dome fracture of right acetabulum, initial encounter for closed fracture
## 29068 Displaced dome fracture of right acetabulum, initial encounter for open fracture
## 29069 Displaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing
## 29070 Displaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing
## 29071 Displaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion
## 29072 Displaced dome fracture of right acetabulum, sequela
## 29073 Displaced dome fracture of left acetabulum, initial encounter for closed fracture
## 29074 Displaced dome fracture of left acetabulum, initial encounter for open fracture
## 29075 Displaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing
## 29076 Displaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing
## 29077 Displaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion
## 29078 Displaced dome fracture of left acetabulum, sequela
## 29079 Displaced dome fracture of unspecified acetabulum, initial encounter for closed fracture
## 29080 Displaced dome fracture of unspecified acetabulum, initial encounter for open fracture
## 29081 Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 29082 Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 29083 Displaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 29084 Displaced dome fracture of unspecified acetabulum, sequela
## 29085 Nondisplaced dome fracture of right acetabulum, initial encounter for closed fracture
## 29086 Nondisplaced dome fracture of right acetabulum, initial encounter for open fracture
## 29087 Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with routine healing
## 29088 Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with delayed healing
## 29089 Nondisplaced dome fracture of right acetabulum, subsequent encounter for fracture with nonunion
## 29090 Nondisplaced dome fracture of right acetabulum, sequela
## 29091 Nondisplaced dome fracture of left acetabulum, initial encounter for closed fracture
## 29092 Nondisplaced dome fracture of left acetabulum, initial encounter for open fracture
## 29093 Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with routine healing
## 29094 Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with delayed healing
## 29095 Nondisplaced dome fracture of left acetabulum, subsequent encounter for fracture with nonunion
## 29096 Nondisplaced dome fracture of left acetabulum, sequela
## 29097 Nondisplaced dome fracture of unspecified acetabulum, initial encounter for closed fracture
## 29098 Nondisplaced dome fracture of unspecified acetabulum, initial encounter for open fracture
## 29099 Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 29100 Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 29101 Nondisplaced dome fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 29102 Nondisplaced dome fracture of unspecified acetabulum, sequela
## 29103 Other specified fracture of right acetabulum, initial encounter for closed fracture
## 29104 Other specified fracture of right acetabulum, initial encounter for open fracture
## 29105 Other specified fracture of right acetabulum, subsequent encounter for fracture with routine healing
## 29106 Other specified fracture of right acetabulum, subsequent encounter for fracture with delayed healing
## 29107 Other specified fracture of right acetabulum, subsequent encounter for fracture with nonunion
## 29108 Other specified fracture of right acetabulum, sequela
## 29109 Other specified fracture of left acetabulum, initial encounter for closed fracture
## 29110 Other specified fracture of left acetabulum, initial encounter for open fracture
## 29111 Other specified fracture of left acetabulum, subsequent encounter for fracture with routine healing
## 29112 Other specified fracture of left acetabulum, subsequent encounter for fracture with delayed healing
## 29113 Other specified fracture of left acetabulum, subsequent encounter for fracture with nonunion
## 29114 Other specified fracture of left acetabulum, sequela
## 29115 Other specified fracture of unspecified acetabulum, initial encounter for closed fracture
## 29116 Other specified fracture of unspecified acetabulum, initial encounter for open fracture
## 29117 Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with routine healing
## 29118 Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with delayed healing
## 29119 Other specified fracture of unspecified acetabulum, subsequent encounter for fracture with nonunion
## 29120 Other specified fracture of unspecified acetabulum, sequela
## 29121 Unspecified fracture of right pubis, initial encounter for closed fracture
## 29122 Unspecified fracture of right pubis, initial encounter for open fracture
## 29123 Unspecified fracture of right pubis, subsequent encounter for fracture with routine healing
## 29124 Unspecified fracture of right pubis, subsequent encounter for fracture with delayed healing
## 29125 Unspecified fracture of right pubis, subsequent encounter for fracture with nonunion
## 29126 Unspecified fracture of right pubis, sequela
## 29127 Unspecified fracture of left pubis, initial encounter for closed fracture
## 29128 Unspecified fracture of left pubis, initial encounter for open fracture
## 29129 Unspecified fracture of left pubis, subsequent encounter for fracture with routine healing
## 29130 Unspecified fracture of left pubis, subsequent encounter for fracture with delayed healing
## 29131 Unspecified fracture of left pubis, subsequent encounter for fracture with nonunion
## 29132 Unspecified fracture of left pubis, sequela
## 29133 Unspecified fracture of unspecified pubis, initial encounter for closed fracture
## 29134 Unspecified fracture of unspecified pubis, initial encounter for open fracture
## 29135 Unspecified fracture of unspecified pubis, subsequent encounter for fracture with routine healing
## 29136 Unspecified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing
## 29137 Unspecified fracture of unspecified pubis, subsequent encounter for fracture with nonunion
## 29138 Unspecified fracture of unspecified pubis, sequela
## 29139 Fracture of superior rim of right pubis, initial encounter for closed fracture
## 29140 Fracture of superior rim of right pubis, initial encounter for open fracture
## 29141 Fracture of superior rim of right pubis, subsequent encounter for fracture with routine healing
## 29142 Fracture of superior rim of right pubis, subsequent encounter for fracture with delayed healing
## 29143 Fracture of superior rim of right pubis, subsequent encounter for fracture with nonunion
## 29144 Fracture of superior rim of right pubis, sequela
## 29145 Fracture of superior rim of left pubis, initial encounter for closed fracture
## 29146 Fracture of superior rim of left pubis, initial encounter for open fracture
## 29147 Fracture of superior rim of left pubis, subsequent encounter for fracture with routine healing
## 29148 Fracture of superior rim of left pubis, subsequent encounter for fracture with delayed healing
## 29149 Fracture of superior rim of left pubis, subsequent encounter for fracture with nonunion
## 29150 Fracture of superior rim of left pubis, sequela
## 29151 Fracture of superior rim of unspecified pubis, initial encounter for closed fracture
## 29152 Fracture of superior rim of unspecified pubis, initial encounter for open fracture
## 29153 Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with routine healing
## 29154 Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with delayed healing
## 29155 Fracture of superior rim of unspecified pubis, subsequent encounter for fracture with nonunion
## 29156 Fracture of superior rim of unspecified pubis, sequela
## 29157 Other specified fracture of right pubis, initial encounter for closed fracture
## 29158 Other specified fracture of right pubis, initial encounter for open fracture
## 29159 Other specified fracture of right pubis, subsequent encounter for fracture with routine healing
## 29160 Other specified fracture of right pubis, subsequent encounter for fracture with delayed healing
## 29161 Other specified fracture of right pubis, subsequent encounter for fracture with nonunion
## 29162 Other specified fracture of right pubis, sequela
## 29163 Other specified fracture of left pubis, initial encounter for closed fracture
## 29164 Other specified fracture of left pubis, initial encounter for open fracture
## 29165 Other specified fracture of left pubis, subsequent encounter for fracture with routine healing
## 29166 Other specified fracture of left pubis, subsequent encounter for fracture with delayed healing
## 29167 Other specified fracture of left pubis, subsequent encounter for fracture with nonunion
## 29168 Other specified fracture of left pubis, sequela
## 29169 Other specified fracture of unspecified pubis, initial encounter for closed fracture
## 29170 Other specified fracture of unspecified pubis, initial encounter for open fracture
## 29171 Other specified fracture of unspecified pubis, subsequent encounter for fracture with routine healing
## 29172 Other specified fracture of unspecified pubis, subsequent encounter for fracture with delayed healing
## 29173 Other specified fracture of unspecified pubis, subsequent encounter for fracture with nonunion
## 29174 Other specified fracture of unspecified pubis, sequela
## 29175 Unspecified fracture of right ischium, initial encounter for closed fracture
## 29176 Unspecified fracture of right ischium, initial encounter for open fracture
## 29177 Unspecified fracture of right ischium, subsequent encounter for fracture with routine healing
## 29178 Unspecified fracture of right ischium, subsequent encounter for fracture with delayed healing
## 29179 Unspecified fracture of right ischium, subsequent encounter for fracture with nonunion
## 29180 Unspecified fracture of right ischium, sequela
## 29181 Unspecified fracture of left ischium, initial encounter for closed fracture
## 29182 Unspecified fracture of left ischium, initial encounter for open fracture
## 29183 Unspecified fracture of left ischium, subsequent encounter for fracture with routine healing
## 29184 Unspecified fracture of left ischium, subsequent encounter for fracture with delayed healing
## 29185 Unspecified fracture of left ischium, subsequent encounter for fracture with nonunion
## 29186 Unspecified fracture of left ischium, sequela
## 29187 Unspecified fracture of unspecified ischium, initial encounter for closed fracture
## 29188 Unspecified fracture of unspecified ischium, initial encounter for open fracture
## 29189 Unspecified fracture of unspecified ischium, subsequent encounter for fracture with routine healing
## 29190 Unspecified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing
## 29191 Unspecified fracture of unspecified ischium, subsequent encounter for fracture with nonunion
## 29192 Unspecified fracture of unspecified ischium, sequela
## 29193 Displaced avulsion fracture of right ischium, initial encounter for closed fracture
## 29194 Displaced avulsion fracture of right ischium, initial encounter for open fracture
## 29195 Displaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing
## 29196 Displaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing
## 29197 Displaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion
## 29198 Displaced avulsion fracture of right ischium, sequela
## 29199 Displaced avulsion fracture of left ischium, initial encounter for closed fracture
## 29200 Displaced avulsion fracture of left ischium, initial encounter for open fracture
## 29201 Displaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing
## 29202 Displaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing
## 29203 Displaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion
## 29204 Displaced avulsion fracture of left ischium, sequela
## 29205 Displaced avulsion fracture of unspecified ischium, initial encounter for closed fracture
## 29206 Displaced avulsion fracture of unspecified ischium, initial encounter for open fracture
## 29207 Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with routine healing
## 29208 Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with delayed healing
## 29209 Displaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion
## 29210 Displaced avulsion fracture of unspecified ischium, sequela
## 29211 Nondisplaced avulsion fracture of right ischium, initial encounter for closed fracture
## 29212 Nondisplaced avulsion fracture of right ischium, initial encounter for open fracture
## 29213 Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with routine healing
## 29214 Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with delayed healing
## 29215 Nondisplaced avulsion fracture of right ischium, subsequent encounter for fracture with nonunion
## 29216 Nondisplaced avulsion fracture of right ischium, sequela
## 29217 Nondisplaced avulsion fracture of left ischium, initial encounter for closed fracture
## 29218 Nondisplaced avulsion fracture of left ischium, initial encounter for open fracture
## 29219 Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with routine healing
## 29220 Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with delayed healing
## 29221 Nondisplaced avulsion fracture of left ischium, subsequent encounter for fracture with nonunion
## 29222 Nondisplaced avulsion fracture of left ischium, sequela
## 29223 Nondisplaced avulsion fracture of unspecified ischium, initial encounter for closed fracture
## 29224 Nondisplaced avulsion fracture of unspecified ischium, initial encounter for open fracture
## 29225 Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with routine healing
## 29226 Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with delayed healing
## 29227 Nondisplaced avulsion fracture of unspecified ischium, subsequent encounter for fracture with nonunion
## 29228 Nondisplaced avulsion fracture of unspecified ischium, sequela
## 29229 Other specified fracture of right ischium, initial encounter for closed fracture
## 29230 Other specified fracture of right ischium, initial encounter for open fracture
## 29231 Other specified fracture of right ischium, subsequent encounter for fracture with routine healing
## 29232 Other specified fracture of right ischium, subsequent encounter for fracture with delayed healing
## 29233 Other specified fracture of right ischium, subsequent encounter for fracture with nonunion
## 29234 Other specified fracture of right ischium, sequela
## 29235 Other specified fracture of left ischium, initial encounter for closed fracture
## 29236 Other specified fracture of left ischium, initial encounter for open fracture
## 29237 Other specified fracture of left ischium, subsequent encounter for fracture with routine healing
## 29238 Other specified fracture of left ischium, subsequent encounter for fracture with delayed healing
## 29239 Other specified fracture of left ischium, subsequent encounter for fracture with nonunion
## 29240 Other specified fracture of left ischium, sequela
## 29241 Other specified fracture of unspecified ischium, initial encounter for closed fracture
## 29242 Other specified fracture of unspecified ischium, initial encounter for open fracture
## 29243 Other specified fracture of unspecified ischium, subsequent encounter for fracture with routine healing
## 29244 Other specified fracture of unspecified ischium, subsequent encounter for fracture with delayed healing
## 29245 Other specified fracture of unspecified ischium, subsequent encounter for fracture with nonunion
## 29246 Other specified fracture of unspecified ischium, sequela
## 29247 Multiple fractures of pelvis with stable disruption of pelvic ring, initial encounter for closed fracture
## 29248 Multiple fractures of pelvis with stable disruption of pelvic ring, initial encounter for open fracture
## 29249 Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with routine healing
## 29250 Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with delayed healing
## 29251 Multiple fractures of pelvis with stable disruption of pelvic ring, subsequent encounter for fracture with nonunion
## 29252 Multiple fractures of pelvis with stable disruption of pelvic ring, sequela
## 29253 Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for closed fracture
## 29254 Multiple fractures of pelvis with unstable disruption of pelvic ring, initial encounter for open fracture
## 29255 Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with routine healing
## 29256 Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with delayed healing
## 29257 Multiple fractures of pelvis with unstable disruption of pelvic ring, subsequent encounter for fracture with nonunion
## 29258 Multiple fractures of pelvis with unstable disruption of pelvic ring, sequela
## 29259 Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for closed fracture
## 29260 Multiple fractures of pelvis without disruption of pelvic ring, initial encounter for open fracture
## 29261 Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with routine healing
## 29262 Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with delayed healing
## 29263 Multiple fractures of pelvis without disruption of pelvic ring, subsequent encounter for fracture with nonunion
## 29264 Multiple fractures of pelvis without disruption of pelvic ring, sequela
## 29265 Fracture of other parts of pelvis, initial encounter for closed fracture
## 29266 Fracture of other parts of pelvis, initial encounter for open fracture
## 29267 Fracture of other parts of pelvis, subsequent encounter for fracture with routine healing
## 29268 Fracture of other parts of pelvis, subsequent encounter for fracture with delayed healing
## 29269 Fracture of other parts of pelvis, subsequent encounter for fracture with nonunion
## 29270 Fracture of other parts of pelvis, sequela
## 29271 Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for closed fracture
## 29272 Fracture of unspecified parts of lumbosacral spine and pelvis, initial encounter for open fracture
## 29273 Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with routine healing
## 29274 Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with delayed healing
## 29275 Fracture of unspecified parts of lumbosacral spine and pelvis, subsequent encounter for fracture with nonunion
## 29276 Fracture of unspecified parts of lumbosacral spine and pelvis, sequela
## 29277 Traumatic rupture of lumbar intervertebral disc, initial encounter
## 29278 Traumatic rupture of lumbar intervertebral disc, subsequent encounter
## 29279 Traumatic rupture of lumbar intervertebral disc, sequela
## 29280 Subluxation of unspecified lumbar vertebra, initial encounter
## 29281 Subluxation of unspecified lumbar vertebra, subsequent encounter
## 29282 Subluxation of unspecified lumbar vertebra, sequela
## 29283 Dislocation of unspecified lumbar vertebra, initial encounter
## 29284 Dislocation of unspecified lumbar vertebra, subsequent encounter
## 29285 Dislocation of unspecified lumbar vertebra, sequela
## 29286 Subluxation of L1/L2 lumbar vertebra, initial encounter
## 29287 Subluxation of L1/L2 lumbar vertebra, subsequent encounter
## 29288 Subluxation of L1/L2 lumbar vertebra, sequela
## 29289 Dislocation of L1/L2 lumbar vertebra, initial encounter
## 29290 Dislocation of L1/L2 lumbar vertebra, subsequent encounter
## 29291 Dislocation of L1/L2 lumbar vertebra, sequela
## 29292 Subluxation of L2/L3 lumbar vertebra, initial encounter
## 29293 Subluxation of L2/L3 lumbar vertebra, subsequent encounter
## 29294 Subluxation of L2/L3 lumbar vertebra, sequela
## 29295 Dislocation of L2/L3 lumbar vertebra, initial encounter
## 29296 Dislocation of L2/L3 lumbar vertebra, subsequent encounter
## 29297 Dislocation of L2/L3 lumbar vertebra, sequela
## 29298 Subluxation of L3/L4 lumbar vertebra, initial encounter
## 29299 Subluxation of L3/L4 lumbar vertebra, subsequent encounter
## 29300 Subluxation of L3/L4 lumbar vertebra, sequela
## 29301 Dislocation of L3/L4 lumbar vertebra, initial encounter
## 29302 Dislocation of L3/L4 lumbar vertebra, subsequent encounter
## 29303 Dislocation of L3/L4 lumbar vertebra, sequela
## 29304 Subluxation of L4/L5 lumbar vertebra, initial encounter
## 29305 Subluxation of L4/L5 lumbar vertebra, subsequent encounter
## 29306 Subluxation of L4/L5 lumbar vertebra, sequela
## 29307 Dislocation of L4/L5 lumbar vertebra, initial encounter
## 29308 Dislocation of L4/L5 lumbar vertebra, subsequent encounter
## 29309 Dislocation of L4/L5 lumbar vertebra, sequela
## 29310 Dislocation of sacroiliac and sacrococcygeal joint, initial encounter
## 29311 Dislocation of sacroiliac and sacrococcygeal joint, subsequent encounter
## 29312 Dislocation of sacroiliac and sacrococcygeal joint, sequela
## 29313 Dislocation of unspecified parts of lumbar spine and pelvis, initial encounter
## 29314 Dislocation of unspecified parts of lumbar spine and pelvis, subsequent encounter
## 29315 Dislocation of unspecified parts of lumbar spine and pelvis, sequela
## 29316 Dislocation of other parts of lumbar spine and pelvis, initial encounter
## 29317 Dislocation of other parts of lumbar spine and pelvis, subsequent encounter
## 29318 Dislocation of other parts of lumbar spine and pelvis, sequela
## 29319 Traumatic rupture of symphysis pubis, initial encounter
## 29320 Traumatic rupture of symphysis pubis, subsequent encounter
## 29321 Traumatic rupture of symphysis pubis, sequela
## 29322 Sprain of ligaments of lumbar spine, initial encounter
## 29323 Sprain of ligaments of lumbar spine, subsequent encounter
## 29324 Sprain of ligaments of lumbar spine, sequela
## 29325 Sprain of sacroiliac joint, initial encounter
## 29326 Sprain of sacroiliac joint, subsequent encounter
## 29327 Sprain of sacroiliac joint, sequela
## 29328 Sprain of other parts of lumbar spine and pelvis, initial encounter
## 29329 Sprain of other parts of lumbar spine and pelvis, subsequent encounter
## 29330 Sprain of other parts of lumbar spine and pelvis, sequela
## 29331 Sprain of unspecified parts of lumbar spine and pelvis, initial encounter
## 29332 Sprain of unspecified parts of lumbar spine and pelvis, subsequent encounter
## 29333 Sprain of unspecified parts of lumbar spine and pelvis, sequela
## 29334 Concussion and edema of lumbar spinal cord, initial encounter
## 29335 Concussion and edema of lumbar spinal cord, subsequent encounter
## 29336 Concussion and edema of lumbar spinal cord, sequela
## 29337 Concussion and edema of sacral spinal cord, initial encounter
## 29338 Concussion and edema of sacral spinal cord, subsequent encounter
## 29339 Concussion and edema of sacral spinal cord, sequela
## 29340 Unspecified injury to L1 level of lumbar spinal cord, initial encounter
## 29341 Unspecified injury to L1 level of lumbar spinal cord, subsequent encounter
## 29342 Unspecified injury to L1 level of lumbar spinal cord, sequela
## 29343 Unspecified injury to L2 level of lumbar spinal cord, initial encounter
## 29344 Unspecified injury to L2 level of lumbar spinal cord, subsequent encounter
## 29345 Unspecified injury to L2 level of lumbar spinal cord, sequela
## 29346 Unspecified injury to L3 level of lumbar spinal cord, initial encounter
## 29347 Unspecified injury to L3 level of lumbar spinal cord, subsequent encounter
## 29348 Unspecified injury to L3 level of lumbar spinal cord, sequela
## 29349 Unspecified injury to L4 level of lumbar spinal cord, initial encounter
## 29350 Unspecified injury to L4 level of lumbar spinal cord, subsequent encounter
## 29351 Unspecified injury to L4 level of lumbar spinal cord, sequela
## 29352 Unspecified injury to L5 level of lumbar spinal cord, initial encounter
## 29353 Unspecified injury to L5 level of lumbar spinal cord, subsequent encounter
## 29354 Unspecified injury to L5 level of lumbar spinal cord, sequela
## 29355 Unspecified injury to unspecified level of lumbar spinal cord, initial encounter
## 29356 Unspecified injury to unspecified level of lumbar spinal cord, subsequent encounter
## 29357 Unspecified injury to unspecified level of lumbar spinal cord, sequela
## 29358 Complete lesion of L1 level of lumbar spinal cord, initial encounter
## 29359 Complete lesion of L1 level of lumbar spinal cord, subsequent encounter
## 29360 Complete lesion of L1 level of lumbar spinal cord, sequela
## 29361 Complete lesion of L2 level of lumbar spinal cord, initial encounter
## 29362 Complete lesion of L2 level of lumbar spinal cord, subsequent encounter
## 29363 Complete lesion of L2 level of lumbar spinal cord, sequela
## 29364 Complete lesion of L3 level of lumbar spinal cord, initial encounter
## 29365 Complete lesion of L3 level of lumbar spinal cord, subsequent encounter
## 29366 Complete lesion of L3 level of lumbar spinal cord, sequela
## 29367 Complete lesion of L4 level of lumbar spinal cord, initial encounter
## 29368 Complete lesion of L4 level of lumbar spinal cord, subsequent encounter
## 29369 Complete lesion of L4 level of lumbar spinal cord, sequela
## 29370 Complete lesion of L5 level of lumbar spinal cord, initial encounter
## 29371 Complete lesion of L5 level of lumbar spinal cord, subsequent encounter
## 29372 Complete lesion of L5 level of lumbar spinal cord, sequela
## 29373 Complete lesion of unspecified level of lumbar spinal cord, initial encounter
## 29374 Complete lesion of unspecified level of lumbar spinal cord, subsequent encounter
## 29375 Complete lesion of unspecified level of lumbar spinal cord, sequela
## 29376 Incomplete lesion of L1 level of lumbar spinal cord, initial encounter
## 29377 Incomplete lesion of L1 level of lumbar spinal cord, subsequent encounter
## 29378 Incomplete lesion of L1 level of lumbar spinal cord, sequela
## 29379 Incomplete lesion of L2 level of lumbar spinal cord, initial encounter
## 29380 Incomplete lesion of L2 level of lumbar spinal cord, subsequent encounter
## 29381 Incomplete lesion of L2 level of lumbar spinal cord, sequela
## 29382 Incomplete lesion of L3 level of lumbar spinal cord, initial encounter
## 29383 Incomplete lesion of L3 level of lumbar spinal cord, subsequent encounter
## 29384 Incomplete lesion of L3 level of lumbar spinal cord, sequela
## 29385 Incomplete lesion of L4 level of lumbar spinal cord, initial encounter
## 29386 Incomplete lesion of L4 level of lumbar spinal cord, subsequent encounter
## 29387 Incomplete lesion of L4 level of lumbar spinal cord, sequela
## 29388 Incomplete lesion of L5 level of lumbar spinal cord, initial encounter
## 29389 Incomplete lesion of L5 level of lumbar spinal cord, subsequent encounter
## 29390 Incomplete lesion of L5 level of lumbar spinal cord, sequela
## 29391 Incomplete lesion of unspecified level of lumbar spinal cord, initial encounter
## 29392 Incomplete lesion of unspecified level of lumbar spinal cord, subsequent encounter
## 29393 Incomplete lesion of unspecified level of lumbar spinal cord, sequela
## 29394 Complete lesion of sacral spinal cord, initial encounter
## 29395 Complete lesion of sacral spinal cord, subsequent encounter
## 29396 Complete lesion of sacral spinal cord, sequela
## 29397 Incomplete lesion of sacral spinal cord, initial encounter
## 29398 Incomplete lesion of sacral spinal cord, subsequent encounter
## 29399 Incomplete lesion of sacral spinal cord, sequela
## 29400 Unspecified injury to sacral spinal cord, initial encounter
## 29401 Unspecified injury to sacral spinal cord, subsequent encounter
## 29402 Unspecified injury to sacral spinal cord, sequela
## 29403 Injury of nerve root of lumbar spine, initial encounter
## 29404 Injury of nerve root of lumbar spine, subsequent encounter
## 29405 Injury of nerve root of lumbar spine, sequela
## 29406 Injury of nerve root of sacral spine, initial encounter
## 29407 Injury of nerve root of sacral spine, subsequent encounter
## 29408 Injury of nerve root of sacral spine, sequela
## 29409 Injury of cauda equina, initial encounter
## 29410 Injury of cauda equina, subsequent encounter
## 29411 Injury of cauda equina, sequela
## 29412 Injury of lumbosacral plexus, initial encounter
## 29413 Injury of lumbosacral plexus, subsequent encounter
## 29414 Injury of lumbosacral plexus, sequela
## 29415 Injury of lumbar, sacral and pelvic sympathetic nerves, initial encounter
## 29416 Injury of lumbar, sacral and pelvic sympathetic nerves, subsequent encounter
## 29417 Injury of lumbar, sacral and pelvic sympathetic nerves, sequela
## 29418 Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, initial encounter
## 29419 Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, subsequent encounter
## 29420 Injury of peripheral nerve(s) at abdomen, lower back and pelvis level, sequela
## 29421 Injury of other nerves at abdomen, lower back and pelvis level, initial encounter
## 29422 Injury of other nerves at abdomen, lower back and pelvis level, subsequent encounter
## 29423 Injury of other nerves at abdomen, lower back and pelvis level, sequela
## 29424 Injury of unspecified nerves at abdomen, lower back and pelvis level, initial encounter
## 29425 Injury of unspecified nerves at abdomen, lower back and pelvis level, subsequent encounter
## 29426 Injury of unspecified nerves at abdomen, lower back and pelvis level, sequela
## 29427 Unspecified injury of abdominal aorta, initial encounter
## 29428 Unspecified injury of abdominal aorta, subsequent encounter
## 29429 Unspecified injury of abdominal aorta, sequela
## 29430 Minor laceration of abdominal aorta, initial encounter
## 29431 Minor laceration of abdominal aorta, subsequent encounter
## 29432 Minor laceration of abdominal aorta, sequela
## 29433 Major laceration of abdominal aorta, initial encounter
## 29434 Major laceration of abdominal aorta, subsequent encounter
## 29435 Major laceration of abdominal aorta, sequela
## 29436 Other injury of abdominal aorta, initial encounter
## 29437 Other injury of abdominal aorta, subsequent encounter
## 29438 Other injury of abdominal aorta, sequela
## 29439 Unspecified injury of inferior vena cava, initial encounter
## 29440 Unspecified injury of inferior vena cava, subsequent encounter
## 29441 Unspecified injury of inferior vena cava, sequela
## 29442 Minor laceration of inferior vena cava, initial encounter
## 29443 Minor laceration of inferior vena cava, subsequent encounter
## 29444 Minor laceration of inferior vena cava, sequela
## 29445 Major laceration of inferior vena cava, initial encounter
## 29446 Major laceration of inferior vena cava, subsequent encounter
## 29447 Major laceration of inferior vena cava, sequela
## 29448 Other injury of inferior vena cava, initial encounter
## 29449 Other injury of inferior vena cava, subsequent encounter
## 29450 Other injury of inferior vena cava, sequela
## 29451 Minor laceration of celiac artery, initial encounter
## 29452 Minor laceration of celiac artery, subsequent encounter
## 29453 Minor laceration of celiac artery, sequela
## 29454 Major laceration of celiac artery, initial encounter
## 29455 Major laceration of celiac artery, subsequent encounter
## 29456 Major laceration of celiac artery, sequela
## 29457 Other injury of celiac artery, initial encounter
## 29458 Other injury of celiac artery, subsequent encounter
## 29459 Other injury of celiac artery, sequela
## 29460 Unspecified injury of celiac artery, initial encounter
## 29461 Unspecified injury of celiac artery, subsequent encounter
## 29462 Unspecified injury of celiac artery, sequela
## 29463 Minor laceration of superior mesenteric artery, initial encounter
## 29464 Minor laceration of superior mesenteric artery, subsequent encounter
## 29465 Minor laceration of superior mesenteric artery, sequela
## 29466 Major laceration of superior mesenteric artery, initial encounter
## 29467 Major laceration of superior mesenteric artery, subsequent encounter
## 29468 Major laceration of superior mesenteric artery, sequela
## 29469 Other injury of superior mesenteric artery, initial encounter
## 29470 Other injury of superior mesenteric artery, subsequent encounter
## 29471 Other injury of superior mesenteric artery, sequela
## 29472 Unspecified injury of superior mesenteric artery, initial encounter
## 29473 Unspecified injury of superior mesenteric artery, subsequent encounter
## 29474 Unspecified injury of superior mesenteric artery, sequela
## 29475 Minor laceration of inferior mesenteric artery, initial encounter
## 29476 Minor laceration of inferior mesenteric artery, subsequent encounter
## 29477 Minor laceration of inferior mesenteric artery, sequela
## 29478 Major laceration of inferior mesenteric artery, initial encounter
## 29479 Major laceration of inferior mesenteric artery, subsequent encounter
## 29480 Major laceration of inferior mesenteric artery, sequela
## 29481 Other injury of inferior mesenteric artery, initial encounter
## 29482 Other injury of inferior mesenteric artery, subsequent encounter
## 29483 Other injury of inferior mesenteric artery, sequela
## 29484 Unspecified injury of inferior mesenteric artery, initial encounter
## 29485 Unspecified injury of inferior mesenteric artery, subsequent encounter
## 29486 Unspecified injury of inferior mesenteric artery, sequela
## 29487 Minor laceration of branches of celiac and mesenteric artery, initial encounter
## 29488 Minor laceration of branches of celiac and mesenteric artery, subsequent encounter
## 29489 Minor laceration of branches of celiac and mesenteric artery, sequela
## 29490 Major laceration of branches of celiac and mesenteric artery, initial encounter
## 29491 Major laceration of branches of celiac and mesenteric artery, subsequent encounter
## 29492 Major laceration of branches of celiac and mesenteric artery, sequela
## 29493 Other injury of branches of celiac and mesenteric artery, initial encounter
## 29494 Other injury of branches of celiac and mesenteric artery, subsequent encounter
## 29495 Other injury of branches of celiac and mesenteric artery, sequela
## 29496 Unspecified injury of branches of celiac and mesenteric artery, initial encounter
## 29497 Unspecified injury of branches of celiac and mesenteric artery, subsequent encounter
## 29498 Unspecified injury of branches of celiac and mesenteric artery, sequela
## 29499 Laceration of portal vein, initial encounter
## 29500 Laceration of portal vein, subsequent encounter
## 29501 Laceration of portal vein, sequela
## 29502 Other specified injury of portal vein, initial encounter
## 29503 Other specified injury of portal vein, subsequent encounter
## 29504 Other specified injury of portal vein, sequela
## 29505 Unspecified injury of portal vein, initial encounter
## 29506 Unspecified injury of portal vein, subsequent encounter
## 29507 Unspecified injury of portal vein, sequela
## 29508 Laceration of splenic vein, initial encounter
## 29509 Laceration of splenic vein, subsequent encounter
## 29510 Laceration of splenic vein, sequela
## 29511 Other specified injury of splenic vein, initial encounter
## 29512 Other specified injury of splenic vein, subsequent encounter
## 29513 Other specified injury of splenic vein, sequela
## 29514 Unspecified injury of splenic vein, initial encounter
## 29515 Unspecified injury of splenic vein, subsequent encounter
## 29516 Unspecified injury of splenic vein, sequela
## 29517 Laceration of superior mesenteric vein, initial encounter
## 29518 Laceration of superior mesenteric vein, subsequent encounter
## 29519 Laceration of superior mesenteric vein, sequela
## 29520 Other specified injury of superior mesenteric vein, initial encounter
## 29521 Other specified injury of superior mesenteric vein, subsequent encounter
## 29522 Other specified injury of superior mesenteric vein, sequela
## 29523 Unspecified injury of superior mesenteric vein, initial encounter
## 29524 Unspecified injury of superior mesenteric vein, subsequent encounter
## 29525 Unspecified injury of superior mesenteric vein, sequela
## 29526 Laceration of inferior mesenteric vein, initial encounter
## 29527 Laceration of inferior mesenteric vein, subsequent encounter
## 29528 Laceration of inferior mesenteric vein, sequela
## 29529 Other specified injury of inferior mesenteric vein, initial encounter
## 29530 Other specified injury of inferior mesenteric vein, subsequent encounter
## 29531 Other specified injury of inferior mesenteric vein, sequela
## 29532 Unspecified injury of inferior mesenteric vein, initial encounter
## 29533 Unspecified injury of inferior mesenteric vein, subsequent encounter
## 29534 Unspecified injury of inferior mesenteric vein, sequela
## 29535 Unspecified injury of right renal artery, initial encounter
## 29536 Unspecified injury of right renal artery, subsequent encounter
## 29537 Unspecified injury of right renal artery, sequela
## 29538 Unspecified injury of left renal artery, initial encounter
## 29539 Unspecified injury of left renal artery, subsequent encounter
## 29540 Unspecified injury of left renal artery, sequela
## 29541 Unspecified injury of unspecified renal artery, initial encounter
## 29542 Unspecified injury of unspecified renal artery, subsequent encounter
## 29543 Unspecified injury of unspecified renal artery, sequela
## 29544 Unspecified injury of right renal vein, initial encounter
## 29545 Unspecified injury of right renal vein, subsequent encounter
## 29546 Unspecified injury of right renal vein, sequela
## 29547 Unspecified injury of left renal vein, initial encounter
## 29548 Unspecified injury of left renal vein, subsequent encounter
## 29549 Unspecified injury of left renal vein, sequela
## 29550 Unspecified injury of unspecified renal vein, initial encounter
## 29551 Unspecified injury of unspecified renal vein, subsequent encounter
## 29552 Unspecified injury of unspecified renal vein, sequela
## 29553 Laceration of right renal artery, initial encounter
## 29554 Laceration of right renal artery, subsequent encounter
## 29555 Laceration of right renal artery, sequela
## 29556 Laceration of left renal artery, initial encounter
## 29557 Laceration of left renal artery, subsequent encounter
## 29558 Laceration of left renal artery, sequela
## 29559 Laceration of unspecified renal artery, initial encounter
## 29560 Laceration of unspecified renal artery, subsequent encounter
## 29561 Laceration of unspecified renal artery, sequela
## 29562 Laceration of right renal vein, initial encounter
## 29563 Laceration of right renal vein, subsequent encounter
## 29564 Laceration of right renal vein, sequela
## 29565 Laceration of left renal vein, initial encounter
## 29566 Laceration of left renal vein, subsequent encounter
## 29567 Laceration of left renal vein, sequela
## 29568 Laceration of unspecified renal vein, initial encounter
## 29569 Laceration of unspecified renal vein, subsequent encounter
## 29570 Laceration of unspecified renal vein, sequela
## 29571 Other specified injury of right renal artery, initial encounter
## 29572 Other specified injury of right renal artery, subsequent encounter
## 29573 Other specified injury of right renal artery, sequela
## 29574 Other specified injury of left renal artery, initial encounter
## 29575 Other specified injury of left renal artery, subsequent encounter
## 29576 Other specified injury of left renal artery, sequela
## 29577 Other specified injury of unspecified renal artery, initial encounter
## 29578 Other specified injury of unspecified renal artery, subsequent encounter
## 29579 Other specified injury of unspecified renal artery, sequela
## 29580 Other specified injury of right renal vein, initial encounter
## 29581 Other specified injury of right renal vein, subsequent encounter
## 29582 Other specified injury of right renal vein, sequela
## 29583 Other specified injury of left renal vein, initial encounter
## 29584 Other specified injury of left renal vein, subsequent encounter
## 29585 Other specified injury of left renal vein, sequela
## 29586 Other specified injury of unspecified renal vein, initial encounter
## 29587 Other specified injury of unspecified renal vein, subsequent encounter
## 29588 Other specified injury of unspecified renal vein, sequela
## 29589 Injury of unspecified iliac blood vessel(s), initial encounter
## 29590 Injury of unspecified iliac blood vessel(s), subsequent encounter
## 29591 Injury of unspecified iliac blood vessel(s), sequela
## 29592 Injury of right iliac artery, initial encounter
## 29593 Injury of right iliac artery, subsequent encounter
## 29594 Injury of right iliac artery, sequela
## 29595 Injury of left iliac artery, initial encounter
## 29596 Injury of left iliac artery, subsequent encounter
## 29597 Injury of left iliac artery, sequela
## 29598 Injury of unspecified iliac artery, initial encounter
## 29599 Injury of unspecified iliac artery, subsequent encounter
## 29600 Injury of unspecified iliac artery, sequela
## 29601 Injury of right iliac vein, initial encounter
## 29602 Injury of right iliac vein, subsequent encounter
## 29603 Injury of right iliac vein, sequela
## 29604 Injury of left iliac vein, initial encounter
## 29605 Injury of left iliac vein, subsequent encounter
## 29606 Injury of left iliac vein, sequela
## 29607 Injury of unspecified iliac vein, initial encounter
## 29608 Injury of unspecified iliac vein, subsequent encounter
## 29609 Injury of unspecified iliac vein, sequela
## 29610 Injury of right uterine artery, initial encounter
## 29611 Injury of right uterine artery, subsequent encounter
## 29612 Injury of right uterine artery, sequela
## 29613 Injury of left uterine artery, initial encounter
## 29614 Injury of left uterine artery, subsequent encounter
## 29615 Injury of left uterine artery, sequela
## 29616 Injury of unspecified uterine artery, initial encounter
## 29617 Injury of unspecified uterine artery, subsequent encounter
## 29618 Injury of unspecified uterine artery, sequela
## 29619 Injury of right uterine vein, initial encounter
## 29620 Injury of right uterine vein, subsequent encounter
## 29621 Injury of right uterine vein, sequela
## 29622 Injury of left uterine vein, initial encounter
## 29623 Injury of left uterine vein, subsequent encounter
## 29624 Injury of left uterine vein, sequela
## 29625 Injury of unspecified uterine vein, initial encounter
## 29626 Injury of unspecified uterine vein, subsequent encounter
## 29627 Injury of unspecified uterine vein, sequela
## 29628 Injury of other iliac blood vessels, initial encounter
## 29629 Injury of other iliac blood vessels, subsequent encounter
## 29630 Injury of other iliac blood vessels, sequela
## 29631 Laceration of other blood vessels at abdomen, lower back and pelvis level, initial encounter
## 29632 Laceration of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter
## 29633 Laceration of other blood vessels at abdomen, lower back and pelvis level, sequela
## 29634 Other specified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter
## 29635 Other specified injury of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter
## 29636 Other specified injury of other blood vessels at abdomen, lower back and pelvis level, sequela
## 29637 Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, initial encounter
## 29638 Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, subsequent encounter
## 29639 Unspecified injury of other blood vessels at abdomen, lower back and pelvis level, sequela
## 29640 Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter
## 29641 Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter
## 29642 Unspecified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela
## 29643 Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter
## 29644 Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter
## 29645 Laceration of unspecified blood vessel at abdomen, lower back and pelvis level, sequela
## 29646 Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, initial encounter
## 29647 Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, subsequent encounter
## 29648 Other specified injury of unspecified blood vessel at abdomen, lower back and pelvis level, sequela
## 29649 Unspecified injury of spleen, initial encounter
## 29650 Unspecified injury of spleen, subsequent encounter
## 29651 Unspecified injury of spleen, sequela
## 29652 Minor contusion of spleen, initial encounter
## 29653 Minor contusion of spleen, subsequent encounter
## 29654 Minor contusion of spleen, sequela
## 29655 Major contusion of spleen, initial encounter
## 29656 Major contusion of spleen, subsequent encounter
## 29657 Major contusion of spleen, sequela
## 29658 Unspecified contusion of spleen, initial encounter
## 29659 Unspecified contusion of spleen, subsequent encounter
## 29660 Unspecified contusion of spleen, sequela
## 29661 Superficial (capsular) laceration of spleen, initial encounter
## 29662 Superficial (capsular) laceration of spleen, subsequent encounter
## 29663 Superficial (capsular) laceration of spleen, sequela
## 29664 Moderate laceration of spleen, initial encounter
## 29665 Moderate laceration of spleen, subsequent encounter
## 29666 Moderate laceration of spleen, sequela
## 29667 Major laceration of spleen, initial encounter
## 29668 Major laceration of spleen, subsequent encounter
## 29669 Major laceration of spleen, sequela
## 29670 Unspecified laceration of spleen, initial encounter
## 29671 Unspecified laceration of spleen, subsequent encounter
## 29672 Unspecified laceration of spleen, sequela
## 29673 Other injury of spleen, initial encounter
## 29674 Other injury of spleen, subsequent encounter
## 29675 Other injury of spleen, sequela
## 29676 Contusion of liver, initial encounter
## 29677 Contusion of liver, subsequent encounter
## 29678 Contusion of liver, sequela
## 29679 Laceration of liver, unspecified degree, initial encounter
## 29680 Laceration of liver, unspecified degree, subsequent encounter
## 29681 Laceration of liver, unspecified degree, sequela
## 29682 Minor laceration of liver, initial encounter
## 29683 Minor laceration of liver, subsequent encounter
## 29684 Minor laceration of liver, sequela
## 29685 Moderate laceration of liver, initial encounter
## 29686 Moderate laceration of liver, subsequent encounter
## 29687 Moderate laceration of liver, sequela
## 29688 Major laceration of liver, initial encounter
## 29689 Major laceration of liver, subsequent encounter
## 29690 Major laceration of liver, sequela
## 29691 Other injury of liver, initial encounter
## 29692 Other injury of liver, subsequent encounter
## 29693 Other injury of liver, sequela
## 29694 Unspecified injury of liver, initial encounter
## 29695 Unspecified injury of liver, subsequent encounter
## 29696 Unspecified injury of liver, sequela
## 29697 Contusion of gallbladder, initial encounter
## 29698 Contusion of gallbladder, subsequent encounter
## 29699 Contusion of gallbladder, sequela
## 29700 Laceration of gallbladder, initial encounter
## 29701 Laceration of gallbladder, subsequent encounter
## 29702 Laceration of gallbladder, sequela
## 29703 Other injury of gallbladder, initial encounter
## 29704 Other injury of gallbladder, subsequent encounter
## 29705 Other injury of gallbladder, sequela
## 29706 Unspecified injury of gallbladder, initial encounter
## 29707 Unspecified injury of gallbladder, subsequent encounter
## 29708 Unspecified injury of gallbladder, sequela
## 29709 Injury of bile duct, initial encounter
## 29710 Injury of bile duct, subsequent encounter
## 29711 Injury of bile duct, sequela
## 29712 Unspecified injury of head of pancreas, initial encounter
## 29713 Unspecified injury of head of pancreas, subsequent encounter
## 29714 Unspecified injury of head of pancreas, sequela
## 29715 Unspecified injury of body of pancreas, initial encounter
## 29716 Unspecified injury of body of pancreas, subsequent encounter
## 29717 Unspecified injury of body of pancreas, sequela
## 29718 Unspecified injury of tail of pancreas, initial encounter
## 29719 Unspecified injury of tail of pancreas, subsequent encounter
## 29720 Unspecified injury of tail of pancreas, sequela
## 29721 Unspecified injury of unspecified part of pancreas, initial encounter
## 29722 Unspecified injury of unspecified part of pancreas, subsequent encounter
## 29723 Unspecified injury of unspecified part of pancreas, sequela
## 29724 Contusion of head of pancreas, initial encounter
## 29725 Contusion of head of pancreas, subsequent encounter
## 29726 Contusion of head of pancreas, sequela
## 29727 Contusion of body of pancreas, initial encounter
## 29728 Contusion of body of pancreas, subsequent encounter
## 29729 Contusion of body of pancreas, sequela
## 29730 Contusion of tail of pancreas, initial encounter
## 29731 Contusion of tail of pancreas, subsequent encounter
## 29732 Contusion of tail of pancreas, sequela
## 29733 Contusion of unspecified part of pancreas, initial encounter
## 29734 Contusion of unspecified part of pancreas, subsequent encounter
## 29735 Contusion of unspecified part of pancreas, sequela
## 29736 Laceration of head of pancreas, unspecified degree, initial encounter
## 29737 Laceration of head of pancreas, unspecified degree, subsequent encounter
## 29738 Laceration of head of pancreas, unspecified degree, sequela
## 29739 Laceration of body of pancreas, unspecified degree, initial encounter
## 29740 Laceration of body of pancreas, unspecified degree, subsequent encounter
## 29741 Laceration of body of pancreas, unspecified degree, sequela
## 29742 Laceration of tail of pancreas, unspecified degree, initial encounter
## 29743 Laceration of tail of pancreas, unspecified degree, subsequent encounter
## 29744 Laceration of tail of pancreas, unspecified degree, sequela
## 29745 Laceration of unspecified part of pancreas, unspecified degree, initial encounter
## 29746 Laceration of unspecified part of pancreas, unspecified degree, subsequent encounter
## 29747 Laceration of unspecified part of pancreas, unspecified degree, sequela
## 29748 Minor laceration of head of pancreas, initial encounter
## 29749 Minor laceration of head of pancreas, subsequent encounter
## 29750 Minor laceration of head of pancreas, sequela
## 29751 Minor laceration of body of pancreas, initial encounter
## 29752 Minor laceration of body of pancreas, subsequent encounter
## 29753 Minor laceration of body of pancreas, sequela
## 29754 Minor laceration of tail of pancreas, initial encounter
## 29755 Minor laceration of tail of pancreas, subsequent encounter
## 29756 Minor laceration of tail of pancreas, sequela
## 29757 Minor laceration of unspecified part of pancreas, initial encounter
## 29758 Minor laceration of unspecified part of pancreas, subsequent encounter
## 29759 Minor laceration of unspecified part of pancreas, sequela
## 29760 Moderate laceration of head of pancreas, initial encounter
## 29761 Moderate laceration of head of pancreas, subsequent encounter
## 29762 Moderate laceration of head of pancreas, sequela
## 29763 Moderate laceration of body of pancreas, initial encounter
## 29764 Moderate laceration of body of pancreas, subsequent encounter
## 29765 Moderate laceration of body of pancreas, sequela
## 29766 Moderate laceration of tail of pancreas, initial encounter
## 29767 Moderate laceration of tail of pancreas, subsequent encounter
## 29768 Moderate laceration of tail of pancreas, sequela
## 29769 Moderate laceration of unspecified part of pancreas, initial encounter
## 29770 Moderate laceration of unspecified part of pancreas, subsequent encounter
## 29771 Moderate laceration of unspecified part of pancreas, sequela
## 29772 Major laceration of head of pancreas, initial encounter
## 29773 Major laceration of head of pancreas, subsequent encounter
## 29774 Major laceration of head of pancreas, sequela
## 29775 Major laceration of body of pancreas, initial encounter
## 29776 Major laceration of body of pancreas, subsequent encounter
## 29777 Major laceration of body of pancreas, sequela
## 29778 Major laceration of tail of pancreas, initial encounter
## 29779 Major laceration of tail of pancreas, subsequent encounter
## 29780 Major laceration of tail of pancreas, sequela
## 29781 Major laceration of unspecified part of pancreas, initial encounter
## 29782 Major laceration of unspecified part of pancreas, subsequent encounter
## 29783 Major laceration of unspecified part of pancreas, sequela
## 29784 Other injury of head of pancreas, initial encounter
## 29785 Other injury of head of pancreas, subsequent encounter
## 29786 Other injury of head of pancreas, sequela
## 29787 Other injury of body of pancreas, initial encounter
## 29788 Other injury of body of pancreas, subsequent encounter
## 29789 Other injury of body of pancreas, sequela
## 29790 Other injury of tail of pancreas, initial encounter
## 29791 Other injury of tail of pancreas, subsequent encounter
## 29792 Other injury of tail of pancreas, sequela
## 29793 Other injury of unspecified part of pancreas, initial encounter
## 29794 Other injury of unspecified part of pancreas, subsequent encounter
## 29795 Other injury of unspecified part of pancreas, sequela
## 29796 Unspecified injury of stomach, initial encounter
## 29797 Unspecified injury of stomach, subsequent encounter
## 29798 Unspecified injury of stomach, sequela
## 29799 Contusion of stomach, initial encounter
## 29800 Contusion of stomach, subsequent encounter
## 29801 Contusion of stomach, sequela
## 29802 Laceration of stomach, initial encounter
## 29803 Laceration of stomach, subsequent encounter
## 29804 Laceration of stomach, sequela
## 29805 Other injury of stomach, initial encounter
## 29806 Other injury of stomach, subsequent encounter
## 29807 Other injury of stomach, sequela
## 29808 Unspecified injury of duodenum, initial encounter
## 29809 Unspecified injury of duodenum, subsequent encounter
## 29810 Unspecified injury of duodenum, sequela
## 29811 Unspecified injury of other part of small intestine, initial encounter
## 29812 Unspecified injury of other part of small intestine, subsequent encounter
## 29813 Unspecified injury of other part of small intestine, sequela
## 29814 Unspecified injury of unspecified part of small intestine, initial encounter
## 29815 Unspecified injury of unspecified part of small intestine, subsequent encounter
## 29816 Unspecified injury of unspecified part of small intestine, sequela
## 29817 Primary blast injury of duodenum, initial encounter
## 29818 Primary blast injury of duodenum, subsequent encounter
## 29819 Primary blast injury of duodenum, sequela
## 29820 Primary blast injury of other part of small intestine, initial encounter
## 29821 Primary blast injury of other part of small intestine, subsequent encounter
## 29822 Primary blast injury of other part of small intestine, sequela
## 29823 Primary blast injury of unspecified part of small intestine, initial encounter
## 29824 Primary blast injury of unspecified part of small intestine, subsequent encounter
## 29825 Primary blast injury of unspecified part of small intestine, sequela
## 29826 Contusion of duodenum, initial encounter
## 29827 Contusion of duodenum, subsequent encounter
## 29828 Contusion of duodenum, sequela
## 29829 Contusion of other part of small intestine, initial encounter
## 29830 Contusion of other part of small intestine, subsequent encounter
## 29831 Contusion of other part of small intestine, sequela
## 29832 Contusion of unspecified part of small intestine, initial encounter
## 29833 Contusion of unspecified part of small intestine, subsequent encounter
## 29834 Contusion of unspecified part of small intestine, sequela
## 29835 Laceration of duodenum, initial encounter
## 29836 Laceration of duodenum, subsequent encounter
## 29837 Laceration of duodenum, sequela
## 29838 Laceration of other part of small intestine, initial encounter
## 29839 Laceration of other part of small intestine, subsequent encounter
## 29840 Laceration of other part of small intestine, sequela
## 29841 Laceration of unspecified part of small intestine, initial encounter
## 29842 Laceration of unspecified part of small intestine, subsequent encounter
## 29843 Laceration of unspecified part of small intestine, sequela
## 29844 Other injury of duodenum, initial encounter
## 29845 Other injury of duodenum, subsequent encounter
## 29846 Other injury of duodenum, sequela
## 29847 Other injury of other part of small intestine, initial encounter
## 29848 Other injury of other part of small intestine, subsequent encounter
## 29849 Other injury of other part of small intestine, sequela
## 29850 Other injury of unspecified part of small intestine, initial encounter
## 29851 Other injury of unspecified part of small intestine, subsequent encounter
## 29852 Other injury of unspecified part of small intestine, sequela
## 29853 Unspecified injury of ascending [right] colon, initial encounter
## 29854 Unspecified injury of ascending [right] colon, subsequent encounter
## 29855 Unspecified injury of ascending [right] colon, sequela
## 29856 Unspecified injury of transverse colon, initial encounter
## 29857 Unspecified injury of transverse colon, subsequent encounter
## 29858 Unspecified injury of transverse colon, sequela
## 29859 Unspecified injury of descending [left] colon, initial encounter
## 29860 Unspecified injury of descending [left] colon, subsequent encounter
## 29861 Unspecified injury of descending [left] colon, sequela
## 29862 Unspecified injury of sigmoid colon, initial encounter
## 29863 Unspecified injury of sigmoid colon, subsequent encounter
## 29864 Unspecified injury of sigmoid colon, sequela
## 29865 Unspecified injury of other part of colon, initial encounter
## 29866 Unspecified injury of other part of colon, subsequent encounter
## 29867 Unspecified injury of other part of colon, sequela
## 29868 Unspecified injury of unspecified part of colon, initial encounter
## 29869 Unspecified injury of unspecified part of colon, subsequent encounter
## 29870 Unspecified injury of unspecified part of colon, sequela
## 29871 Primary blast injury of ascending [right] colon, initial encounter
## 29872 Primary blast injury of ascending [right] colon, subsequent encounter
## 29873 Primary blast injury of ascending [right] colon, sequela
## 29874 Primary blast injury of transverse colon, initial encounter
## 29875 Primary blast injury of transverse colon, subsequent encounter
## 29876 Primary blast injury of transverse colon, sequela
## 29877 Primary blast injury of descending [left] colon, initial encounter
## 29878 Primary blast injury of descending [left] colon, subsequent encounter
## 29879 Primary blast injury of descending [left] colon, sequela
## 29880 Primary blast injury of sigmoid colon, initial encounter
## 29881 Primary blast injury of sigmoid colon, subsequent encounter
## 29882 Primary blast injury of sigmoid colon, sequela
## 29883 Primary blast injury of other part of colon, initial encounter
## 29884 Primary blast injury of other part of colon, subsequent encounter
## 29885 Primary blast injury of other part of colon, sequela
## 29886 Primary blast injury of unspecified part of colon, initial encounter
## 29887 Primary blast injury of unspecified part of colon, subsequent encounter
## 29888 Primary blast injury of unspecified part of colon, sequela
## 29889 Contusion of ascending [right] colon, initial encounter
## 29890 Contusion of ascending [right] colon, subsequent encounter
## 29891 Contusion of ascending [right] colon, sequela
## 29892 Contusion of transverse colon, initial encounter
## 29893 Contusion of transverse colon, subsequent encounter
## 29894 Contusion of transverse colon, sequela
## 29895 Contusion of descending [left] colon, initial encounter
## 29896 Contusion of descending [left] colon, subsequent encounter
## 29897 Contusion of descending [left] colon, sequela
## 29898 Contusion of sigmoid colon, initial encounter
## 29899 Contusion of sigmoid colon, subsequent encounter
## 29900 Contusion of sigmoid colon, sequela
## 29901 Contusion of other part of colon, initial encounter
## 29902 Contusion of other part of colon, subsequent encounter
## 29903 Contusion of other part of colon, sequela
## 29904 Contusion of unspecified part of colon, initial encounter
## 29905 Contusion of unspecified part of colon, subsequent encounter
## 29906 Contusion of unspecified part of colon, sequela
## 29907 Laceration of ascending [right] colon, initial encounter
## 29908 Laceration of ascending [right] colon, subsequent encounter
## 29909 Laceration of ascending [right] colon, sequela
## 29910 Laceration of transverse colon, initial encounter
## 29911 Laceration of transverse colon, subsequent encounter
## 29912 Laceration of transverse colon, sequela
## 29913 Laceration of descending [left] colon, initial encounter
## 29914 Laceration of descending [left] colon, subsequent encounter
## 29915 Laceration of descending [left] colon, sequela
## 29916 Laceration of sigmoid colon, initial encounter
## 29917 Laceration of sigmoid colon, subsequent encounter
## 29918 Laceration of sigmoid colon, sequela
## 29919 Laceration of other part of colon, initial encounter
## 29920 Laceration of other part of colon, subsequent encounter
## 29921 Laceration of other part of colon, sequela
## 29922 Laceration of unspecified part of colon, initial encounter
## 29923 Laceration of unspecified part of colon, subsequent encounter
## 29924 Laceration of unspecified part of colon, sequela
## 29925 Other injury of ascending [right] colon, initial encounter
## 29926 Other injury of ascending [right] colon, subsequent encounter
## 29927 Other injury of ascending [right] colon, sequela
## 29928 Other injury of transverse colon, initial encounter
## 29929 Other injury of transverse colon, subsequent encounter
## 29930 Other injury of transverse colon, sequela
## 29931 Other injury of descending [left] colon, initial encounter
## 29932 Other injury of descending [left] colon, subsequent encounter
## 29933 Other injury of descending [left] colon, sequela
## 29934 Other injury of sigmoid colon, initial encounter
## 29935 Other injury of sigmoid colon, subsequent encounter
## 29936 Other injury of sigmoid colon, sequela
## 29937 Other injury of other part of colon, initial encounter
## 29938 Other injury of other part of colon, subsequent encounter
## 29939 Other injury of other part of colon, sequela
## 29940 Other injury of unspecified part of colon, initial encounter
## 29941 Other injury of unspecified part of colon, subsequent encounter
## 29942 Other injury of unspecified part of colon, sequela
## 29943 Unspecified injury of rectum, initial encounter
## 29944 Unspecified injury of rectum, subsequent encounter
## 29945 Unspecified injury of rectum, sequela
## 29946 Primary blast injury of rectum, initial encounter
## 29947 Primary blast injury of rectum, subsequent encounter
## 29948 Primary blast injury of rectum, sequela
## 29949 Contusion of rectum, initial encounter
## 29950 Contusion of rectum, subsequent encounter
## 29951 Contusion of rectum, sequela
## 29952 Laceration of rectum, initial encounter
## 29953 Laceration of rectum, subsequent encounter
## 29954 Laceration of rectum, sequela
## 29955 Other injury of rectum, initial encounter
## 29956 Other injury of rectum, subsequent encounter
## 29957 Other injury of rectum, sequela
## 29958 Injury of peritoneum, initial encounter
## 29959 Injury of peritoneum, subsequent encounter
## 29960 Injury of peritoneum, sequela
## 29961 Contusion of other intra-abdominal organs, initial encounter
## 29962 Contusion of other intra-abdominal organs, subsequent encounter
## 29963 Contusion of other intra-abdominal organs, sequela
## 29964 Laceration of other intra-abdominal organs, initial encounter
## 29965 Laceration of other intra-abdominal organs, subsequent encounter
## 29966 Laceration of other intra-abdominal organs, sequela
## 29967 Other injury of other intra-abdominal organs, initial encounter
## 29968 Other injury of other intra-abdominal organs, subsequent encounter
## 29969 Other injury of other intra-abdominal organs, sequela
## 29970 Unspecified injury of other intra-abdominal organs, initial encounter
## 29971 Unspecified injury of other intra-abdominal organs, subsequent encounter
## 29972 Unspecified injury of other intra-abdominal organs, sequela
## 29973 Unspecified injury of unspecified intra-abdominal organ, initial encounter
## 29974 Unspecified injury of unspecified intra-abdominal organ, subsequent encounter
## 29975 Unspecified injury of unspecified intra-abdominal organ, sequela
## 29976 Contusion of unspecified intra-abdominal organ, initial encounter
## 29977 Contusion of unspecified intra-abdominal organ, subsequent encounter
## 29978 Contusion of unspecified intra-abdominal organ, sequela
## 29979 Laceration of unspecified intra-abdominal organ, initial encounter
## 29980 Laceration of unspecified intra-abdominal organ, subsequent encounter
## 29981 Laceration of unspecified intra-abdominal organ, sequela
## 29982 Other injury of unspecified intra-abdominal organ, initial encounter
## 29983 Other injury of unspecified intra-abdominal organ, subsequent encounter
## 29984 Other injury of unspecified intra-abdominal organ, sequela
## 29985 Unspecified injury of right kidney, initial encounter
## 29986 Unspecified injury of right kidney, subsequent encounter
## 29987 Unspecified injury of right kidney, sequela
## 29988 Unspecified injury of left kidney, initial encounter
## 29989 Unspecified injury of left kidney, subsequent encounter
## 29990 Unspecified injury of left kidney, sequela
## 29991 Unspecified injury of unspecified kidney, initial encounter
## 29992 Unspecified injury of unspecified kidney, subsequent encounter
## 29993 Unspecified injury of unspecified kidney, sequela
## 29994 Minor contusion of right kidney, initial encounter
## 29995 Minor contusion of right kidney, subsequent encounter
## 29996 Minor contusion of right kidney, sequela
## 29997 Minor contusion of left kidney, initial encounter
## 29998 Minor contusion of left kidney, subsequent encounter
## 29999 Minor contusion of left kidney, sequela
## 30000 Minor contusion of unspecified kidney, initial encounter
## 30001 Minor contusion of unspecified kidney, subsequent encounter
## 30002 Minor contusion of unspecified kidney, sequela
## 30003 Major contusion of right kidney, initial encounter
## 30004 Major contusion of right kidney, subsequent encounter
## 30005 Major contusion of right kidney, sequela
## 30006 Major contusion of left kidney, initial encounter
## 30007 Major contusion of left kidney, subsequent encounter
## 30008 Major contusion of left kidney, sequela
## 30009 Major contusion of unspecified kidney, initial encounter
## 30010 Major contusion of unspecified kidney, subsequent encounter
## 30011 Major contusion of unspecified kidney, sequela
## 30012 Laceration of right kidney, unspecified degree, initial encounter
## 30013 Laceration of right kidney, unspecified degree, subsequent encounter
## 30014 Laceration of right kidney, unspecified degree, sequela
## 30015 Laceration of left kidney, unspecified degree, initial encounter
## 30016 Laceration of left kidney, unspecified degree, subsequent encounter
## 30017 Laceration of left kidney, unspecified degree, sequela
## 30018 Laceration of unspecified kidney, unspecified degree, initial encounter
## 30019 Laceration of unspecified kidney, unspecified degree, subsequent encounter
## 30020 Laceration of unspecified kidney, unspecified degree, sequela
## 30021 Minor laceration of right kidney, initial encounter
## 30022 Minor laceration of right kidney, subsequent encounter
## 30023 Minor laceration of right kidney, sequela
## 30024 Minor laceration of left kidney, initial encounter
## 30025 Minor laceration of left kidney, subsequent encounter
## 30026 Minor laceration of left kidney, sequela
## 30027 Minor laceration of unspecified kidney, initial encounter
## 30028 Minor laceration of unspecified kidney, subsequent encounter
## 30029 Minor laceration of unspecified kidney, sequela
## 30030 Moderate laceration of right kidney, initial encounter
## 30031 Moderate laceration of right kidney, subsequent encounter
## 30032 Moderate laceration of right kidney, sequela
## 30033 Moderate laceration of left kidney, initial encounter
## 30034 Moderate laceration of left kidney, subsequent encounter
## 30035 Moderate laceration of left kidney, sequela
## 30036 Moderate laceration of unspecified kidney, initial encounter
## 30037 Moderate laceration of unspecified kidney, subsequent encounter
## 30038 Moderate laceration of unspecified kidney, sequela
## 30039 Major laceration of right kidney, initial encounter
## 30040 Major laceration of right kidney, subsequent encounter
## 30041 Major laceration of right kidney, sequela
## 30042 Major laceration of left kidney, initial encounter
## 30043 Major laceration of left kidney, subsequent encounter
## 30044 Major laceration of left kidney, sequela
## 30045 Major laceration of unspecified kidney, initial encounter
## 30046 Major laceration of unspecified kidney, subsequent encounter
## 30047 Major laceration of unspecified kidney, sequela
## 30048 Other injury of right kidney, initial encounter
## 30049 Other injury of right kidney, subsequent encounter
## 30050 Other injury of right kidney, sequela
## 30051 Other injury of left kidney, initial encounter
## 30052 Other injury of left kidney, subsequent encounter
## 30053 Other injury of left kidney, sequela
## 30054 Other injury of unspecified kidney, initial encounter
## 30055 Other injury of unspecified kidney, subsequent encounter
## 30056 Other injury of unspecified kidney, sequela
## 30057 Unspecified injury of ureter, initial encounter
## 30058 Unspecified injury of ureter, subsequent encounter
## 30059 Unspecified injury of ureter, sequela
## 30060 Contusion of ureter, initial encounter
## 30061 Contusion of ureter, subsequent encounter
## 30062 Contusion of ureter, sequela
## 30063 Laceration of ureter, initial encounter
## 30064 Laceration of ureter, subsequent encounter
## 30065 Laceration of ureter, sequela
## 30066 Other injury of ureter, initial encounter
## 30067 Other injury of ureter, subsequent encounter
## 30068 Other injury of ureter, sequela
## 30069 Unspecified injury of bladder, initial encounter
## 30070 Unspecified injury of bladder, subsequent encounter
## 30071 Unspecified injury of bladder, sequela
## 30072 Contusion of bladder, initial encounter
## 30073 Contusion of bladder, subsequent encounter
## 30074 Contusion of bladder, sequela
## 30075 Laceration of bladder, initial encounter
## 30076 Laceration of bladder, subsequent encounter
## 30077 Laceration of bladder, sequela
## 30078 Other injury of bladder, initial encounter
## 30079 Other injury of bladder, subsequent encounter
## 30080 Other injury of bladder, sequela
## 30081 Unspecified injury of urethra, initial encounter
## 30082 Unspecified injury of urethra, subsequent encounter
## 30083 Unspecified injury of urethra, sequela
## 30084 Contusion of urethra, initial encounter
## 30085 Contusion of urethra, subsequent encounter
## 30086 Contusion of urethra, sequela
## 30087 Laceration of urethra, initial encounter
## 30088 Laceration of urethra, subsequent encounter
## 30089 Laceration of urethra, sequela
## 30090 Other injury of urethra, initial encounter
## 30091 Other injury of urethra, subsequent encounter
## 30092 Other injury of urethra, sequela
## 30093 Unspecified injury of ovary, unilateral, initial encounter
## 30094 Unspecified injury of ovary, unilateral, subsequent encounter
## 30095 Unspecified injury of ovary, unilateral, sequela
## 30096 Unspecified injury of ovary, bilateral, initial encounter
## 30097 Unspecified injury of ovary, bilateral, subsequent encounter
## 30098 Unspecified injury of ovary, bilateral, sequela
## 30099 Unspecified injury of ovary, unspecified, initial encounter
## 30100 Unspecified injury of ovary, unspecified, subsequent encounter
## 30101 Unspecified injury of ovary, unspecified, sequela
## 30102 Contusion of ovary, unilateral, initial encounter
## 30103 Contusion of ovary, unilateral, subsequent encounter
## 30104 Contusion of ovary, unilateral, sequela
## 30105 Contusion of ovary, bilateral, initial encounter
## 30106 Contusion of ovary, bilateral, subsequent encounter
## 30107 Contusion of ovary, bilateral, sequela
## 30108 Contusion of ovary, unspecified, initial encounter
## 30109 Contusion of ovary, unspecified, subsequent encounter
## 30110 Contusion of ovary, unspecified, sequela
## 30111 Laceration of ovary, unilateral, initial encounter
## 30112 Laceration of ovary, unilateral, subsequent encounter
## 30113 Laceration of ovary, unilateral, sequela
## 30114 Laceration of ovary, bilateral, initial encounter
## 30115 Laceration of ovary, bilateral, subsequent encounter
## 30116 Laceration of ovary, bilateral, sequela
## 30117 Laceration of ovary, unspecified, initial encounter
## 30118 Laceration of ovary, unspecified, subsequent encounter
## 30119 Laceration of ovary, unspecified, sequela
## 30120 Other injury of ovary, unilateral, initial encounter
## 30121 Other injury of ovary, unilateral, subsequent encounter
## 30122 Other injury of ovary, unilateral, sequela
## 30123 Other injury of ovary, bilateral, initial encounter
## 30124 Other injury of ovary, bilateral, subsequent encounter
## 30125 Other injury of ovary, bilateral, sequela
## 30126 Other injury of ovary, unspecified, initial encounter
## 30127 Other injury of ovary, unspecified, subsequent encounter
## 30128 Other injury of ovary, unspecified, sequela
## 30129 Unspecified injury of fallopian tube, unilateral, initial encounter
## 30130 Unspecified injury of fallopian tube, unilateral, subsequent encounter
## 30131 Unspecified injury of fallopian tube, unilateral, sequela
## 30132 Unspecified injury of fallopian tube, bilateral, initial encounter
## 30133 Unspecified injury of fallopian tube, bilateral, subsequent encounter
## 30134 Unspecified injury of fallopian tube, bilateral, sequela
## 30135 Unspecified injury of fallopian tube, unspecified, initial encounter
## 30136 Unspecified injury of fallopian tube, unspecified, subsequent encounter
## 30137 Unspecified injury of fallopian tube, unspecified, sequela
## 30138 Primary blast injury of fallopian tube, unilateral, initial encounter
## 30139 Primary blast injury of fallopian tube, unilateral, subsequent encounter
## 30140 Primary blast injury of fallopian tube, unilateral, sequela
## 30141 Primary blast injury of fallopian tube, bilateral, initial encounter
## 30142 Primary blast injury of fallopian tube, bilateral, subsequent encounter
## 30143 Primary blast injury of fallopian tube, bilateral, sequela
## 30144 Primary blast injury of fallopian tube, unspecified, initial encounter
## 30145 Primary blast injury of fallopian tube, unspecified, subsequent encounter
## 30146 Primary blast injury of fallopian tube, unspecified, sequela
## 30147 Contusion of fallopian tube, unilateral, initial encounter
## 30148 Contusion of fallopian tube, unilateral, subsequent encounter
## 30149 Contusion of fallopian tube, unilateral, sequela
## 30150 Contusion of fallopian tube, bilateral, initial encounter
## 30151 Contusion of fallopian tube, bilateral, subsequent encounter
## 30152 Contusion of fallopian tube, bilateral, sequela
## 30153 Contusion of fallopian tube, unspecified, initial encounter
## 30154 Contusion of fallopian tube, unspecified, subsequent encounter
## 30155 Contusion of fallopian tube, unspecified, sequela
## 30156 Laceration of fallopian tube, unilateral, initial encounter
## 30157 Laceration of fallopian tube, unilateral, subsequent encounter
## 30158 Laceration of fallopian tube, unilateral, sequela
## 30159 Laceration of fallopian tube, bilateral, initial encounter
## 30160 Laceration of fallopian tube, bilateral, subsequent encounter
## 30161 Laceration of fallopian tube, bilateral, sequela
## 30162 Laceration of fallopian tube, unspecified, initial encounter
## 30163 Laceration of fallopian tube, unspecified, subsequent encounter
## 30164 Laceration of fallopian tube, unspecified, sequela
## 30165 Other injury of fallopian tube, unilateral, initial encounter
## 30166 Other injury of fallopian tube, unilateral, subsequent encounter
## 30167 Other injury of fallopian tube, unilateral, sequela
## 30168 Other injury of fallopian tube, bilateral, initial encounter
## 30169 Other injury of fallopian tube, bilateral, subsequent encounter
## 30170 Other injury of fallopian tube, bilateral, sequela
## 30171 Other injury of fallopian tube, unspecified, initial encounter
## 30172 Other injury of fallopian tube, unspecified, subsequent encounter
## 30173 Other injury of fallopian tube, unspecified, sequela
## 30174 Unspecified injury of uterus, initial encounter
## 30175 Unspecified injury of uterus, subsequent encounter
## 30176 Unspecified injury of uterus, sequela
## 30177 Contusion of uterus, initial encounter
## 30178 Contusion of uterus, subsequent encounter
## 30179 Contusion of uterus, sequela
## 30180 Laceration of uterus, initial encounter
## 30181 Laceration of uterus, subsequent encounter
## 30182 Laceration of uterus, sequela
## 30183 Other injury of uterus, initial encounter
## 30184 Other injury of uterus, subsequent encounter
## 30185 Other injury of uterus, sequela
## 30186 Contusion of adrenal gland, initial encounter
## 30187 Contusion of adrenal gland, subsequent encounter
## 30188 Contusion of adrenal gland, sequela
## 30189 Laceration of adrenal gland, initial encounter
## 30190 Laceration of adrenal gland, subsequent encounter
## 30191 Laceration of adrenal gland, sequela
## 30192 Other injury of adrenal gland, initial encounter
## 30193 Other injury of adrenal gland, subsequent encounter
## 30194 Other injury of adrenal gland, sequela
## 30195 Unspecified injury of adrenal gland, initial encounter
## 30196 Unspecified injury of adrenal gland, subsequent encounter
## 30197 Unspecified injury of adrenal gland, sequela
## 30198 Contusion of prostate, initial encounter
## 30199 Contusion of prostate, subsequent encounter
## 30200 Contusion of prostate, sequela
## 30201 Laceration of prostate, initial encounter
## 30202 Laceration of prostate, subsequent encounter
## 30203 Laceration of prostate, sequela
## 30204 Other injury of prostate, initial encounter
## 30205 Other injury of prostate, subsequent encounter
## 30206 Other injury of prostate, sequela
## 30207 Unspecified injury of prostate, initial encounter
## 30208 Unspecified injury of prostate, subsequent encounter
## 30209 Unspecified injury of prostate, sequela
## 30210 Contusion of other urinary and pelvic organ, initial encounter
## 30211 Contusion of other urinary and pelvic organ, subsequent encounter
## 30212 Contusion of other urinary and pelvic organ, sequela
## 30213 Laceration of other urinary and pelvic organ, initial encounter
## 30214 Laceration of other urinary and pelvic organ, subsequent encounter
## 30215 Laceration of other urinary and pelvic organ, sequela
## 30216 Other injury of other urinary and pelvic organ, initial encounter
## 30217 Other injury of other urinary and pelvic organ, subsequent encounter
## 30218 Other injury of other urinary and pelvic organ, sequela
## 30219 Unspecified injury of other urinary and pelvic organ, initial encounter
## 30220 Unspecified injury of other urinary and pelvic organ, subsequent encounter
## 30221 Unspecified injury of other urinary and pelvic organ, sequela
## 30222 Unspecified injury of unspecified urinary and pelvic organ, initial encounter
## 30223 Unspecified injury of unspecified urinary and pelvic organ, subsequent encounter
## 30224 Unspecified injury of unspecified urinary and pelvic organ, sequela
## 30225 Contusion of unspecified urinary and pelvic organ, initial encounter
## 30226 Contusion of unspecified urinary and pelvic organ, subsequent encounter
## 30227 Contusion of unspecified urinary and pelvic organ, sequela
## 30228 Laceration of unspecified urinary and pelvic organ, initial encounter
## 30229 Laceration of unspecified urinary and pelvic organ, subsequent encounter
## 30230 Laceration of unspecified urinary and pelvic organ, sequela
## 30231 Other injury of unspecified urinary and pelvic organ, initial encounter
## 30232 Other injury of unspecified urinary and pelvic organ, subsequent encounter
## 30233 Other injury of unspecified urinary and pelvic organ, sequela
## 30234 Crushing injury of unspecified external genital organs, male, initial encounter
## 30235 Crushing injury of unspecified external genital organs, male, subsequent encounter
## 30236 Crushing injury of unspecified external genital organs, male, sequela
## 30237 Crushing injury of unspecified external genital organs, female, initial encounter
## 30238 Crushing injury of unspecified external genital organs, female, subsequent encounter
## 30239 Crushing injury of unspecified external genital organs, female, sequela
## 30240 Crushing injury of penis, initial encounter
## 30241 Crushing injury of penis, subsequent encounter
## 30242 Crushing injury of penis, sequela
## 30243 Crushing injury of scrotum and testis, initial encounter
## 30244 Crushing injury of scrotum and testis, subsequent encounter
## 30245 Crushing injury of scrotum and testis, sequela
## 30246 Crushing injury of vulva, initial encounter
## 30247 Crushing injury of vulva, subsequent encounter
## 30248 Crushing injury of vulva, sequela
## 30249 Crushing injury of abdomen, lower back, and pelvis, initial encounter
## 30250 Crushing injury of abdomen, lower back, and pelvis, subsequent encounter
## 30251 Crushing injury of abdomen, lower back, and pelvis, sequela
## 30252 Complete traumatic amputation of female external genital organs, initial encounter
## 30253 Complete traumatic amputation of female external genital organs, subsequent encounter
## 30254 Complete traumatic amputation of female external genital organs, sequela
## 30255 Partial traumatic amputation of female external genital organs, initial encounter
## 30256 Partial traumatic amputation of female external genital organs, subsequent encounter
## 30257 Partial traumatic amputation of female external genital organs, sequela
## 30258 Complete traumatic amputation of penis, initial encounter
## 30259 Complete traumatic amputation of penis, subsequent encounter
## 30260 Complete traumatic amputation of penis, sequela
## 30261 Partial traumatic amputation of penis, initial encounter
## 30262 Partial traumatic amputation of penis, subsequent encounter
## 30263 Partial traumatic amputation of penis, sequela
## 30264 Complete traumatic amputation of scrotum and testis, initial encounter
## 30265 Complete traumatic amputation of scrotum and testis, subsequent encounter
## 30266 Complete traumatic amputation of scrotum and testis, sequela
## 30267 Partial traumatic amputation of scrotum and testis, initial encounter
## 30268 Partial traumatic amputation of scrotum and testis, subsequent encounter
## 30269 Partial traumatic amputation of scrotum and testis, sequela
## 30270 Transection (partial) of abdomen, initial encounter
## 30271 Transection (partial) of abdomen, subsequent encounter
## 30272 Transection (partial) of abdomen, sequela
## 30273 Unspecified injury of muscle, fascia and tendon of abdomen, initial encounter
## 30274 Unspecified injury of muscle, fascia and tendon of abdomen, subsequent encounter
## 30275 Unspecified injury of muscle, fascia and tendon of abdomen, sequela
## 30276 Unspecified injury of muscle, fascia and tendon of lower back, initial encounter
## 30277 Unspecified injury of muscle, fascia and tendon of lower back, subsequent encounter
## 30278 Unspecified injury of muscle, fascia and tendon of lower back, sequela
## 30279 Unspecified injury of muscle, fascia and tendon of pelvis, initial encounter
## 30280 Unspecified injury of muscle, fascia and tendon of pelvis, subsequent encounter
## 30281 Unspecified injury of muscle, fascia and tendon of pelvis, sequela
## 30282 Strain of muscle, fascia and tendon of abdomen, initial encounter
## 30283 Strain of muscle, fascia and tendon of abdomen, subsequent encounter
## 30284 Strain of muscle, fascia and tendon of abdomen, sequela
## 30285 Strain of muscle, fascia and tendon of lower back, initial encounter
## 30286 Strain of muscle, fascia and tendon of lower back, subsequent encounter
## 30287 Strain of muscle, fascia and tendon of lower back, sequela
## 30288 Strain of muscle, fascia and tendon of pelvis, initial encounter
## 30289 Strain of muscle, fascia and tendon of pelvis, subsequent encounter
## 30290 Strain of muscle, fascia and tendon of pelvis, sequela
## 30291 Laceration of muscle, fascia and tendon of abdomen, initial encounter
## 30292 Laceration of muscle, fascia and tendon of abdomen, subsequent encounter
## 30293 Laceration of muscle, fascia and tendon of abdomen, sequela
## 30294 Laceration of muscle, fascia and tendon of lower back, initial encounter
## 30295 Laceration of muscle, fascia and tendon of lower back, subsequent encounter
## 30296 Laceration of muscle, fascia and tendon of lower back, sequela
## 30297 Laceration of muscle, fascia and tendon of pelvis, initial encounter
## 30298 Laceration of muscle, fascia and tendon of pelvis, subsequent encounter
## 30299 Laceration of muscle, fascia and tendon of pelvis, sequela
## 30300 Other injury of muscle, fascia and tendon of abdomen, initial encounter
## 30301 Other injury of muscle, fascia and tendon of abdomen, subsequent encounter
## 30302 Other injury of muscle, fascia and tendon of abdomen, sequela
## 30303 Other injury of muscle, fascia and tendon of lower back, initial encounter
## 30304 Other injury of muscle, fascia and tendon of lower back, subsequent encounter
## 30305 Other injury of muscle, fascia and tendon of lower back, sequela
## 30306 Other injury of muscle, fascia and tendon of pelvis, initial encounter
## 30307 Other injury of muscle, fascia and tendon of pelvis, subsequent encounter
## 30308 Other injury of muscle, fascia and tendon of pelvis, sequela
## 30309 Other specified injuries of abdomen, initial encounter
## 30310 Other specified injuries of abdomen, subsequent encounter
## 30311 Other specified injuries of abdomen, sequela
## 30312 Other specified injuries of lower back, initial encounter
## 30313 Other specified injuries of lower back, subsequent encounter
## 30314 Other specified injuries of lower back, sequela
## 30315 Other specified injuries of pelvis, initial encounter
## 30316 Other specified injuries of pelvis, subsequent encounter
## 30317 Other specified injuries of pelvis, sequela
## 30318 Fracture of corpus cavernosum penis, initial encounter
## 30319 Fracture of corpus cavernosum penis, subsequent encounter
## 30320 Fracture of corpus cavernosum penis, sequela
## 30321 Other specified injuries of external genitals, initial encounter
## 30322 Other specified injuries of external genitals, subsequent encounter
## 30323 Other specified injuries of external genitals, sequela
## 30324 Unspecified injury of abdomen, initial encounter
## 30325 Unspecified injury of abdomen, subsequent encounter
## 30326 Unspecified injury of abdomen, sequela
## 30327 Unspecified injury of lower back, initial encounter
## 30328 Unspecified injury of lower back, subsequent encounter
## 30329 Unspecified injury of lower back, sequela
## 30330 Unspecified injury of pelvis, initial encounter
## 30331 Unspecified injury of pelvis, subsequent encounter
## 30332 Unspecified injury of pelvis, sequela
## 30333 Unspecified injury of external genitals, initial encounter
## 30334 Unspecified injury of external genitals, subsequent encounter
## 30335 Unspecified injury of external genitals, sequela
## 30336 Contusion of right shoulder, initial encounter
## 30337 Contusion of right shoulder, subsequent encounter
## 30338 Contusion of right shoulder, sequela
## 30339 Contusion of left shoulder, initial encounter
## 30340 Contusion of left shoulder, subsequent encounter
## 30341 Contusion of left shoulder, sequela
## 30342 Contusion of unspecified shoulder, initial encounter
## 30343 Contusion of unspecified shoulder, subsequent encounter
## 30344 Contusion of unspecified shoulder, sequela
## 30345 Contusion of right upper arm, initial encounter
## 30346 Contusion of right upper arm, subsequent encounter
## 30347 Contusion of right upper arm, sequela
## 30348 Contusion of left upper arm, initial encounter
## 30349 Contusion of left upper arm, subsequent encounter
## 30350 Contusion of left upper arm, sequela
## 30351 Contusion of unspecified upper arm, initial encounter
## 30352 Contusion of unspecified upper arm, subsequent encounter
## 30353 Contusion of unspecified upper arm, sequela
## 30354 Abrasion of right shoulder, initial encounter
## 30355 Abrasion of right shoulder, subsequent encounter
## 30356 Abrasion of right shoulder, sequela
## 30357 Abrasion of left shoulder, initial encounter
## 30358 Abrasion of left shoulder, subsequent encounter
## 30359 Abrasion of left shoulder, sequela
## 30360 Abrasion of unspecified shoulder, initial encounter
## 30361 Abrasion of unspecified shoulder, subsequent encounter
## 30362 Abrasion of unspecified shoulder, sequela
## 30363 Blister (nonthermal) of right shoulder, initial encounter
## 30364 Blister (nonthermal) of right shoulder, subsequent encounter
## 30365 Blister (nonthermal) of right shoulder, sequela
## 30366 Blister (nonthermal) of left shoulder, initial encounter
## 30367 Blister (nonthermal) of left shoulder, subsequent encounter
## 30368 Blister (nonthermal) of left shoulder, sequela
## 30369 Blister (nonthermal) of unspecified shoulder, initial encounter
## 30370 Blister (nonthermal) of unspecified shoulder, subsequent encounter
## 30371 Blister (nonthermal) of unspecified shoulder, sequela
## 30372 External constriction of right shoulder, initial encounter
## 30373 External constriction of right shoulder, subsequent encounter
## 30374 External constriction of right shoulder, sequela
## 30375 External constriction of left shoulder, initial encounter
## 30376 External constriction of left shoulder, subsequent encounter
## 30377 External constriction of left shoulder, sequela
## 30378 External constriction of unspecified shoulder, initial encounter
## 30379 External constriction of unspecified shoulder, subsequent encounter
## 30380 External constriction of unspecified shoulder, sequela
## 30381 Superficial foreign body of right shoulder, initial encounter
## 30382 Superficial foreign body of right shoulder, subsequent encounter
## 30383 Superficial foreign body of right shoulder, sequela
## 30384 Superficial foreign body of left shoulder, initial encounter
## 30385 Superficial foreign body of left shoulder, subsequent encounter
## 30386 Superficial foreign body of left shoulder, sequela
## 30387 Superficial foreign body of unspecified shoulder, initial encounter
## 30388 Superficial foreign body of unspecified shoulder, subsequent encounter
## 30389 Superficial foreign body of unspecified shoulder, sequela
## 30390 Insect bite (nonvenomous) of right shoulder, initial encounter
## 30391 Insect bite (nonvenomous) of right shoulder, subsequent encounter
## 30392 Insect bite (nonvenomous) of right shoulder, sequela
## 30393 Insect bite (nonvenomous) of left shoulder, initial encounter
## 30394 Insect bite (nonvenomous) of left shoulder, subsequent encounter
## 30395 Insect bite (nonvenomous) of left shoulder, sequela
## 30396 Insect bite (nonvenomous) of unspecified shoulder, initial encounter
## 30397 Insect bite (nonvenomous) of unspecified shoulder, subsequent encounter
## 30398 Insect bite (nonvenomous) of unspecified shoulder, sequela
## 30399 Other superficial bite of right shoulder, initial encounter
## 30400 Other superficial bite of right shoulder, subsequent encounter
## 30401 Other superficial bite of right shoulder, sequela
## 30402 Other superficial bite of left shoulder, initial encounter
## 30403 Other superficial bite of left shoulder, subsequent encounter
## 30404 Other superficial bite of left shoulder, sequela
## 30405 Other superficial bite of unspecified shoulder, initial encounter
## 30406 Other superficial bite of unspecified shoulder, subsequent encounter
## 30407 Other superficial bite of unspecified shoulder, sequela
## 30408 Abrasion of right upper arm, initial encounter
## 30409 Abrasion of right upper arm, subsequent encounter
## 30410 Abrasion of right upper arm, sequela
## 30411 Abrasion of left upper arm, initial encounter
## 30412 Abrasion of left upper arm, subsequent encounter
## 30413 Abrasion of left upper arm, sequela
## 30414 Abrasion of unspecified upper arm, initial encounter
## 30415 Abrasion of unspecified upper arm, subsequent encounter
## 30416 Abrasion of unspecified upper arm, sequela
## 30417 Blister (nonthermal) of right upper arm, initial encounter
## 30418 Blister (nonthermal) of right upper arm, subsequent encounter
## 30419 Blister (nonthermal) of right upper arm, sequela
## 30420 Blister (nonthermal) of left upper arm, initial encounter
## 30421 Blister (nonthermal) of left upper arm, subsequent encounter
## 30422 Blister (nonthermal) of left upper arm, sequela
## 30423 Blister (nonthermal) of unspecified upper arm, initial encounter
## 30424 Blister (nonthermal) of unspecified upper arm, subsequent encounter
## 30425 Blister (nonthermal) of unspecified upper arm, sequela
## 30426 External constriction of right upper arm, initial encounter
## 30427 External constriction of right upper arm, subsequent encounter
## 30428 External constriction of right upper arm, sequela
## 30429 External constriction of left upper arm, initial encounter
## 30430 External constriction of left upper arm, subsequent encounter
## 30431 External constriction of left upper arm, sequela
## 30432 External constriction of unspecified upper arm, initial encounter
## 30433 External constriction of unspecified upper arm, subsequent encounter
## 30434 External constriction of unspecified upper arm, sequela
## 30435 Superficial foreign body of right upper arm, initial encounter
## 30436 Superficial foreign body of right upper arm, subsequent encounter
## 30437 Superficial foreign body of right upper arm, sequela
## 30438 Superficial foreign body of left upper arm, initial encounter
## 30439 Superficial foreign body of left upper arm, subsequent encounter
## 30440 Superficial foreign body of left upper arm, sequela
## 30441 Superficial foreign body of unspecified upper arm, initial encounter
## 30442 Superficial foreign body of unspecified upper arm, subsequent encounter
## 30443 Superficial foreign body of unspecified upper arm, sequela
## 30444 Insect bite (nonvenomous) of right upper arm, initial encounter
## 30445 Insect bite (nonvenomous) of right upper arm, subsequent encounter
## 30446 Insect bite (nonvenomous) of right upper arm, sequela
## 30447 Insect bite (nonvenomous) of left upper arm, initial encounter
## 30448 Insect bite (nonvenomous) of left upper arm, subsequent encounter
## 30449 Insect bite (nonvenomous) of left upper arm, sequela
## 30450 Insect bite (nonvenomous) of unspecified upper arm, initial encounter
## 30451 Insect bite (nonvenomous) of unspecified upper arm, subsequent encounter
## 30452 Insect bite (nonvenomous) of unspecified upper arm, sequela
## 30453 Other superficial bite of right upper arm, initial encounter
## 30454 Other superficial bite of right upper arm, subsequent encounter
## 30455 Other superficial bite of right upper arm, sequela
## 30456 Other superficial bite of left upper arm, initial encounter
## 30457 Other superficial bite of left upper arm, subsequent encounter
## 30458 Other superficial bite of left upper arm, sequela
## 30459 Other superficial bite of unspecified upper arm, initial encounter
## 30460 Other superficial bite of unspecified upper arm, subsequent encounter
## 30461 Other superficial bite of unspecified upper arm, sequela
## 30462 Unspecified superficial injury of right shoulder, initial encounter
## 30463 Unspecified superficial injury of right shoulder, subsequent encounter
## 30464 Unspecified superficial injury of right shoulder, sequela
## 30465 Unspecified superficial injury of left shoulder, initial encounter
## 30466 Unspecified superficial injury of left shoulder, subsequent encounter
## 30467 Unspecified superficial injury of left shoulder, sequela
## 30468 Unspecified superficial injury of unspecified shoulder, initial encounter
## 30469 Unspecified superficial injury of unspecified shoulder, subsequent encounter
## 30470 Unspecified superficial injury of unspecified shoulder, sequela
## 30471 Unspecified superficial injury of right upper arm, initial encounter
## 30472 Unspecified superficial injury of right upper arm, subsequent encounter
## 30473 Unspecified superficial injury of right upper arm, sequela
## 30474 Unspecified superficial injury of left upper arm, initial encounter
## 30475 Unspecified superficial injury of left upper arm, subsequent encounter
## 30476 Unspecified superficial injury of left upper arm, sequela
## 30477 Unspecified superficial injury of unspecified upper arm, initial encounter
## 30478 Unspecified superficial injury of unspecified upper arm, subsequent encounter
## 30479 Unspecified superficial injury of unspecified upper arm, sequela
## 30480 Unspecified open wound of right shoulder, initial encounter
## 30481 Unspecified open wound of right shoulder, subsequent encounter
## 30482 Unspecified open wound of right shoulder, sequela
## 30483 Unspecified open wound of left shoulder, initial encounter
## 30484 Unspecified open wound of left shoulder, subsequent encounter
## 30485 Unspecified open wound of left shoulder, sequela
## 30486 Unspecified open wound of unspecified shoulder, initial encounter
## 30487 Unspecified open wound of unspecified shoulder, subsequent encounter
## 30488 Unspecified open wound of unspecified shoulder, sequela
## 30489 Laceration without foreign body of right shoulder, initial encounter
## 30490 Laceration without foreign body of right shoulder, subsequent encounter
## 30491 Laceration without foreign body of right shoulder, sequela
## 30492 Laceration without foreign body of left shoulder, initial encounter
## 30493 Laceration without foreign body of left shoulder, subsequent encounter
## 30494 Laceration without foreign body of left shoulder, sequela
## 30495 Laceration without foreign body of unspecified shoulder, initial encounter
## 30496 Laceration without foreign body of unspecified shoulder, subsequent encounter
## 30497 Laceration without foreign body of unspecified shoulder, sequela
## 30498 Laceration with foreign body of right shoulder, initial encounter
## 30499 Laceration with foreign body of right shoulder, subsequent encounter
## 30500 Laceration with foreign body of right shoulder, sequela
## 30501 Laceration with foreign body of left shoulder, initial encounter
## 30502 Laceration with foreign body of left shoulder, subsequent encounter
## 30503 Laceration with foreign body of left shoulder, sequela
## 30504 Laceration with foreign body of unspecified shoulder, initial encounter
## 30505 Laceration with foreign body of unspecified shoulder, subsequent encounter
## 30506 Laceration with foreign body of unspecified shoulder, sequela
## 30507 Puncture wound without foreign body of right shoulder, initial encounter
## 30508 Puncture wound without foreign body of right shoulder, subsequent encounter
## 30509 Puncture wound without foreign body of right shoulder, sequela
## 30510 Puncture wound without foreign body of left shoulder, initial encounter
## 30511 Puncture wound without foreign body of left shoulder, subsequent encounter
## 30512 Puncture wound without foreign body of left shoulder, sequela
## 30513 Puncture wound without foreign body of unspecified shoulder, initial encounter
## 30514 Puncture wound without foreign body of unspecified shoulder, subsequent encounter
## 30515 Puncture wound without foreign body of unspecified shoulder, sequela
## 30516 Puncture wound with foreign body of right shoulder, initial encounter
## 30517 Puncture wound with foreign body of right shoulder, subsequent encounter
## 30518 Puncture wound with foreign body of right shoulder, sequela
## 30519 Puncture wound with foreign body of left shoulder, initial encounter
## 30520 Puncture wound with foreign body of left shoulder, subsequent encounter
## 30521 Puncture wound with foreign body of left shoulder, sequela
## 30522 Puncture wound with foreign body of unspecified shoulder, initial encounter
## 30523 Puncture wound with foreign body of unspecified shoulder, subsequent encounter
## 30524 Puncture wound with foreign body of unspecified shoulder, sequela
## 30525 Open bite of right shoulder, initial encounter
## 30526 Open bite of right shoulder, subsequent encounter
## 30527 Open bite of right shoulder, sequela
## 30528 Open bite of left shoulder, initial encounter
## 30529 Open bite of left shoulder, subsequent encounter
## 30530 Open bite of left shoulder, sequela
## 30531 Open bite of unspecified shoulder, initial encounter
## 30532 Open bite of unspecified shoulder, subsequent encounter
## 30533 Open bite of unspecified shoulder, sequela
## 30534 Unspecified open wound of right upper arm, initial encounter
## 30535 Unspecified open wound of right upper arm, subsequent encounter
## 30536 Unspecified open wound of right upper arm, sequela
## 30537 Unspecified open wound of left upper arm, initial encounter
## 30538 Unspecified open wound of left upper arm, subsequent encounter
## 30539 Unspecified open wound of left upper arm, sequela
## 30540 Unspecified open wound of unspecified upper arm, initial encounter
## 30541 Unspecified open wound of unspecified upper arm, subsequent encounter
## 30542 Unspecified open wound of unspecified upper arm, sequela
## 30543 Laceration without foreign body of right upper arm, initial encounter
## 30544 Laceration without foreign body of right upper arm, subsequent encounter
## 30545 Laceration without foreign body of right upper arm, sequela
## 30546 Laceration without foreign body of left upper arm, initial encounter
## 30547 Laceration without foreign body of left upper arm, subsequent encounter
## 30548 Laceration without foreign body of left upper arm, sequela
## 30549 Laceration without foreign body of unspecified upper arm, initial encounter
## 30550 Laceration without foreign body of unspecified upper arm, subsequent encounter
## 30551 Laceration without foreign body of unspecified upper arm, sequela
## 30552 Laceration with foreign body of right upper arm, initial encounter
## 30553 Laceration with foreign body of right upper arm, subsequent encounter
## 30554 Laceration with foreign body of right upper arm, sequela
## 30555 Laceration with foreign body of left upper arm, initial encounter
## 30556 Laceration with foreign body of left upper arm, subsequent encounter
## 30557 Laceration with foreign body of left upper arm, sequela
## 30558 Laceration with foreign body of unspecified upper arm, initial encounter
## 30559 Laceration with foreign body of unspecified upper arm, subsequent encounter
## 30560 Laceration with foreign body of unspecified upper arm, sequela
## 30561 Puncture wound without foreign body of right upper arm, initial encounter
## 30562 Puncture wound without foreign body of right upper arm, subsequent encounter
## 30563 Puncture wound without foreign body of right upper arm, sequela
## 30564 Puncture wound without foreign body of left upper arm, initial encounter
## 30565 Puncture wound without foreign body of left upper arm, subsequent encounter
## 30566 Puncture wound without foreign body of left upper arm, sequela
## 30567 Puncture wound without foreign body of unspecified upper arm, initial encounter
## 30568 Puncture wound without foreign body of unspecified upper arm, subsequent encounter
## 30569 Puncture wound without foreign body of unspecified upper arm, sequela
## 30570 Puncture wound with foreign body of right upper arm, initial encounter
## 30571 Puncture wound with foreign body of right upper arm, subsequent encounter
## 30572 Puncture wound with foreign body of right upper arm, sequela
## 30573 Puncture wound with foreign body of left upper arm, initial encounter
## 30574 Puncture wound with foreign body of left upper arm, subsequent encounter
## 30575 Puncture wound with foreign body of left upper arm, sequela
## 30576 Puncture wound with foreign body of unspecified upper arm, initial encounter
## 30577 Puncture wound with foreign body of unspecified upper arm, subsequent encounter
## 30578 Puncture wound with foreign body of unspecified upper arm, sequela
## 30579 Open bite of right upper arm, initial encounter
## 30580 Open bite of right upper arm, subsequent encounter
## 30581 Open bite of right upper arm, sequela
## 30582 Open bite of left upper arm, initial encounter
## 30583 Open bite of left upper arm, subsequent encounter
## 30584 Open bite of left upper arm, sequela
## 30585 Open bite of unspecified upper arm, initial encounter
## 30586 Open bite of unspecified upper arm, subsequent encounter
## 30587 Open bite of unspecified upper arm, sequela
## 30588 Fracture of unspecified part of right clavicle, initial encounter for closed fracture
## 30589 Fracture of unspecified part of right clavicle, initial encounter for open fracture
## 30590 Fracture of unspecified part of right clavicle, subsequent encounter for fracture with routine healing
## 30591 Fracture of unspecified part of right clavicle, subsequent encounter for fracture with delayed healing
## 30592 Fracture of unspecified part of right clavicle, subsequent encounter for fracture with nonunion
## 30593 Fracture of unspecified part of right clavicle, subsequent encounter for fracture with malunion
## 30594 Fracture of unspecified part of right clavicle, sequela
## 30595 Fracture of unspecified part of left clavicle, initial encounter for closed fracture
## 30596 Fracture of unspecified part of left clavicle, initial encounter for open fracture
## 30597 Fracture of unspecified part of left clavicle, subsequent encounter for fracture with routine healing
## 30598 Fracture of unspecified part of left clavicle, subsequent encounter for fracture with delayed healing
## 30599 Fracture of unspecified part of left clavicle, subsequent encounter for fracture with nonunion
## 30600 Fracture of unspecified part of left clavicle, subsequent encounter for fracture with malunion
## 30601 Fracture of unspecified part of left clavicle, sequela
## 30602 Fracture of unspecified part of unspecified clavicle, initial encounter for closed fracture
## 30603 Fracture of unspecified part of unspecified clavicle, initial encounter for open fracture
## 30604 Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with routine healing
## 30605 Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with delayed healing
## 30606 Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with nonunion
## 30607 Fracture of unspecified part of unspecified clavicle, subsequent encounter for fracture with malunion
## 30608 Fracture of unspecified part of unspecified clavicle, sequela
## 30609 Anterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture
## 30610 Anterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture
## 30611 Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing
## 30612 Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing
## 30613 Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion
## 30614 Anterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion
## 30615 Anterior displaced fracture of sternal end of right clavicle, sequela
## 30616 Anterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture
## 30617 Anterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture
## 30618 Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing
## 30619 Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing
## 30620 Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion
## 30621 Anterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion
## 30622 Anterior displaced fracture of sternal end of left clavicle, sequela
## 30623 Anterior displaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture
## 30624 Anterior displaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture
## 30625 Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing
## 30626 Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing
## 30627 Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion
## 30628 Anterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion
## 30629 Anterior displaced fracture of sternal end of unspecified clavicle, sequela
## 30630 Posterior displaced fracture of sternal end of right clavicle, initial encounter for closed fracture
## 30631 Posterior displaced fracture of sternal end of right clavicle, initial encounter for open fracture
## 30632 Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing
## 30633 Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing
## 30634 Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion
## 30635 Posterior displaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion
## 30636 Posterior displaced fracture of sternal end of right clavicle, sequela
## 30637 Posterior displaced fracture of sternal end of left clavicle, initial encounter for closed fracture
## 30638 Posterior displaced fracture of sternal end of left clavicle, initial encounter for open fracture
## 30639 Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing
## 30640 Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing
## 30641 Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion
## 30642 Posterior displaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion
## 30643 Posterior displaced fracture of sternal end of left clavicle, sequela
## 30644 Posterior displaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture
## 30645 Posterior displaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture
## 30646 Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing
## 30647 Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing
## 30648 Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion
## 30649 Posterior displaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion
## 30650 Posterior displaced fracture of sternal end of unspecified clavicle, sequela
## 30651 Nondisplaced fracture of sternal end of right clavicle, initial encounter for closed fracture
## 30652 Nondisplaced fracture of sternal end of right clavicle, initial encounter for open fracture
## 30653 Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with routine healing
## 30654 Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with delayed healing
## 30655 Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with nonunion
## 30656 Nondisplaced fracture of sternal end of right clavicle, subsequent encounter for fracture with malunion
## 30657 Nondisplaced fracture of sternal end of right clavicle, sequela
## 30658 Nondisplaced fracture of sternal end of left clavicle, initial encounter for closed fracture
## 30659 Nondisplaced fracture of sternal end of left clavicle, initial encounter for open fracture
## 30660 Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with routine healing
## 30661 Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with delayed healing
## 30662 Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with nonunion
## 30663 Nondisplaced fracture of sternal end of left clavicle, subsequent encounter for fracture with malunion
## 30664 Nondisplaced fracture of sternal end of left clavicle, sequela
## 30665 Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for closed fracture
## 30666 Nondisplaced fracture of sternal end of unspecified clavicle, initial encounter for open fracture
## 30667 Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with routine healing
## 30668 Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with delayed healing
## 30669 Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with nonunion
## 30670 Nondisplaced fracture of sternal end of unspecified clavicle, subsequent encounter for fracture with malunion
## 30671 Nondisplaced fracture of sternal end of unspecified clavicle, sequela
## 30672 Displaced fracture of shaft of right clavicle, initial encounter for closed fracture
## 30673 Displaced fracture of shaft of right clavicle, initial encounter for open fracture
## 30674 Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with routine healing
## 30675 Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with delayed healing
## 30676 Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion
## 30677 Displaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion
## 30678 Displaced fracture of shaft of right clavicle, sequela
## 30679 Displaced fracture of shaft of left clavicle, initial encounter for closed fracture
## 30680 Displaced fracture of shaft of left clavicle, initial encounter for open fracture
## 30681 Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing
## 30682 Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing
## 30683 Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion
## 30684 Displaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion
## 30685 Displaced fracture of shaft of left clavicle, sequela
## 30686 Displaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture
## 30687 Displaced fracture of shaft of unspecified clavicle, initial encounter for open fracture
## 30688 Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with routine healing
## 30689 Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with delayed healing
## 30690 Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion
## 30691 Displaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion
## 30692 Displaced fracture of shaft of unspecified clavicle, sequela
## 30693 Nondisplaced fracture of shaft of right clavicle, initial encounter for closed fracture
## 30694 Nondisplaced fracture of shaft of right clavicle, initial encounter for open fracture
## 30695 Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with routine healing
## 30696 Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with delayed healing
## 30697 Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with nonunion
## 30698 Nondisplaced fracture of shaft of right clavicle, subsequent encounter for fracture with malunion
## 30699 Nondisplaced fracture of shaft of right clavicle, sequela
## 30700 Nondisplaced fracture of shaft of left clavicle, initial encounter for closed fracture
## 30701 Nondisplaced fracture of shaft of left clavicle, initial encounter for open fracture
## 30702 Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with routine healing
## 30703 Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with delayed healing
## 30704 Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with nonunion
## 30705 Nondisplaced fracture of shaft of left clavicle, subsequent encounter for fracture with malunion
## 30706 Nondisplaced fracture of shaft of left clavicle, sequela
## 30707 Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for closed fracture
## 30708 Nondisplaced fracture of shaft of unspecified clavicle, initial encounter for open fracture
## 30709 Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with routine healing
## 30710 Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with delayed healing
## 30711 Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with nonunion
## 30712 Nondisplaced fracture of shaft of unspecified clavicle, subsequent encounter for fracture with malunion
## 30713 Nondisplaced fracture of shaft of unspecified clavicle, sequela
## 30714 Displaced fracture of lateral end of right clavicle, initial encounter for closed fracture
## 30715 Displaced fracture of lateral end of right clavicle, initial encounter for open fracture
## 30716 Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with routine healing
## 30717 Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with delayed healing
## 30718 Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion
## 30719 Displaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion
## 30720 Displaced fracture of lateral end of right clavicle, sequela
## 30721 Displaced fracture of lateral end of left clavicle, initial encounter for closed fracture
## 30722 Displaced fracture of lateral end of left clavicle, initial encounter for open fracture
## 30723 Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with routine healing
## 30724 Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with delayed healing
## 30725 Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion
## 30726 Displaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion
## 30727 Displaced fracture of lateral end of left clavicle, sequela
## 30728 Displaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture
## 30729 Displaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture
## 30730 Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with routine healing
## 30731 Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with delayed healing
## 30732 Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with nonunion
## 30733 Displaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with malunion
## 30734 Displaced fracture of lateral end of unspecified clavicle, sequela
## 30735 Nondisplaced fracture of lateral end of right clavicle, initial encounter for closed fracture
## 30736 Nondisplaced fracture of lateral end of right clavicle, initial encounter for open fracture
## 30737 Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with routine healing
## 30738 Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with delayed healing
## 30739 Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with nonunion
## 30740 Nondisplaced fracture of lateral end of right clavicle, subsequent encounter for fracture with malunion
## 30741 Nondisplaced fracture of lateral end of right clavicle, sequela
## 30742 Nondisplaced fracture of lateral end of left clavicle, initial encounter for closed fracture
## 30743 Nondisplaced fracture of lateral end of left clavicle, initial encounter for open fracture
## 30744 Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with routine healing
## 30745 Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with delayed healing
## 30746 Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with nonunion
## 30747 Nondisplaced fracture of lateral end of left clavicle, subsequent encounter for fracture with malunion
## 30748 Nondisplaced fracture of lateral end of left clavicle, sequela
## 30749 Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for closed fracture
## 30750 Nondisplaced fracture of lateral end of unspecified clavicle, initial encounter for open fracture
## 30751 Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with routine healing
## 30752 Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with delayed healing
## 30753 Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with nonunion
## 30754 Nondisplaced fracture of lateral end of unspecified clavicle, subsequent encounter for fracture with malunion
## 30755 Nondisplaced fracture of lateral end of unspecified clavicle, sequela
## 30756 Fracture of unspecified part of scapula, right shoulder, initial encounter for closed fracture
## 30757 Fracture of unspecified part of scapula, right shoulder, initial encounter for open fracture
## 30758 Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with routine healing
## 30759 Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with delayed healing
## 30760 Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with nonunion
## 30761 Fracture of unspecified part of scapula, right shoulder, subsequent encounter for fracture with malunion
## 30762 Fracture of unspecified part of scapula, right shoulder, sequela
## 30763 Fracture of unspecified part of scapula, left shoulder, initial encounter for closed fracture
## 30764 Fracture of unspecified part of scapula, left shoulder, initial encounter for open fracture
## 30765 Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with routine healing
## 30766 Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with delayed healing
## 30767 Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with nonunion
## 30768 Fracture of unspecified part of scapula, left shoulder, subsequent encounter for fracture with malunion
## 30769 Fracture of unspecified part of scapula, left shoulder, sequela
## 30770 Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for closed fracture
## 30771 Fracture of unspecified part of scapula, unspecified shoulder, initial encounter for open fracture
## 30772 Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30773 Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30774 Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30775 Fracture of unspecified part of scapula, unspecified shoulder, subsequent encounter for fracture with malunion
## 30776 Fracture of unspecified part of scapula, unspecified shoulder, sequela
## 30777 Displaced fracture of body of scapula, right shoulder, initial encounter for closed fracture
## 30778 Displaced fracture of body of scapula, right shoulder, initial encounter for open fracture
## 30779 Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with routine healing
## 30780 Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with delayed healing
## 30781 Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with nonunion
## 30782 Displaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with malunion
## 30783 Displaced fracture of body of scapula, right shoulder, sequela
## 30784 Displaced fracture of body of scapula, left shoulder, initial encounter for closed fracture
## 30785 Displaced fracture of body of scapula, left shoulder, initial encounter for open fracture
## 30786 Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with routine healing
## 30787 Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with delayed healing
## 30788 Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with nonunion
## 30789 Displaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with malunion
## 30790 Displaced fracture of body of scapula, left shoulder, sequela
## 30791 Displaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture
## 30792 Displaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture
## 30793 Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30794 Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30795 Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30796 Displaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with malunion
## 30797 Displaced fracture of body of scapula, unspecified shoulder, sequela
## 30798 Nondisplaced fracture of body of scapula, right shoulder, initial encounter for closed fracture
## 30799 Nondisplaced fracture of body of scapula, right shoulder, initial encounter for open fracture
## 30800 Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with routine healing
## 30801 Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with delayed healing
## 30802 Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with nonunion
## 30803 Nondisplaced fracture of body of scapula, right shoulder, subsequent encounter for fracture with malunion
## 30804 Nondisplaced fracture of body of scapula, right shoulder, sequela
## 30805 Nondisplaced fracture of body of scapula, left shoulder, initial encounter for closed fracture
## 30806 Nondisplaced fracture of body of scapula, left shoulder, initial encounter for open fracture
## 30807 Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with routine healing
## 30808 Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with delayed healing
## 30809 Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with nonunion
## 30810 Nondisplaced fracture of body of scapula, left shoulder, subsequent encounter for fracture with malunion
## 30811 Nondisplaced fracture of body of scapula, left shoulder, sequela
## 30812 Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for closed fracture
## 30813 Nondisplaced fracture of body of scapula, unspecified shoulder, initial encounter for open fracture
## 30814 Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30815 Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30816 Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30817 Nondisplaced fracture of body of scapula, unspecified shoulder, subsequent encounter for fracture with malunion
## 30818 Nondisplaced fracture of body of scapula, unspecified shoulder, sequela
## 30819 Displaced fracture of acromial process, right shoulder, initial encounter for closed fracture
## 30820 Displaced fracture of acromial process, right shoulder, initial encounter for open fracture
## 30821 Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with routine healing
## 30822 Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with delayed healing
## 30823 Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with nonunion
## 30824 Displaced fracture of acromial process, right shoulder, subsequent encounter for fracture with malunion
## 30825 Displaced fracture of acromial process, right shoulder, sequela
## 30826 Displaced fracture of acromial process, left shoulder, initial encounter for closed fracture
## 30827 Displaced fracture of acromial process, left shoulder, initial encounter for open fracture
## 30828 Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with routine healing
## 30829 Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with delayed healing
## 30830 Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with nonunion
## 30831 Displaced fracture of acromial process, left shoulder, subsequent encounter for fracture with malunion
## 30832 Displaced fracture of acromial process, left shoulder, sequela
## 30833 Displaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture
## 30834 Displaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture
## 30835 Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30836 Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30837 Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30838 Displaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with malunion
## 30839 Displaced fracture of acromial process, unspecified shoulder, sequela
## 30840 Nondisplaced fracture of acromial process, right shoulder, initial encounter for closed fracture
## 30841 Nondisplaced fracture of acromial process, right shoulder, initial encounter for open fracture
## 30842 Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with routine healing
## 30843 Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with delayed healing
## 30844 Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with nonunion
## 30845 Nondisplaced fracture of acromial process, right shoulder, subsequent encounter for fracture with malunion
## 30846 Nondisplaced fracture of acromial process, right shoulder, sequela
## 30847 Nondisplaced fracture of acromial process, left shoulder, initial encounter for closed fracture
## 30848 Nondisplaced fracture of acromial process, left shoulder, initial encounter for open fracture
## 30849 Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with routine healing
## 30850 Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with delayed healing
## 30851 Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with nonunion
## 30852 Nondisplaced fracture of acromial process, left shoulder, subsequent encounter for fracture with malunion
## 30853 Nondisplaced fracture of acromial process, left shoulder, sequela
## 30854 Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for closed fracture
## 30855 Nondisplaced fracture of acromial process, unspecified shoulder, initial encounter for open fracture
## 30856 Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30857 Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30858 Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30859 Nondisplaced fracture of acromial process, unspecified shoulder, subsequent encounter for fracture with malunion
## 30860 Nondisplaced fracture of acromial process, unspecified shoulder, sequela
## 30861 Displaced fracture of coracoid process, right shoulder, initial encounter for closed fracture
## 30862 Displaced fracture of coracoid process, right shoulder, initial encounter for open fracture
## 30863 Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with routine healing
## 30864 Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with delayed healing
## 30865 Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with nonunion
## 30866 Displaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with malunion
## 30867 Displaced fracture of coracoid process, right shoulder, sequela
## 30868 Displaced fracture of coracoid process, left shoulder, initial encounter for closed fracture
## 30869 Displaced fracture of coracoid process, left shoulder, initial encounter for open fracture
## 30870 Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with routine healing
## 30871 Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with delayed healing
## 30872 Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with nonunion
## 30873 Displaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with malunion
## 30874 Displaced fracture of coracoid process, left shoulder, sequela
## 30875 Displaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture
## 30876 Displaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture
## 30877 Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30878 Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30879 Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30880 Displaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with malunion
## 30881 Displaced fracture of coracoid process, unspecified shoulder, sequela
## 30882 Nondisplaced fracture of coracoid process, right shoulder, initial encounter for closed fracture
## 30883 Nondisplaced fracture of coracoid process, right shoulder, initial encounter for open fracture
## 30884 Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with routine healing
## 30885 Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with delayed healing
## 30886 Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with nonunion
## 30887 Nondisplaced fracture of coracoid process, right shoulder, subsequent encounter for fracture with malunion
## 30888 Nondisplaced fracture of coracoid process, right shoulder, sequela
## 30889 Nondisplaced fracture of coracoid process, left shoulder, initial encounter for closed fracture
## 30890 Nondisplaced fracture of coracoid process, left shoulder, initial encounter for open fracture
## 30891 Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with routine healing
## 30892 Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with delayed healing
## 30893 Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with nonunion
## 30894 Nondisplaced fracture of coracoid process, left shoulder, subsequent encounter for fracture with malunion
## 30895 Nondisplaced fracture of coracoid process, left shoulder, sequela
## 30896 Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for closed fracture
## 30897 Nondisplaced fracture of coracoid process, unspecified shoulder, initial encounter for open fracture
## 30898 Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30899 Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30900 Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30901 Nondisplaced fracture of coracoid process, unspecified shoulder, subsequent encounter for fracture with malunion
## 30902 Nondisplaced fracture of coracoid process, unspecified shoulder, sequela
## 30903 Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for closed fracture
## 30904 Displaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture
## 30905 Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with routine healing
## 30906 Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with delayed healing
## 30907 Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with nonunion
## 30908 Displaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with malunion
## 30909 Displaced fracture of glenoid cavity of scapula, right shoulder, sequela
## 30910 Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for closed fracture
## 30911 Displaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture
## 30912 Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with routine healing
## 30913 Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with delayed healing
## 30914 Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with nonunion
## 30915 Displaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with malunion
## 30916 Displaced fracture of glenoid cavity of scapula, left shoulder, sequela
## 30917 Displaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for closed fracture
## 30918 Displaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for open fracture
## 30919 Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30920 Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30921 Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30922 Displaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with malunion
## 30923 Displaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela
## 30924 Nondisplaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for closed fracture
## 30925 Nondisplaced fracture of glenoid cavity of scapula, right shoulder, initial encounter for open fracture
## 30926 Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with routine healing
## 30927 Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with delayed healing
## 30928 Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with nonunion
## 30929 Nondisplaced fracture of glenoid cavity of scapula, right shoulder, subsequent encounter for fracture with malunion
## 30930 Nondisplaced fracture of glenoid cavity of scapula, right shoulder, sequela
## 30931 Nondisplaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for closed fracture
## 30932 Nondisplaced fracture of glenoid cavity of scapula, left shoulder, initial encounter for open fracture
## 30933 Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with routine healing
## 30934 Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with delayed healing
## 30935 Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with nonunion
## 30936 Nondisplaced fracture of glenoid cavity of scapula, left shoulder, subsequent encounter for fracture with malunion
## 30937 Nondisplaced fracture of glenoid cavity of scapula, left shoulder, sequela
## 30938 Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for closed fracture
## 30939 Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, initial encounter for open fracture
## 30940 Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30941 Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30942 Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30943 Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, subsequent encounter for fracture with malunion
## 30944 Nondisplaced fracture of glenoid cavity of scapula, unspecified shoulder, sequela
## 30945 Displaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture
## 30946 Displaced fracture of neck of scapula, right shoulder, initial encounter for open fracture
## 30947 Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with routine healing
## 30948 Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with delayed healing
## 30949 Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with nonunion
## 30950 Displaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with malunion
## 30951 Displaced fracture of neck of scapula, right shoulder, sequela
## 30952 Displaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture
## 30953 Displaced fracture of neck of scapula, left shoulder, initial encounter for open fracture
## 30954 Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with routine healing
## 30955 Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with delayed healing
## 30956 Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion
## 30957 Displaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with malunion
## 30958 Displaced fracture of neck of scapula, left shoulder, sequela
## 30959 Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture
## 30960 Displaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture
## 30961 Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30962 Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30963 Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30964 Displaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with malunion
## 30965 Displaced fracture of neck of scapula, unspecified shoulder, sequela
## 30966 Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for closed fracture
## 30967 Nondisplaced fracture of neck of scapula, right shoulder, initial encounter for open fracture
## 30968 Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with routine healing
## 30969 Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with delayed healing
## 30970 Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with nonunion
## 30971 Nondisplaced fracture of neck of scapula, right shoulder, subsequent encounter for fracture with malunion
## 30972 Nondisplaced fracture of neck of scapula, right shoulder, sequela
## 30973 Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for closed fracture
## 30974 Nondisplaced fracture of neck of scapula, left shoulder, initial encounter for open fracture
## 30975 Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with routine healing
## 30976 Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with delayed healing
## 30977 Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with nonunion
## 30978 Nondisplaced fracture of neck of scapula, left shoulder, subsequent encounter for fracture with malunion
## 30979 Nondisplaced fracture of neck of scapula, left shoulder, sequela
## 30980 Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for closed fracture
## 30981 Nondisplaced fracture of neck of scapula, unspecified shoulder, initial encounter for open fracture
## 30982 Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing
## 30983 Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 30984 Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion
## 30985 Nondisplaced fracture of neck of scapula, unspecified shoulder, subsequent encounter for fracture with malunion
## 30986 Nondisplaced fracture of neck of scapula, unspecified shoulder, sequela
## 30987 Fracture of other part of scapula, right shoulder, initial encounter for closed fracture
## 30988 Fracture of other part of scapula, right shoulder, initial encounter for open fracture
## 30989 Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with routine healing
## 30990 Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with delayed healing
## 30991 Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with nonunion
## 30992 Fracture of other part of scapula, right shoulder, subsequent encounter for fracture with malunion
## 30993 Fracture of other part of scapula, right shoulder, sequela
## 30994 Fracture of other part of scapula, left shoulder, initial encounter for closed fracture
## 30995 Fracture of other part of scapula, left shoulder, initial encounter for open fracture
## 30996 Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with routine healing
## 30997 Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with delayed healing
## 30998 Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with nonunion
## 30999 Fracture of other part of scapula, left shoulder, subsequent encounter for fracture with malunion
## 31000 Fracture of other part of scapula, left shoulder, sequela
## 31001 Fracture of other part of scapula, unspecified shoulder, initial encounter for closed fracture
## 31002 Fracture of other part of scapula, unspecified shoulder, initial encounter for open fracture
## 31003 Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with routine healing
## 31004 Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with delayed healing
## 31005 Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with nonunion
## 31006 Fracture of other part of scapula, unspecified shoulder, subsequent encounter for fracture with malunion
## 31007 Fracture of other part of scapula, unspecified shoulder, sequela
## 31008 Unspecified fracture of upper end of right humerus, initial encounter for closed fracture
## 31009 Unspecified fracture of upper end of right humerus, initial encounter for open fracture
## 31010 Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with routine healing
## 31011 Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing
## 31012 Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with nonunion
## 31013 Unspecified fracture of upper end of right humerus, subsequent encounter for fracture with malunion
## 31014 Unspecified fracture of upper end of right humerus, sequela
## 31015 Unspecified fracture of upper end of left humerus, initial encounter for closed fracture
## 31016 Unspecified fracture of upper end of left humerus, initial encounter for open fracture
## 31017 Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with routine healing
## 31018 Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing
## 31019 Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with nonunion
## 31020 Unspecified fracture of upper end of left humerus, subsequent encounter for fracture with malunion
## 31021 Unspecified fracture of upper end of left humerus, sequela
## 31022 Unspecified fracture of upper end of unspecified humerus, initial encounter for closed fracture
## 31023 Unspecified fracture of upper end of unspecified humerus, initial encounter for open fracture
## 31024 Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing
## 31025 Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31026 Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion
## 31027 Unspecified fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion
## 31028 Unspecified fracture of upper end of unspecified humerus, sequela
## 31029 Unspecified displaced fracture of surgical neck of right humerus, initial encounter for closed fracture
## 31030 Unspecified displaced fracture of surgical neck of right humerus, initial encounter for open fracture
## 31031 Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing
## 31032 Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing
## 31033 Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion
## 31034 Unspecified displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion
## 31035 Unspecified displaced fracture of surgical neck of right humerus, sequela
## 31036 Unspecified displaced fracture of surgical neck of left humerus, initial encounter for closed fracture
## 31037 Unspecified displaced fracture of surgical neck of left humerus, initial encounter for open fracture
## 31038 Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing
## 31039 Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing
## 31040 Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion
## 31041 Unspecified displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion
## 31042 Unspecified displaced fracture of surgical neck of left humerus, sequela
## 31043 Unspecified displaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture
## 31044 Unspecified displaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture
## 31045 Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing
## 31046 Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31047 Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion
## 31048 Unspecified displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion
## 31049 Unspecified displaced fracture of surgical neck of unspecified humerus, sequela
## 31050 Unspecified nondisplaced fracture of surgical neck of right humerus, initial encounter for closed fracture
## 31051 Unspecified nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture
## 31052 Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing
## 31053 Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing
## 31054 Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion
## 31055 Unspecified nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion
## 31056 Unspecified nondisplaced fracture of surgical neck of right humerus, sequela
## 31057 Unspecified nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture
## 31058 Unspecified nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture
## 31059 Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing
## 31060 Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing
## 31061 Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion
## 31062 Unspecified nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion
## 31063 Unspecified nondisplaced fracture of surgical neck of left humerus, sequela
## 31064 Unspecified nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture
## 31065 Unspecified nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture
## 31066 Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing
## 31067 Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31068 Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion
## 31069 Unspecified nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion
## 31070 Unspecified nondisplaced fracture of surgical neck of unspecified humerus, sequela
## 31071 2-part displaced fracture of surgical neck of right humerus, initial encounter for closed fracture
## 31072 2-part displaced fracture of surgical neck of right humerus, initial encounter for open fracture
## 31073 2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing
## 31074 2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing
## 31075 2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion
## 31076 2-part displaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion
## 31077 2-part displaced fracture of surgical neck of right humerus, sequela
## 31078 2-part displaced fracture of surgical neck of left humerus, initial encounter for closed fracture
## 31079 2-part displaced fracture of surgical neck of left humerus, initial encounter for open fracture
## 31080 2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing
## 31081 2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing
## 31082 2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion
## 31083 2-part displaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion
## 31084 2-part displaced fracture of surgical neck of left humerus, sequela
## 31085 2-part displaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture
## 31086 2-part displaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture
## 31087 2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing
## 31088 2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31089 2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion
## 31090 2-part displaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion
## 31091 2-part displaced fracture of surgical neck of unspecified humerus, sequela
## 31092 2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for closed fracture
## 31093 2-part nondisplaced fracture of surgical neck of right humerus, initial encounter for open fracture
## 31094 2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing
## 31095 2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing
## 31096 2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion
## 31097 2-part nondisplaced fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion
## 31098 2-part nondisplaced fracture of surgical neck of right humerus, sequela
## 31099 2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for closed fracture
## 31100 2-part nondisplaced fracture of surgical neck of left humerus, initial encounter for open fracture
## 31101 2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing
## 31102 2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing
## 31103 2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion
## 31104 2-part nondisplaced fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion
## 31105 2-part nondisplaced fracture of surgical neck of left humerus, sequela
## 31106 2-part nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for closed fracture
## 31107 2-part nondisplaced fracture of surgical neck of unspecified humerus, initial encounter for open fracture
## 31108 2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing
## 31109 2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31110 2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion
## 31111 2-part nondisplaced fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion
## 31112 2-part nondisplaced fracture of surgical neck of unspecified humerus, sequela
## 31113 3-part fracture of surgical neck of right humerus, initial encounter for closed fracture
## 31114 3-part fracture of surgical neck of right humerus, initial encounter for open fracture
## 31115 3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing
## 31116 3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing
## 31117 3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion
## 31118 3-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion
## 31119 3-part fracture of surgical neck of right humerus, sequela
## 31120 3-part fracture of surgical neck of left humerus, initial encounter for closed fracture
## 31121 3-part fracture of surgical neck of left humerus, initial encounter for open fracture
## 31122 3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing
## 31123 3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing
## 31124 3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion
## 31125 3-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion
## 31126 3-part fracture of surgical neck of left humerus, sequela
## 31127 3-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture
## 31128 3-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture
## 31129 3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing
## 31130 3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31131 3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion
## 31132 3-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion
## 31133 3-part fracture of surgical neck of unspecified humerus, sequela
## 31134 4-part fracture of surgical neck of right humerus, initial encounter for closed fracture
## 31135 4-part fracture of surgical neck of right humerus, initial encounter for open fracture
## 31136 4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with routine healing
## 31137 4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with delayed healing
## 31138 4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with nonunion
## 31139 4-part fracture of surgical neck of right humerus, subsequent encounter for fracture with malunion
## 31140 4-part fracture of surgical neck of right humerus, sequela
## 31141 4-part fracture of surgical neck of left humerus, initial encounter for closed fracture
## 31142 4-part fracture of surgical neck of left humerus, initial encounter for open fracture
## 31143 4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with routine healing
## 31144 4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with delayed healing
## 31145 4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with nonunion
## 31146 4-part fracture of surgical neck of left humerus, subsequent encounter for fracture with malunion
## 31147 4-part fracture of surgical neck of left humerus, sequela
## 31148 4-part fracture of surgical neck of unspecified humerus, initial encounter for closed fracture
## 31149 4-part fracture of surgical neck of unspecified humerus, initial encounter for open fracture
## 31150 4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with routine healing
## 31151 4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31152 4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with nonunion
## 31153 4-part fracture of surgical neck of unspecified humerus, subsequent encounter for fracture with malunion
## 31154 4-part fracture of surgical neck of unspecified humerus, sequela
## 31155 Displaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture
## 31156 Displaced fracture of greater tuberosity of right humerus, initial encounter for open fracture
## 31157 Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with routine healing
## 31158 Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with delayed healing
## 31159 Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with nonunion
## 31160 Displaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with malunion
## 31161 Displaced fracture of greater tuberosity of right humerus, sequela
## 31162 Displaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture
## 31163 Displaced fracture of greater tuberosity of left humerus, initial encounter for open fracture
## 31164 Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with routine healing
## 31165 Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with delayed healing
## 31166 Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with nonunion
## 31167 Displaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with malunion
## 31168 Displaced fracture of greater tuberosity of left humerus, sequela
## 31169 Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for closed fracture
## 31170 Displaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture
## 31171 Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing
## 31172 Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31173 Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion
## 31174 Displaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with malunion
## 31175 Displaced fracture of greater tuberosity of unspecified humerus, sequela
## 31176 Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for closed fracture
## 31177 Nondisplaced fracture of greater tuberosity of right humerus, initial encounter for open fracture
## 31178 Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with routine healing
## 31179 Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with delayed healing
## 31180 Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with nonunion
## 31181 Nondisplaced fracture of greater tuberosity of right humerus, subsequent encounter for fracture with malunion
## 31182 Nondisplaced fracture of greater tuberosity of right humerus, sequela
## 31183 Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for closed fracture
## 31184 Nondisplaced fracture of greater tuberosity of left humerus, initial encounter for open fracture
## 31185 Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with routine healing
## 31186 Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with delayed healing
## 31187 Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with nonunion
## 31188 Nondisplaced fracture of greater tuberosity of left humerus, subsequent encounter for fracture with malunion
## 31189 Nondisplaced fracture of greater tuberosity of left humerus, sequela
## 31190 Nondisplaced fracture of greater tuberosity of unspecified humerus, initial encounter for closed fracture
## 31191 Nondisplaced fracture of greater tuberosity of unspecified humerus, initial encounter for open fracture
## 31192 Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing
## 31193 Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31194 Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion
## 31195 Nondisplaced fracture of greater tuberosity of unspecified humerus, subsequent encounter for fracture with malunion
## 31196 Nondisplaced fracture of greater tuberosity of unspecified humerus, sequela
## 31197 Displaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture
## 31198 Displaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture
## 31199 Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with routine healing
## 31200 Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with delayed healing
## 31201 Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with nonunion
## 31202 Displaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with malunion
## 31203 Displaced fracture of lesser tuberosity of right humerus, sequela
## 31204 Displaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture
## 31205 Displaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture
## 31206 Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with routine healing
## 31207 Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with delayed healing
## 31208 Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion
## 31209 Displaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with malunion
## 31210 Displaced fracture of lesser tuberosity of left humerus, sequela
## 31211 Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for closed fracture
## 31212 Displaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture
## 31213 Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing
## 31214 Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31215 Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion
## 31216 Displaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with malunion
## 31217 Displaced fracture of lesser tuberosity of unspecified humerus, sequela
## 31218 Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for closed fracture
## 31219 Nondisplaced fracture of lesser tuberosity of right humerus, initial encounter for open fracture
## 31220 Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with routine healing
## 31221 Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with delayed healing
## 31222 Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with nonunion
## 31223 Nondisplaced fracture of lesser tuberosity of right humerus, subsequent encounter for fracture with malunion
## 31224 Nondisplaced fracture of lesser tuberosity of right humerus, sequela
## 31225 Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for closed fracture
## 31226 Nondisplaced fracture of lesser tuberosity of left humerus, initial encounter for open fracture
## 31227 Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with routine healing
## 31228 Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with delayed healing
## 31229 Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with nonunion
## 31230 Nondisplaced fracture of lesser tuberosity of left humerus, subsequent encounter for fracture with malunion
## 31231 Nondisplaced fracture of lesser tuberosity of left humerus, sequela
## 31232 Nondisplaced fracture of lesser tuberosity of unspecified humerus, initial encounter for closed fracture
## 31233 Nondisplaced fracture of lesser tuberosity of unspecified humerus, initial encounter for open fracture
## 31234 Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with routine healing
## 31235 Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31236 Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with nonunion
## 31237 Nondisplaced fracture of lesser tuberosity of unspecified humerus, subsequent encounter for fracture with malunion
## 31238 Nondisplaced fracture of lesser tuberosity of unspecified humerus, sequela
## 31239 Torus fracture of upper end of right humerus, initial encounter for closed fracture
## 31240 Torus fracture of upper end of right humerus, subsequent encounter for fracture with routine healing
## 31241 Torus fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing
## 31242 Torus fracture of upper end of right humerus, subsequent encounter for fracture with nonunion
## 31243 Torus fracture of upper end of right humerus, subsequent encounter for fracture with malunion
## 31244 Torus fracture of upper end of right humerus, sequela
## 31245 Torus fracture of upper end of left humerus, initial encounter for closed fracture
## 31246 Torus fracture of upper end of left humerus, subsequent encounter for fracture with routine healing
## 31247 Torus fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing
## 31248 Torus fracture of upper end of left humerus, subsequent encounter for fracture with nonunion
## 31249 Torus fracture of upper end of left humerus, subsequent encounter for fracture with malunion
## 31250 Torus fracture of upper end of left humerus, sequela
## 31251 Torus fracture of upper end of unspecified humerus, initial encounter for closed fracture
## 31252 Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing
## 31253 Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31254 Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion
## 31255 Torus fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion
## 31256 Torus fracture of upper end of unspecified humerus, sequela
## 31257 Other displaced fracture of upper end of right humerus, initial encounter for closed fracture
## 31258 Other displaced fracture of upper end of right humerus, initial encounter for open fracture
## 31259 Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with routine healing
## 31260 Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing
## 31261 Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with nonunion
## 31262 Other displaced fracture of upper end of right humerus, subsequent encounter for fracture with malunion
## 31263 Other displaced fracture of upper end of right humerus, sequela
## 31264 Other displaced fracture of upper end of left humerus, initial encounter for closed fracture
## 31265 Other displaced fracture of upper end of left humerus, initial encounter for open fracture
## 31266 Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with routine healing
## 31267 Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing
## 31268 Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with nonunion
## 31269 Other displaced fracture of upper end of left humerus, subsequent encounter for fracture with malunion
## 31270 Other displaced fracture of upper end of left humerus, sequela
## 31271 Other displaced fracture of upper end of unspecified humerus, initial encounter for closed fracture
## 31272 Other displaced fracture of upper end of unspecified humerus, initial encounter for open fracture
## 31273 Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing
## 31274 Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31275 Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion
## 31276 Other displaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion
## 31277 Other displaced fracture of upper end of unspecified humerus, sequela
## 31278 Other nondisplaced fracture of upper end of right humerus, initial encounter for closed fracture
## 31279 Other nondisplaced fracture of upper end of right humerus, initial encounter for open fracture
## 31280 Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with routine healing
## 31281 Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with delayed healing
## 31282 Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with nonunion
## 31283 Other nondisplaced fracture of upper end of right humerus, subsequent encounter for fracture with malunion
## 31284 Other nondisplaced fracture of upper end of right humerus, sequela
## 31285 Other nondisplaced fracture of upper end of left humerus, initial encounter for closed fracture
## 31286 Other nondisplaced fracture of upper end of left humerus, initial encounter for open fracture
## 31287 Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with routine healing
## 31288 Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with delayed healing
## 31289 Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with nonunion
## 31290 Other nondisplaced fracture of upper end of left humerus, subsequent encounter for fracture with malunion
## 31291 Other nondisplaced fracture of upper end of left humerus, sequela
## 31292 Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for closed fracture
## 31293 Other nondisplaced fracture of upper end of unspecified humerus, initial encounter for open fracture
## 31294 Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with routine healing
## 31295 Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31296 Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with nonunion
## 31297 Other nondisplaced fracture of upper end of unspecified humerus, subsequent encounter for fracture with malunion
## 31298 Other nondisplaced fracture of upper end of unspecified humerus, sequela
## 31299 Unspecified fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31300 Unspecified fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31301 Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31302 Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31303 Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31304 Unspecified fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31305 Unspecified fracture of shaft of humerus, right arm, sequela
## 31306 Unspecified fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31307 Unspecified fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31308 Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31309 Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31310 Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31311 Unspecified fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31312 Unspecified fracture of shaft of humerus, left arm, sequela
## 31313 Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31314 Unspecified fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31315 Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31316 Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31317 Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31318 Unspecified fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31319 Unspecified fracture of shaft of humerus, unspecified arm, sequela
## 31320 Greenstick fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31321 Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31322 Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31323 Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31324 Greenstick fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31325 Greenstick fracture of shaft of humerus, right arm, sequela
## 31326 Greenstick fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31327 Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31328 Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31329 Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31330 Greenstick fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31331 Greenstick fracture of shaft of humerus, left arm, sequela
## 31332 Greenstick fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31333 Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31334 Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31335 Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31336 Greenstick fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31337 Greenstick fracture of shaft of humerus, unspecified arm, sequela
## 31338 Displaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31339 Displaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31340 Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31341 Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31342 Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31343 Displaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31344 Displaced transverse fracture of shaft of humerus, right arm, sequela
## 31345 Displaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31346 Displaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31347 Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31348 Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31349 Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31350 Displaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31351 Displaced transverse fracture of shaft of humerus, left arm, sequela
## 31352 Displaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31353 Displaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31354 Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31355 Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31356 Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31357 Displaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31358 Displaced transverse fracture of shaft of humerus, unspecified arm, sequela
## 31359 Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31360 Nondisplaced transverse fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31361 Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31362 Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31363 Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31364 Nondisplaced transverse fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31365 Nondisplaced transverse fracture of shaft of humerus, right arm, sequela
## 31366 Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31367 Nondisplaced transverse fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31368 Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31369 Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31370 Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31371 Nondisplaced transverse fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31372 Nondisplaced transverse fracture of shaft of humerus, left arm, sequela
## 31373 Nondisplaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31374 Nondisplaced transverse fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31375 Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31376 Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31377 Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31378 Nondisplaced transverse fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31379 Nondisplaced transverse fracture of shaft of humerus, unspecified arm, sequela
## 31380 Displaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31381 Displaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31382 Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31383 Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31384 Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31385 Displaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31386 Displaced oblique fracture of shaft of humerus, right arm, sequela
## 31387 Displaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31388 Displaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31389 Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31390 Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31391 Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31392 Displaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31393 Displaced oblique fracture of shaft of humerus, left arm, sequela
## 31394 Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31395 Displaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31396 Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31397 Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31398 Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31399 Displaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31400 Displaced oblique fracture of shaft of humerus, unspecified arm, sequela
## 31401 Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31402 Nondisplaced oblique fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31403 Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31404 Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31405 Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31406 Nondisplaced oblique fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31407 Nondisplaced oblique fracture of shaft of humerus, right arm, sequela
## 31408 Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31409 Nondisplaced oblique fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31410 Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31411 Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31412 Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31413 Nondisplaced oblique fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31414 Nondisplaced oblique fracture of shaft of humerus, left arm, sequela
## 31415 Nondisplaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31416 Nondisplaced oblique fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31417 Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31418 Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31419 Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31420 Nondisplaced oblique fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31421 Nondisplaced oblique fracture of shaft of humerus, unspecified arm, sequela
## 31422 Displaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31423 Displaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31424 Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31425 Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31426 Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31427 Displaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31428 Displaced spiral fracture of shaft of humerus, right arm, sequela
## 31429 Displaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31430 Displaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31431 Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31432 Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31433 Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31434 Displaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31435 Displaced spiral fracture of shaft of humerus, left arm, sequela
## 31436 Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31437 Displaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31438 Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31439 Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31440 Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31441 Displaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31442 Displaced spiral fracture of shaft of humerus, unspecified arm, sequela
## 31443 Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31444 Nondisplaced spiral fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31445 Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31446 Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31447 Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31448 Nondisplaced spiral fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31449 Nondisplaced spiral fracture of shaft of humerus, right arm, sequela
## 31450 Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31451 Nondisplaced spiral fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31452 Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31453 Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31454 Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31455 Nondisplaced spiral fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31456 Nondisplaced spiral fracture of shaft of humerus, left arm, sequela
## 31457 Nondisplaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31458 Nondisplaced spiral fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31459 Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31460 Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31461 Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31462 Nondisplaced spiral fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31463 Nondisplaced spiral fracture of shaft of humerus, unspecified arm, sequela
## 31464 Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31465 Displaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31466 Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31467 Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31468 Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31469 Displaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31470 Displaced comminuted fracture of shaft of humerus, right arm, sequela
## 31471 Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31472 Displaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31473 Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31474 Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31475 Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31476 Displaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31477 Displaced comminuted fracture of shaft of humerus, left arm, sequela
## 31478 Displaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31479 Displaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31480 Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31481 Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31482 Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31483 Displaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31484 Displaced comminuted fracture of shaft of humerus, unspecified arm, sequela
## 31485 Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31486 Nondisplaced comminuted fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31487 Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31488 Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31489 Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31490 Nondisplaced comminuted fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31491 Nondisplaced comminuted fracture of shaft of humerus, right arm, sequela
## 31492 Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31493 Nondisplaced comminuted fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31494 Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31495 Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31496 Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31497 Nondisplaced comminuted fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31498 Nondisplaced comminuted fracture of shaft of humerus, left arm, sequela
## 31499 Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31500 Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31501 Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31502 Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31503 Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31504 Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31505 Nondisplaced comminuted fracture of shaft of humerus, unspecified arm, sequela
## 31506 Displaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31507 Displaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31508 Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31509 Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31510 Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31511 Displaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31512 Displaced segmental fracture of shaft of humerus, right arm, sequela
## 31513 Displaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31514 Displaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31515 Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31516 Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31517 Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31518 Displaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31519 Displaced segmental fracture of shaft of humerus, left arm, sequela
## 31520 Displaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31521 Displaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31522 Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31523 Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31524 Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31525 Displaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31526 Displaced segmental fracture of shaft of humerus, unspecified arm, sequela
## 31527 Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for closed fracture
## 31528 Nondisplaced segmental fracture of shaft of humerus, right arm, initial encounter for open fracture
## 31529 Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with routine healing
## 31530 Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with delayed healing
## 31531 Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with nonunion
## 31532 Nondisplaced segmental fracture of shaft of humerus, right arm, subsequent encounter for fracture with malunion
## 31533 Nondisplaced segmental fracture of shaft of humerus, right arm, sequela
## 31534 Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for closed fracture
## 31535 Nondisplaced segmental fracture of shaft of humerus, left arm, initial encounter for open fracture
## 31536 Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with routine healing
## 31537 Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with delayed healing
## 31538 Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with nonunion
## 31539 Nondisplaced segmental fracture of shaft of humerus, left arm, subsequent encounter for fracture with malunion
## 31540 Nondisplaced segmental fracture of shaft of humerus, left arm, sequela
## 31541 Nondisplaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for closed fracture
## 31542 Nondisplaced segmental fracture of shaft of humerus, unspecified arm, initial encounter for open fracture
## 31543 Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 31544 Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 31545 Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 31546 Nondisplaced segmental fracture of shaft of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 31547 Nondisplaced segmental fracture of shaft of humerus, unspecified arm, sequela
## 31548 Other fracture of shaft of right humerus, initial encounter for closed fracture
## 31549 Other fracture of shaft of right humerus, initial encounter for open fracture
## 31550 Other fracture of shaft of right humerus, subsequent encounter for fracture with routine healing
## 31551 Other fracture of shaft of right humerus, subsequent encounter for fracture with delayed healing
## 31552 Other fracture of shaft of right humerus, subsequent encounter for fracture with nonunion
## 31553 Other fracture of shaft of right humerus, subsequent encounter for fracture with malunion
## 31554 Other fracture of shaft of right humerus, sequela
## 31555 Other fracture of shaft of left humerus, initial encounter for closed fracture
## 31556 Other fracture of shaft of left humerus, initial encounter for open fracture
## 31557 Other fracture of shaft of left humerus, subsequent encounter for fracture with routine healing
## 31558 Other fracture of shaft of left humerus, subsequent encounter for fracture with delayed healing
## 31559 Other fracture of shaft of left humerus, subsequent encounter for fracture with nonunion
## 31560 Other fracture of shaft of left humerus, subsequent encounter for fracture with malunion
## 31561 Other fracture of shaft of left humerus, sequela
## 31562 Other fracture of shaft of unspecified humerus, initial encounter for closed fracture
## 31563 Other fracture of shaft of unspecified humerus, initial encounter for open fracture
## 31564 Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with routine healing
## 31565 Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31566 Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with nonunion
## 31567 Other fracture of shaft of unspecified humerus, subsequent encounter for fracture with malunion
## 31568 Other fracture of shaft of unspecified humerus, sequela
## 31569 Unspecified fracture of lower end of right humerus, initial encounter for closed fracture
## 31570 Unspecified fracture of lower end of right humerus, initial encounter for open fracture
## 31571 Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with routine healing
## 31572 Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing
## 31573 Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with nonunion
## 31574 Unspecified fracture of lower end of right humerus, subsequent encounter for fracture with malunion
## 31575 Unspecified fracture of lower end of right humerus, sequela
## 31576 Unspecified fracture of lower end of left humerus, initial encounter for closed fracture
## 31577 Unspecified fracture of lower end of left humerus, initial encounter for open fracture
## 31578 Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with routine healing
## 31579 Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing
## 31580 Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with nonunion
## 31581 Unspecified fracture of lower end of left humerus, subsequent encounter for fracture with malunion
## 31582 Unspecified fracture of lower end of left humerus, sequela
## 31583 Unspecified fracture of lower end of unspecified humerus, initial encounter for closed fracture
## 31584 Unspecified fracture of lower end of unspecified humerus, initial encounter for open fracture
## 31585 Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing
## 31586 Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31587 Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion
## 31588 Unspecified fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion
## 31589 Unspecified fracture of lower end of unspecified humerus, sequela
## 31590 Displaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture
## 31591 Displaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture
## 31592 Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing
## 31593 Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing
## 31594 Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion
## 31595 Displaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion
## 31596 Displaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela
## 31597 Displaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture
## 31598 Displaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture
## 31599 Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing
## 31600 Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing
## 31601 Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion
## 31602 Displaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion
## 31603 Displaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela
## 31604 Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture
## 31605 Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture
## 31606 Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing
## 31607 Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31608 Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion
## 31609 Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion
## 31610 Displaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, sequela
## 31611 Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture
## 31612 Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture
## 31613 Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing
## 31614 Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing
## 31615 Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion
## 31616 Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion
## 31617 Nondisplaced simple supracondylar fracture without intercondylar fracture of right humerus, sequela
## 31618 Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture
## 31619 Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture
## 31620 Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing
## 31621 Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing
## 31622 Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion
## 31623 Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion
## 31624 Nondisplaced simple supracondylar fracture without intercondylar fracture of left humerus, sequela
## 31625 Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture
## 31626 Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture
## 31627 Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing
## 31628 Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31629 Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion
## 31630 Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion
## 31631 Nondisplaced simple supracondylar fracture without intercondylar fracture of unspecified humerus, sequela
## 31632 Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture
## 31633 Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture
## 31634 Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing
## 31635 Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing
## 31636 Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion
## 31637 Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion
## 31638 Displaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela
## 31639 Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture
## 31640 Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture
## 31641 Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing
## 31642 Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing
## 31643 Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion
## 31644 Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion
## 31645 Displaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela
## 31646 Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture
## 31647 Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture
## 31648 Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing
## 31649 Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31650 Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion
## 31651 Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion
## 31652 Displaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, sequela
## 31653 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for closed fracture
## 31654 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, initial encounter for open fracture
## 31655 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with routine healing
## 31656 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with delayed healing
## 31657 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with nonunion
## 31658 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, subsequent encounter for fracture with malunion
## 31659 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of right humerus, sequela
## 31660 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for closed fracture
## 31661 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, initial encounter for open fracture
## 31662 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with routine healing
## 31663 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with delayed healing
## 31664 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with nonunion
## 31665 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, subsequent encounter for fracture with malunion
## 31666 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of left humerus, sequela
## 31667 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for closed fracture
## 31668 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, initial encounter for open fracture
## 31669 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing
## 31670 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31671 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion
## 31672 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion
## 31673 Nondisplaced comminuted supracondylar fracture without intercondylar fracture of unspecified humerus, sequela
## 31674 Displaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for closed fracture
## 31675 Displaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for open fracture
## 31676 Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with routine healing
## 31677 Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with delayed healing
## 31678 Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with nonunion
## 31679 Displaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with malunion
## 31680 Displaced fracture (avulsion) of lateral epicondyle of right humerus, sequela
## 31681 Displaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for closed fracture
## 31682 Displaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for open fracture
## 31683 Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with routine healing
## 31684 Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with delayed healing
## 31685 Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with nonunion
## 31686 Displaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with malunion
## 31687 Displaced fracture (avulsion) of lateral epicondyle of left humerus, sequela
## 31688 Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for closed fracture
## 31689 Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for open fracture
## 31690 Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31691 Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31692 Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31693 Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31694 Displaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela
## 31695 Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for closed fracture
## 31696 Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, initial encounter for open fracture
## 31697 Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with routine healing
## 31698 Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with delayed healing
## 31699 Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with nonunion
## 31700 Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, subsequent encounter for fracture with malunion
## 31701 Nondisplaced fracture (avulsion) of lateral epicondyle of right humerus, sequela
## 31702 Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for closed fracture
## 31703 Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, initial encounter for open fracture
## 31704 Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with routine healing
## 31705 Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with delayed healing
## 31706 Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with nonunion
## 31707 Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, subsequent encounter for fracture with malunion
## 31708 Nondisplaced fracture (avulsion) of lateral epicondyle of left humerus, sequela
## 31709 Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for closed fracture
## 31710 Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, initial encounter for open fracture
## 31711 Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31712 Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31713 Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31714 Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31715 Nondisplaced fracture (avulsion) of lateral epicondyle of unspecified humerus, sequela
## 31716 Displaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture
## 31717 Displaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture
## 31718 Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing
## 31719 Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing
## 31720 Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion
## 31721 Displaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion
## 31722 Displaced fracture (avulsion) of medial epicondyle of right humerus, sequela
## 31723 Displaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture
## 31724 Displaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture
## 31725 Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing
## 31726 Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing
## 31727 Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion
## 31728 Displaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion
## 31729 Displaced fracture (avulsion) of medial epicondyle of left humerus, sequela
## 31730 Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture
## 31731 Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture
## 31732 Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31733 Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31734 Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31735 Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31736 Displaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela
## 31737 Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture
## 31738 Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture
## 31739 Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing
## 31740 Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing
## 31741 Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion
## 31742 Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion
## 31743 Nondisplaced fracture (avulsion) of medial epicondyle of right humerus, sequela
## 31744 Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture
## 31745 Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture
## 31746 Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing
## 31747 Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing
## 31748 Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion
## 31749 Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion
## 31750 Nondisplaced fracture (avulsion) of medial epicondyle of left humerus, sequela
## 31751 Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture
## 31752 Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture
## 31753 Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31754 Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31755 Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31756 Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31757 Nondisplaced fracture (avulsion) of medial epicondyle of unspecified humerus, sequela
## 31758 Incarcerated fracture (avulsion) of medial epicondyle of right humerus, initial encounter for closed fracture
## 31759 Incarcerated fracture (avulsion) of medial epicondyle of right humerus, initial encounter for open fracture
## 31760 Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with routine healing
## 31761 Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with delayed healing
## 31762 Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with nonunion
## 31763 Incarcerated fracture (avulsion) of medial epicondyle of right humerus, subsequent encounter for fracture with malunion
## 31764 Incarcerated fracture (avulsion) of medial epicondyle of right humerus, sequela
## 31765 Incarcerated fracture (avulsion) of medial epicondyle of left humerus, initial encounter for closed fracture
## 31766 Incarcerated fracture (avulsion) of medial epicondyle of left humerus, initial encounter for open fracture
## 31767 Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with routine healing
## 31768 Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with delayed healing
## 31769 Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with nonunion
## 31770 Incarcerated fracture (avulsion) of medial epicondyle of left humerus, subsequent encounter for fracture with malunion
## 31771 Incarcerated fracture (avulsion) of medial epicondyle of left humerus, sequela
## 31772 Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for closed fracture
## 31773 Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, initial encounter for open fracture
## 31774 Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31775 Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31776 Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31777 Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31778 Incarcerated fracture (avulsion) of medial epicondyle of unspecified humerus, sequela
## 31779 Displaced fracture of lateral condyle of right humerus, initial encounter for closed fracture
## 31780 Displaced fracture of lateral condyle of right humerus, initial encounter for open fracture
## 31781 Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with routine healing
## 31782 Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with delayed healing
## 31783 Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with nonunion
## 31784 Displaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with malunion
## 31785 Displaced fracture of lateral condyle of right humerus, sequela
## 31786 Displaced fracture of lateral condyle of left humerus, initial encounter for closed fracture
## 31787 Displaced fracture of lateral condyle of left humerus, initial encounter for open fracture
## 31788 Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with routine healing
## 31789 Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with delayed healing
## 31790 Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with nonunion
## 31791 Displaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with malunion
## 31792 Displaced fracture of lateral condyle of left humerus, sequela
## 31793 Displaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture
## 31794 Displaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture
## 31795 Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31796 Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31797 Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31798 Displaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31799 Displaced fracture of lateral condyle of unspecified humerus, sequela
## 31800 Nondisplaced fracture of lateral condyle of right humerus, initial encounter for closed fracture
## 31801 Nondisplaced fracture of lateral condyle of right humerus, initial encounter for open fracture
## 31802 Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with routine healing
## 31803 Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with delayed healing
## 31804 Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with nonunion
## 31805 Nondisplaced fracture of lateral condyle of right humerus, subsequent encounter for fracture with malunion
## 31806 Nondisplaced fracture of lateral condyle of right humerus, sequela
## 31807 Nondisplaced fracture of lateral condyle of left humerus, initial encounter for closed fracture
## 31808 Nondisplaced fracture of lateral condyle of left humerus, initial encounter for open fracture
## 31809 Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with routine healing
## 31810 Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with delayed healing
## 31811 Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with nonunion
## 31812 Nondisplaced fracture of lateral condyle of left humerus, subsequent encounter for fracture with malunion
## 31813 Nondisplaced fracture of lateral condyle of left humerus, sequela
## 31814 Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for closed fracture
## 31815 Nondisplaced fracture of lateral condyle of unspecified humerus, initial encounter for open fracture
## 31816 Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31817 Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31818 Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31819 Nondisplaced fracture of lateral condyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31820 Nondisplaced fracture of lateral condyle of unspecified humerus, sequela
## 31821 Displaced fracture of medial condyle of right humerus, initial encounter for closed fracture
## 31822 Displaced fracture of medial condyle of right humerus, initial encounter for open fracture
## 31823 Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with routine healing
## 31824 Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with delayed healing
## 31825 Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with nonunion
## 31826 Displaced fracture of medial condyle of right humerus, subsequent encounter for fracture with malunion
## 31827 Displaced fracture of medial condyle of right humerus, sequela
## 31828 Displaced fracture of medial condyle of left humerus, initial encounter for closed fracture
## 31829 Displaced fracture of medial condyle of left humerus, initial encounter for open fracture
## 31830 Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with routine healing
## 31831 Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with delayed healing
## 31832 Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with nonunion
## 31833 Displaced fracture of medial condyle of left humerus, subsequent encounter for fracture with malunion
## 31834 Displaced fracture of medial condyle of left humerus, sequela
## 31835 Displaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture
## 31836 Displaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture
## 31837 Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31838 Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31839 Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31840 Displaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31841 Displaced fracture of medial condyle of unspecified humerus, sequela
## 31842 Nondisplaced fracture of medial condyle of right humerus, initial encounter for closed fracture
## 31843 Nondisplaced fracture of medial condyle of right humerus, initial encounter for open fracture
## 31844 Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with routine healing
## 31845 Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with delayed healing
## 31846 Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with nonunion
## 31847 Nondisplaced fracture of medial condyle of right humerus, subsequent encounter for fracture with malunion
## 31848 Nondisplaced fracture of medial condyle of right humerus, sequela
## 31849 Nondisplaced fracture of medial condyle of left humerus, initial encounter for closed fracture
## 31850 Nondisplaced fracture of medial condyle of left humerus, initial encounter for open fracture
## 31851 Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with routine healing
## 31852 Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with delayed healing
## 31853 Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with nonunion
## 31854 Nondisplaced fracture of medial condyle of left humerus, subsequent encounter for fracture with malunion
## 31855 Nondisplaced fracture of medial condyle of left humerus, sequela
## 31856 Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for closed fracture
## 31857 Nondisplaced fracture of medial condyle of unspecified humerus, initial encounter for open fracture
## 31858 Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with routine healing
## 31859 Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31860 Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with nonunion
## 31861 Nondisplaced fracture of medial condyle of unspecified humerus, subsequent encounter for fracture with malunion
## 31862 Nondisplaced fracture of medial condyle of unspecified humerus, sequela
## 31863 Displaced transcondylar fracture of right humerus, initial encounter for closed fracture
## 31864 Displaced transcondylar fracture of right humerus, initial encounter for open fracture
## 31865 Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with routine healing
## 31866 Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with delayed healing
## 31867 Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion
## 31868 Displaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion
## 31869 Displaced transcondylar fracture of right humerus, sequela
## 31870 Displaced transcondylar fracture of left humerus, initial encounter for closed fracture
## 31871 Displaced transcondylar fracture of left humerus, initial encounter for open fracture
## 31872 Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with routine healing
## 31873 Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with delayed healing
## 31874 Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion
## 31875 Displaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion
## 31876 Displaced transcondylar fracture of left humerus, sequela
## 31877 Displaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture
## 31878 Displaced transcondylar fracture of unspecified humerus, initial encounter for open fracture
## 31879 Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing
## 31880 Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31881 Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion
## 31882 Displaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion
## 31883 Displaced transcondylar fracture of unspecified humerus, sequela
## 31884 Nondisplaced transcondylar fracture of right humerus, initial encounter for closed fracture
## 31885 Nondisplaced transcondylar fracture of right humerus, initial encounter for open fracture
## 31886 Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with routine healing
## 31887 Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with delayed healing
## 31888 Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with nonunion
## 31889 Nondisplaced transcondylar fracture of right humerus, subsequent encounter for fracture with malunion
## 31890 Nondisplaced transcondylar fracture of right humerus, sequela
## 31891 Nondisplaced transcondylar fracture of left humerus, initial encounter for closed fracture
## 31892 Nondisplaced transcondylar fracture of left humerus, initial encounter for open fracture
## 31893 Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with routine healing
## 31894 Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with delayed healing
## 31895 Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with nonunion
## 31896 Nondisplaced transcondylar fracture of left humerus, subsequent encounter for fracture with malunion
## 31897 Nondisplaced transcondylar fracture of left humerus, sequela
## 31898 Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for closed fracture
## 31899 Nondisplaced transcondylar fracture of unspecified humerus, initial encounter for open fracture
## 31900 Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with routine healing
## 31901 Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31902 Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with nonunion
## 31903 Nondisplaced transcondylar fracture of unspecified humerus, subsequent encounter for fracture with malunion
## 31904 Nondisplaced transcondylar fracture of unspecified humerus, sequela
## 31905 Torus fracture of lower end of right humerus, initial encounter for closed fracture
## 31906 Torus fracture of lower end of right humerus, subsequent encounter for fracture with routine healing
## 31907 Torus fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing
## 31908 Torus fracture of lower end of right humerus, subsequent encounter for fracture with nonunion
## 31909 Torus fracture of lower end of right humerus, subsequent encounter for fracture with malunion
## 31910 Torus fracture of lower end of right humerus, sequela
## 31911 Torus fracture of lower end of left humerus, initial encounter for closed fracture
## 31912 Torus fracture of lower end of left humerus, subsequent encounter for fracture with routine healing
## 31913 Torus fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing
## 31914 Torus fracture of lower end of left humerus, subsequent encounter for fracture with nonunion
## 31915 Torus fracture of lower end of left humerus, subsequent encounter for fracture with malunion
## 31916 Torus fracture of lower end of left humerus, sequela
## 31917 Torus fracture of lower end of unspecified humerus, initial encounter for closed fracture
## 31918 Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing
## 31919 Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31920 Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion
## 31921 Torus fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion
## 31922 Torus fracture of lower end of unspecified humerus, sequela
## 31923 Other displaced fracture of lower end of right humerus, initial encounter for closed fracture
## 31924 Other displaced fracture of lower end of right humerus, initial encounter for open fracture
## 31925 Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with routine healing
## 31926 Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing
## 31927 Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with nonunion
## 31928 Other displaced fracture of lower end of right humerus, subsequent encounter for fracture with malunion
## 31929 Other displaced fracture of lower end of right humerus, sequela
## 31930 Other displaced fracture of lower end of left humerus, initial encounter for closed fracture
## 31931 Other displaced fracture of lower end of left humerus, initial encounter for open fracture
## 31932 Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with routine healing
## 31933 Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing
## 31934 Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with nonunion
## 31935 Other displaced fracture of lower end of left humerus, subsequent encounter for fracture with malunion
## 31936 Other displaced fracture of lower end of left humerus, sequela
## 31937 Other displaced fracture of lower end of unspecified humerus, initial encounter for closed fracture
## 31938 Other displaced fracture of lower end of unspecified humerus, initial encounter for open fracture
## 31939 Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing
## 31940 Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31941 Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion
## 31942 Other displaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion
## 31943 Other displaced fracture of lower end of unspecified humerus, sequela
## 31944 Other nondisplaced fracture of lower end of right humerus, initial encounter for closed fracture
## 31945 Other nondisplaced fracture of lower end of right humerus, initial encounter for open fracture
## 31946 Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with routine healing
## 31947 Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with delayed healing
## 31948 Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with nonunion
## 31949 Other nondisplaced fracture of lower end of right humerus, subsequent encounter for fracture with malunion
## 31950 Other nondisplaced fracture of lower end of right humerus, sequela
## 31951 Other nondisplaced fracture of lower end of left humerus, initial encounter for closed fracture
## 31952 Other nondisplaced fracture of lower end of left humerus, initial encounter for open fracture
## 31953 Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with routine healing
## 31954 Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with delayed healing
## 31955 Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with nonunion
## 31956 Other nondisplaced fracture of lower end of left humerus, subsequent encounter for fracture with malunion
## 31957 Other nondisplaced fracture of lower end of left humerus, sequela
## 31958 Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for closed fracture
## 31959 Other nondisplaced fracture of lower end of unspecified humerus, initial encounter for open fracture
## 31960 Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with routine healing
## 31961 Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with delayed healing
## 31962 Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with nonunion
## 31963 Other nondisplaced fracture of lower end of unspecified humerus, subsequent encounter for fracture with malunion
## 31964 Other nondisplaced fracture of lower end of unspecified humerus, sequela
## 31965 Fracture of unspecified shoulder girdle, part unspecified, initial encounter for closed fracture
## 31966 Fracture of unspecified shoulder girdle, part unspecified, initial encounter for open fracture
## 31967 Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing
## 31968 Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing
## 31969 Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion
## 31970 Fracture of unspecified shoulder girdle, part unspecified, subsequent encounter for fracture with malunion
## 31971 Fracture of unspecified shoulder girdle, part unspecified, sequela
## 31972 Fracture of right shoulder girdle, part unspecified, initial encounter for closed fracture
## 31973 Fracture of right shoulder girdle, part unspecified, initial encounter for open fracture
## 31974 Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing
## 31975 Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing
## 31976 Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion
## 31977 Fracture of right shoulder girdle, part unspecified, subsequent encounter for fracture with malunion
## 31978 Fracture of right shoulder girdle, part unspecified, sequela
## 31979 Fracture of left shoulder girdle, part unspecified, initial encounter for closed fracture
## 31980 Fracture of left shoulder girdle, part unspecified, initial encounter for open fracture
## 31981 Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with routine healing
## 31982 Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with delayed healing
## 31983 Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with nonunion
## 31984 Fracture of left shoulder girdle, part unspecified, subsequent encounter for fracture with malunion
## 31985 Fracture of left shoulder girdle, part unspecified, sequela
## 31986 Unspecified subluxation of right shoulder joint, initial encounter
## 31987 Unspecified subluxation of right shoulder joint, subsequent encounter
## 31988 Unspecified subluxation of right shoulder joint, sequela
## 31989 Unspecified subluxation of left shoulder joint, initial encounter
## 31990 Unspecified subluxation of left shoulder joint, subsequent encounter
## 31991 Unspecified subluxation of left shoulder joint, sequela
## 31992 Unspecified subluxation of unspecified shoulder joint, initial encounter
## 31993 Unspecified subluxation of unspecified shoulder joint, subsequent encounter
## 31994 Unspecified subluxation of unspecified shoulder joint, sequela
## 31995 Unspecified dislocation of right shoulder joint, initial encounter
## 31996 Unspecified dislocation of right shoulder joint, subsequent encounter
## 31997 Unspecified dislocation of right shoulder joint, sequela
## 31998 Unspecified dislocation of left shoulder joint, initial encounter
## 31999 Unspecified dislocation of left shoulder joint, subsequent encounter
## 32000 Unspecified dislocation of left shoulder joint, sequela
## 32001 Unspecified dislocation of unspecified shoulder joint, initial encounter
## 32002 Unspecified dislocation of unspecified shoulder joint, subsequent encounter
## 32003 Unspecified dislocation of unspecified shoulder joint, sequela
## 32004 Anterior subluxation of right humerus, initial encounter
## 32005 Anterior subluxation of right humerus, subsequent encounter
## 32006 Anterior subluxation of right humerus, sequela
## 32007 Anterior subluxation of left humerus, initial encounter
## 32008 Anterior subluxation of left humerus, subsequent encounter
## 32009 Anterior subluxation of left humerus, sequela
## 32010 Anterior subluxation of unspecified humerus, initial encounter
## 32011 Anterior subluxation of unspecified humerus, subsequent encounter
## 32012 Anterior subluxation of unspecified humerus, sequela
## 32013 Anterior dislocation of right humerus, initial encounter
## 32014 Anterior dislocation of right humerus, subsequent encounter
## 32015 Anterior dislocation of right humerus, sequela
## 32016 Anterior dislocation of left humerus, initial encounter
## 32017 Anterior dislocation of left humerus, subsequent encounter
## 32018 Anterior dislocation of left humerus, sequela
## 32019 Anterior dislocation of unspecified humerus, initial encounter
## 32020 Anterior dislocation of unspecified humerus, subsequent encounter
## 32021 Anterior dislocation of unspecified humerus, sequela
## 32022 Posterior subluxation of right humerus, initial encounter
## 32023 Posterior subluxation of right humerus, subsequent encounter
## 32024 Posterior subluxation of right humerus, sequela
## 32025 Posterior subluxation of left humerus, initial encounter
## 32026 Posterior subluxation of left humerus, subsequent encounter
## 32027 Posterior subluxation of left humerus, sequela
## 32028 Posterior subluxation of unspecified humerus, initial encounter
## 32029 Posterior subluxation of unspecified humerus, subsequent encounter
## 32030 Posterior subluxation of unspecified humerus, sequela
## 32031 Posterior dislocation of right humerus, initial encounter
## 32032 Posterior dislocation of right humerus, subsequent encounter
## 32033 Posterior dislocation of right humerus, sequela
## 32034 Posterior dislocation of left humerus, initial encounter
## 32035 Posterior dislocation of left humerus, subsequent encounter
## 32036 Posterior dislocation of left humerus, sequela
## 32037 Posterior dislocation of unspecified humerus, initial encounter
## 32038 Posterior dislocation of unspecified humerus, subsequent encounter
## 32039 Posterior dislocation of unspecified humerus, sequela
## 32040 Inferior subluxation of right humerus, initial encounter
## 32041 Inferior subluxation of right humerus, subsequent encounter
## 32042 Inferior subluxation of right humerus, sequela
## 32043 Inferior subluxation of left humerus, initial encounter
## 32044 Inferior subluxation of left humerus, subsequent encounter
## 32045 Inferior subluxation of left humerus, sequela
## 32046 Inferior subluxation of unspecified humerus, initial encounter
## 32047 Inferior subluxation of unspecified humerus, subsequent encounter
## 32048 Inferior subluxation of unspecified humerus, sequela
## 32049 Inferior dislocation of right humerus, initial encounter
## 32050 Inferior dislocation of right humerus, subsequent encounter
## 32051 Inferior dislocation of right humerus, sequela
## 32052 Inferior dislocation of left humerus, initial encounter
## 32053 Inferior dislocation of left humerus, subsequent encounter
## 32054 Inferior dislocation of left humerus, sequela
## 32055 Inferior dislocation of unspecified humerus, initial encounter
## 32056 Inferior dislocation of unspecified humerus, subsequent encounter
## 32057 Inferior dislocation of unspecified humerus, sequela
## 32058 Other subluxation of right shoulder joint, initial encounter
## 32059 Other subluxation of right shoulder joint, subsequent encounter
## 32060 Other subluxation of right shoulder joint, sequela
## 32061 Other subluxation of left shoulder joint, initial encounter
## 32062 Other subluxation of left shoulder joint, subsequent encounter
## 32063 Other subluxation of left shoulder joint, sequela
## 32064 Other subluxation of unspecified shoulder joint, initial encounter
## 32065 Other subluxation of unspecified shoulder joint, subsequent encounter
## 32066 Other subluxation of unspecified shoulder joint, sequela
## 32067 Other dislocation of right shoulder joint, initial encounter
## 32068 Other dislocation of right shoulder joint, subsequent encounter
## 32069 Other dislocation of right shoulder joint, sequela
## 32070 Other dislocation of left shoulder joint, initial encounter
## 32071 Other dislocation of left shoulder joint, subsequent encounter
## 32072 Other dislocation of left shoulder joint, sequela
## 32073 Other dislocation of unspecified shoulder joint, initial encounter
## 32074 Other dislocation of unspecified shoulder joint, subsequent encounter
## 32075 Other dislocation of unspecified shoulder joint, sequela
## 32076 Unspecified dislocation of right acromioclavicular joint, initial encounter
## 32077 Unspecified dislocation of right acromioclavicular joint, subsequent encounter
## 32078 Unspecified dislocation of right acromioclavicular joint, sequela
## 32079 Unspecified dislocation of left acromioclavicular joint, initial encounter
## 32080 Unspecified dislocation of left acromioclavicular joint, subsequent encounter
## 32081 Unspecified dislocation of left acromioclavicular joint, sequela
## 32082 Unspecified dislocation of unspecified acromioclavicular joint, initial encounter
## 32083 Unspecified dislocation of unspecified acromioclavicular joint, subsequent encounter
## 32084 Unspecified dislocation of unspecified acromioclavicular joint, sequela
## 32085 Subluxation of right acromioclavicular joint, initial encounter
## 32086 Subluxation of right acromioclavicular joint, subsequent encounter
## 32087 Subluxation of right acromioclavicular joint, sequela
## 32088 Subluxation of left acromioclavicular joint, initial encounter
## 32089 Subluxation of left acromioclavicular joint, subsequent encounter
## 32090 Subluxation of left acromioclavicular joint, sequela
## 32091 Subluxation of unspecified acromioclavicular joint, initial encounter
## 32092 Subluxation of unspecified acromioclavicular joint, subsequent encounter
## 32093 Subluxation of unspecified acromioclavicular joint, sequela
## 32094 Dislocation of right acromioclavicular joint, 100%-200% displacement, initial encounter
## 32095 Dislocation of right acromioclavicular joint, 100%-200% displacement, subsequent encounter
## 32096 Dislocation of right acromioclavicular joint, 100%-200% displacement, sequela
## 32097 Dislocation of left acromioclavicular joint, 100%-200% displacement, initial encounter
## 32098 Dislocation of left acromioclavicular joint, 100%-200% displacement, subsequent encounter
## 32099 Dislocation of left acromioclavicular joint, 100%-200% displacement, sequela
## 32100 Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, initial encounter
## 32101 Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, subsequent encounter
## 32102 Dislocation of unspecified acromioclavicular joint, 100%-200% displacement, sequela
## 32103 Dislocation of right acromioclavicular joint, greater than 200% displacement, initial encounter
## 32104 Dislocation of right acromioclavicular joint, greater than 200% displacement, subsequent encounter
## 32105 Dislocation of right acromioclavicular joint, greater than 200% displacement, sequela
## 32106 Dislocation of left acromioclavicular joint, greater than 200% displacement, initial encounter
## 32107 Dislocation of left acromioclavicular joint, greater than 200% displacement, subsequent encounter
## 32108 Dislocation of left acromioclavicular joint, greater than 200% displacement, sequela
## 32109 Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, initial encounter
## 32110 Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, subsequent encounter
## 32111 Dislocation of unspecified acromioclavicular joint, greater than 200% displacement, sequela
## 32112 Inferior dislocation of right acromioclavicular joint, initial encounter
## 32113 Inferior dislocation of right acromioclavicular joint, subsequent encounter
## 32114 Inferior dislocation of right acromioclavicular joint, sequela
## 32115 Inferior dislocation of left acromioclavicular joint, initial encounter
## 32116 Inferior dislocation of left acromioclavicular joint, subsequent encounter
## 32117 Inferior dislocation of left acromioclavicular joint, sequela
## 32118 Inferior dislocation of unspecified acromioclavicular joint, initial encounter
## 32119 Inferior dislocation of unspecified acromioclavicular joint, subsequent encounter
## 32120 Inferior dislocation of unspecified acromioclavicular joint, sequela
## 32121 Posterior dislocation of right acromioclavicular joint, initial encounter
## 32122 Posterior dislocation of right acromioclavicular joint, subsequent encounter
## 32123 Posterior dislocation of right acromioclavicular joint, sequela
## 32124 Posterior dislocation of left acromioclavicular joint, initial encounter
## 32125 Posterior dislocation of left acromioclavicular joint, subsequent encounter
## 32126 Posterior dislocation of left acromioclavicular joint, sequela
## 32127 Posterior dislocation of unspecified acromioclavicular joint, initial encounter
## 32128 Posterior dislocation of unspecified acromioclavicular joint, subsequent encounter
## 32129 Posterior dislocation of unspecified acromioclavicular joint, sequela
## 32130 Unspecified subluxation of right sternoclavicular joint, initial encounter
## 32131 Unspecified subluxation of right sternoclavicular joint, subsequent encounter
## 32132 Unspecified subluxation of right sternoclavicular joint, sequela
## 32133 Unspecified subluxation of left sternoclavicular joint, initial encounter
## 32134 Unspecified subluxation of left sternoclavicular joint, subsequent encounter
## 32135 Unspecified subluxation of left sternoclavicular joint, sequela
## 32136 Unspecified subluxation of unspecified sternoclavicular joint, initial encounter
## 32137 Unspecified subluxation of unspecified sternoclavicular joint, subsequent encounter
## 32138 Unspecified subluxation of unspecified sternoclavicular joint, sequela
## 32139 Unspecified dislocation of right sternoclavicular joint, initial encounter
## 32140 Unspecified dislocation of right sternoclavicular joint, subsequent encounter
## 32141 Unspecified dislocation of right sternoclavicular joint, sequela
## 32142 Unspecified dislocation of left sternoclavicular joint, initial encounter
## 32143 Unspecified dislocation of left sternoclavicular joint, subsequent encounter
## 32144 Unspecified dislocation of left sternoclavicular joint, sequela
## 32145 Unspecified dislocation of unspecified sternoclavicular joint, initial encounter
## 32146 Unspecified dislocation of unspecified sternoclavicular joint, subsequent encounter
## 32147 Unspecified dislocation of unspecified sternoclavicular joint, sequela
## 32148 Anterior subluxation of right sternoclavicular joint, initial encounter
## 32149 Anterior subluxation of right sternoclavicular joint, subsequent encounter
## 32150 Anterior subluxation of right sternoclavicular joint, sequela
## 32151 Anterior subluxation of left sternoclavicular joint, initial encounter
## 32152 Anterior subluxation of left sternoclavicular joint, subsequent encounter
## 32153 Anterior subluxation of left sternoclavicular joint, sequela
## 32154 Anterior subluxation of unspecified sternoclavicular joint, initial encounter
## 32155 Anterior subluxation of unspecified sternoclavicular joint, subsequent encounter
## 32156 Anterior subluxation of unspecified sternoclavicular joint, sequela
## 32157 Anterior dislocation of right sternoclavicular joint, initial encounter
## 32158 Anterior dislocation of right sternoclavicular joint, subsequent encounter
## 32159 Anterior dislocation of right sternoclavicular joint, sequela
## 32160 Anterior dislocation of left sternoclavicular joint, initial encounter
## 32161 Anterior dislocation of left sternoclavicular joint, subsequent encounter
## 32162 Anterior dislocation of left sternoclavicular joint, sequela
## 32163 Anterior dislocation of unspecified sternoclavicular joint, initial encounter
## 32164 Anterior dislocation of unspecified sternoclavicular joint, subsequent encounter
## 32165 Anterior dislocation of unspecified sternoclavicular joint, sequela
## 32166 Posterior subluxation of right sternoclavicular joint, initial encounter
## 32167 Posterior subluxation of right sternoclavicular joint, subsequent encounter
## 32168 Posterior subluxation of right sternoclavicular joint, sequela
## 32169 Posterior subluxation of left sternoclavicular joint, initial encounter
## 32170 Posterior subluxation of left sternoclavicular joint, subsequent encounter
## 32171 Posterior subluxation of left sternoclavicular joint, sequela
## 32172 Posterior subluxation of unspecified sternoclavicular joint, initial encounter
## 32173 Posterior subluxation of unspecified sternoclavicular joint, subsequent encounter
## 32174 Posterior subluxation of unspecified sternoclavicular joint, sequela
## 32175 Posterior dislocation of right sternoclavicular joint, initial encounter
## 32176 Posterior dislocation of right sternoclavicular joint, subsequent encounter
## 32177 Posterior dislocation of right sternoclavicular joint, sequela
## 32178 Posterior dislocation of left sternoclavicular joint, initial encounter
## 32179 Posterior dislocation of left sternoclavicular joint, subsequent encounter
## 32180 Posterior dislocation of left sternoclavicular joint, sequela
## 32181 Posterior dislocation of unspecified sternoclavicular joint, initial encounter
## 32182 Posterior dislocation of unspecified sternoclavicular joint, subsequent encounter
## 32183 Posterior dislocation of unspecified sternoclavicular joint, sequela
## 32184 Subluxation of unspecified parts of right shoulder girdle, initial encounter
## 32185 Subluxation of unspecified parts of right shoulder girdle, subsequent encounter
## 32186 Subluxation of unspecified parts of right shoulder girdle, sequela
## 32187 Subluxation of unspecified parts of left shoulder girdle, initial encounter
## 32188 Subluxation of unspecified parts of left shoulder girdle, subsequent encounter
## 32189 Subluxation of unspecified parts of left shoulder girdle, sequela
## 32190 Subluxation of unspecified parts of unspecified shoulder girdle, initial encounter
## 32191 Subluxation of unspecified parts of unspecified shoulder girdle, subsequent encounter
## 32192 Subluxation of unspecified parts of unspecified shoulder girdle, sequela
## 32193 Dislocation of unspecified parts of right shoulder girdle, initial encounter
## 32194 Dislocation of unspecified parts of right shoulder girdle, subsequent encounter
## 32195 Dislocation of unspecified parts of right shoulder girdle, sequela
## 32196 Dislocation of unspecified parts of left shoulder girdle, initial encounter
## 32197 Dislocation of unspecified parts of left shoulder girdle, subsequent encounter
## 32198 Dislocation of unspecified parts of left shoulder girdle, sequela
## 32199 Dislocation of unspecified parts of unspecified shoulder girdle, initial encounter
## 32200 Dislocation of unspecified parts of unspecified shoulder girdle, subsequent encounter
## 32201 Dislocation of unspecified parts of unspecified shoulder girdle, sequela
## 32202 Subluxation of right scapula, initial encounter
## 32203 Subluxation of right scapula, subsequent encounter
## 32204 Subluxation of right scapula, sequela
## 32205 Subluxation of left scapula, initial encounter
## 32206 Subluxation of left scapula, subsequent encounter
## 32207 Subluxation of left scapula, sequela
## 32208 Subluxation of unspecified scapula, initial encounter
## 32209 Subluxation of unspecified scapula, subsequent encounter
## 32210 Subluxation of unspecified scapula, sequela
## 32211 Dislocation of right scapula, initial encounter
## 32212 Dislocation of right scapula, subsequent encounter
## 32213 Dislocation of right scapula, sequela
## 32214 Dislocation of left scapula, initial encounter
## 32215 Dislocation of left scapula, subsequent encounter
## 32216 Dislocation of left scapula, sequela
## 32217 Dislocation of unspecified scapula, initial encounter
## 32218 Dislocation of unspecified scapula, subsequent encounter
## 32219 Dislocation of unspecified scapula, sequela
## 32220 Subluxation of other parts of right shoulder girdle, initial encounter
## 32221 Subluxation of other parts of right shoulder girdle, subsequent encounter
## 32222 Subluxation of other parts of right shoulder girdle, sequela
## 32223 Subluxation of other parts of left shoulder girdle, initial encounter
## 32224 Subluxation of other parts of left shoulder girdle, subsequent encounter
## 32225 Subluxation of other parts of left shoulder girdle, sequela
## 32226 Subluxation of other parts of unspecified shoulder girdle, initial encounter
## 32227 Subluxation of other parts of unspecified shoulder girdle, subsequent encounter
## 32228 Subluxation of other parts of unspecified shoulder girdle, sequela
## 32229 Dislocation of other parts of right shoulder girdle, initial encounter
## 32230 Dislocation of other parts of right shoulder girdle, subsequent encounter
## 32231 Dislocation of other parts of right shoulder girdle, sequela
## 32232 Dislocation of other parts of left shoulder girdle, initial encounter
## 32233 Dislocation of other parts of left shoulder girdle, subsequent encounter
## 32234 Dislocation of other parts of left shoulder girdle, sequela
## 32235 Dislocation of other parts of unspecified shoulder girdle, initial encounter
## 32236 Dislocation of other parts of unspecified shoulder girdle, subsequent encounter
## 32237 Dislocation of other parts of unspecified shoulder girdle, sequela
## 32238 Unspecified sprain of right shoulder joint, initial encounter
## 32239 Unspecified sprain of right shoulder joint, subsequent encounter
## 32240 Unspecified sprain of right shoulder joint, sequela
## 32241 Unspecified sprain of left shoulder joint, initial encounter
## 32242 Unspecified sprain of left shoulder joint, subsequent encounter
## 32243 Unspecified sprain of left shoulder joint, sequela
## 32244 Unspecified sprain of unspecified shoulder joint, initial encounter
## 32245 Unspecified sprain of unspecified shoulder joint, subsequent encounter
## 32246 Unspecified sprain of unspecified shoulder joint, sequela
## 32247 Sprain of right coracohumeral (ligament), initial encounter
## 32248 Sprain of right coracohumeral (ligament), subsequent encounter
## 32249 Sprain of right coracohumeral (ligament), sequela
## 32250 Sprain of left coracohumeral (ligament), initial encounter
## 32251 Sprain of left coracohumeral (ligament), subsequent encounter
## 32252 Sprain of left coracohumeral (ligament), sequela
## 32253 Sprain of unspecified coracohumeral (ligament), initial encounter
## 32254 Sprain of unspecified coracohumeral (ligament), subsequent encounter
## 32255 Sprain of unspecified coracohumeral (ligament), sequela
## 32256 Sprain of right rotator cuff capsule, initial encounter
## 32257 Sprain of right rotator cuff capsule, subsequent encounter
## 32258 Sprain of right rotator cuff capsule, sequela
## 32259 Sprain of left rotator cuff capsule, initial encounter
## 32260 Sprain of left rotator cuff capsule, subsequent encounter
## 32261 Sprain of left rotator cuff capsule, sequela
## 32262 Sprain of unspecified rotator cuff capsule, initial encounter
## 32263 Sprain of unspecified rotator cuff capsule, subsequent encounter
## 32264 Sprain of unspecified rotator cuff capsule, sequela
## 32265 Superior glenoid labrum lesion of right shoulder, initial encounter
## 32266 Superior glenoid labrum lesion of right shoulder, subsequent encounter
## 32267 Superior glenoid labrum lesion of right shoulder, sequela
## 32268 Superior glenoid labrum lesion of left shoulder, initial encounter
## 32269 Superior glenoid labrum lesion of left shoulder, subsequent encounter
## 32270 Superior glenoid labrum lesion of left shoulder, sequela
## 32271 Superior glenoid labrum lesion of unspecified shoulder, initial encounter
## 32272 Superior glenoid labrum lesion of unspecified shoulder, subsequent encounter
## 32273 Superior glenoid labrum lesion of unspecified shoulder, sequela
## 32274 Other sprain of right shoulder joint, initial encounter
## 32275 Other sprain of right shoulder joint, subsequent encounter
## 32276 Other sprain of right shoulder joint, sequela
## 32277 Other sprain of left shoulder joint, initial encounter
## 32278 Other sprain of left shoulder joint, subsequent encounter
## 32279 Other sprain of left shoulder joint, sequela
## 32280 Other sprain of unspecified shoulder joint, initial encounter
## 32281 Other sprain of unspecified shoulder joint, subsequent encounter
## 32282 Other sprain of unspecified shoulder joint, sequela
## 32283 Sprain of unspecified acromioclavicular joint, initial encounter
## 32284 Sprain of unspecified acromioclavicular joint, subsequent encounter
## 32285 Sprain of unspecified acromioclavicular joint, sequela
## 32286 Sprain of right acromioclavicular joint, initial encounter
## 32287 Sprain of right acromioclavicular joint, subsequent encounter
## 32288 Sprain of right acromioclavicular joint, sequela
## 32289 Sprain of left acromioclavicular joint, initial encounter
## 32290 Sprain of left acromioclavicular joint, subsequent encounter
## 32291 Sprain of left acromioclavicular joint, sequela
## 32292 Sprain of unspecified sternoclavicular joint, initial encounter
## 32293 Sprain of unspecified sternoclavicular joint, subsequent encounter
## 32294 Sprain of unspecified sternoclavicular joint, sequela
## 32295 Sprain of right sternoclavicular joint, initial encounter
## 32296 Sprain of right sternoclavicular joint, subsequent encounter
## 32297 Sprain of right sternoclavicular joint, sequela
## 32298 Sprain of left sternoclavicular joint, initial encounter
## 32299 Sprain of left sternoclavicular joint, subsequent encounter
## 32300 Sprain of left sternoclavicular joint, sequela
## 32301 Sprain of other specified parts of unspecified shoulder girdle, initial encounter
## 32302 Sprain of other specified parts of unspecified shoulder girdle, subsequent encounter
## 32303 Sprain of other specified parts of unspecified shoulder girdle, sequela
## 32304 Sprain of other specified parts of right shoulder girdle, initial encounter
## 32305 Sprain of other specified parts of right shoulder girdle, subsequent encounter
## 32306 Sprain of other specified parts of right shoulder girdle, sequela
## 32307 Sprain of other specified parts of left shoulder girdle, initial encounter
## 32308 Sprain of other specified parts of left shoulder girdle, subsequent encounter
## 32309 Sprain of other specified parts of left shoulder girdle, sequela
## 32310 Sprain of unspecified parts of unspecified shoulder girdle, initial encounter
## 32311 Sprain of unspecified parts of unspecified shoulder girdle, subsequent encounter
## 32312 Sprain of unspecified parts of unspecified shoulder girdle, sequela
## 32313 Sprain of unspecified parts of right shoulder girdle, initial encounter
## 32314 Sprain of unspecified parts of right shoulder girdle, subsequent encounter
## 32315 Sprain of unspecified parts of right shoulder girdle, sequela
## 32316 Sprain of unspecified parts of left shoulder girdle, initial encounter
## 32317 Sprain of unspecified parts of left shoulder girdle, subsequent encounter
## 32318 Sprain of unspecified parts of left shoulder girdle, sequela
## 32319 Injury of ulnar nerve at upper arm level, unspecified arm, initial encounter
## 32320 Injury of ulnar nerve at upper arm level, unspecified arm, subsequent encounter
## 32321 Injury of ulnar nerve at upper arm level, unspecified arm, sequela
## 32322 Injury of ulnar nerve at upper arm level, right arm, initial encounter
## 32323 Injury of ulnar nerve at upper arm level, right arm, subsequent encounter
## 32324 Injury of ulnar nerve at upper arm level, right arm, sequela
## 32325 Injury of ulnar nerve at upper arm level, left arm, initial encounter
## 32326 Injury of ulnar nerve at upper arm level, left arm, subsequent encounter
## 32327 Injury of ulnar nerve at upper arm level, left arm, sequela
## 32328 Injury of median nerve at upper arm level, unspecified arm, initial encounter
## 32329 Injury of median nerve at upper arm level, unspecified arm, subsequent encounter
## 32330 Injury of median nerve at upper arm level, unspecified arm, sequela
## 32331 Injury of median nerve at upper arm level, right arm, initial encounter
## 32332 Injury of median nerve at upper arm level, right arm, subsequent encounter
## 32333 Injury of median nerve at upper arm level, right arm, sequela
## 32334 Injury of median nerve at upper arm level, left arm, initial encounter
## 32335 Injury of median nerve at upper arm level, left arm, subsequent encounter
## 32336 Injury of median nerve at upper arm level, left arm, sequela
## 32337 Injury of radial nerve at upper arm level, unspecified arm, initial encounter
## 32338 Injury of radial nerve at upper arm level, unspecified arm, subsequent encounter
## 32339 Injury of radial nerve at upper arm level, unspecified arm, sequela
## 32340 Injury of radial nerve at upper arm level, right arm, initial encounter
## 32341 Injury of radial nerve at upper arm level, right arm, subsequent encounter
## 32342 Injury of radial nerve at upper arm level, right arm, sequela
## 32343 Injury of radial nerve at upper arm level, left arm, initial encounter
## 32344 Injury of radial nerve at upper arm level, left arm, subsequent encounter
## 32345 Injury of radial nerve at upper arm level, left arm, sequela
## 32346 Injury of axillary nerve, unspecified arm, initial encounter
## 32347 Injury of axillary nerve, unspecified arm, subsequent encounter
## 32348 Injury of axillary nerve, unspecified arm, sequela
## 32349 Injury of axillary nerve, right arm, initial encounter
## 32350 Injury of axillary nerve, right arm, subsequent encounter
## 32351 Injury of axillary nerve, right arm, sequela
## 32352 Injury of axillary nerve, left arm, initial encounter
## 32353 Injury of axillary nerve, left arm, subsequent encounter
## 32354 Injury of axillary nerve, left arm, sequela
## 32355 Injury of musculocutaneous nerve, unspecified arm, initial encounter
## 32356 Injury of musculocutaneous nerve, unspecified arm, subsequent encounter
## 32357 Injury of musculocutaneous nerve, unspecified arm, sequela
## 32358 Injury of musculocutaneous nerve, right arm, initial encounter
## 32359 Injury of musculocutaneous nerve, right arm, subsequent encounter
## 32360 Injury of musculocutaneous nerve, right arm, sequela
## 32361 Injury of musculocutaneous nerve, left arm, initial encounter
## 32362 Injury of musculocutaneous nerve, left arm, subsequent encounter
## 32363 Injury of musculocutaneous nerve, left arm, sequela
## 32364 Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, initial encounter
## 32365 Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32366 Injury of cutaneous sensory nerve at shoulder and upper arm level, unspecified arm, sequela
## 32367 Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, initial encounter
## 32368 Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, subsequent encounter
## 32369 Injury of cutaneous sensory nerve at shoulder and upper arm level, right arm, sequela
## 32370 Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, initial encounter
## 32371 Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, subsequent encounter
## 32372 Injury of cutaneous sensory nerve at shoulder and upper arm level, left arm, sequela
## 32373 Injury of other nerves at shoulder and upper arm level, right arm, initial encounter
## 32374 Injury of other nerves at shoulder and upper arm level, right arm, subsequent encounter
## 32375 Injury of other nerves at shoulder and upper arm level, right arm, sequela
## 32376 Injury of other nerves at shoulder and upper arm level, left arm, initial encounter
## 32377 Injury of other nerves at shoulder and upper arm level, left arm, subsequent encounter
## 32378 Injury of other nerves at shoulder and upper arm level, left arm, sequela
## 32379 Injury of other nerves at shoulder and upper arm level, unspecified arm, initial encounter
## 32380 Injury of other nerves at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32381 Injury of other nerves at shoulder and upper arm level, unspecified arm, sequela
## 32382 Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, initial encounter
## 32383 Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32384 Injury of unspecified nerve at shoulder and upper arm level, unspecified arm, sequela
## 32385 Injury of unspecified nerve at shoulder and upper arm level, right arm, initial encounter
## 32386 Injury of unspecified nerve at shoulder and upper arm level, right arm, subsequent encounter
## 32387 Injury of unspecified nerve at shoulder and upper arm level, right arm, sequela
## 32388 Injury of unspecified nerve at shoulder and upper arm level, left arm, initial encounter
## 32389 Injury of unspecified nerve at shoulder and upper arm level, left arm, subsequent encounter
## 32390 Injury of unspecified nerve at shoulder and upper arm level, left arm, sequela
## 32391 Unspecified injury of axillary artery, right side, initial encounter
## 32392 Unspecified injury of axillary artery, right side, subsequent encounter
## 32393 Unspecified injury of axillary artery, right side, sequela
## 32394 Unspecified injury of axillary artery, left side, initial encounter
## 32395 Unspecified injury of axillary artery, left side, subsequent encounter
## 32396 Unspecified injury of axillary artery, left side, sequela
## 32397 Unspecified injury of axillary artery, unspecified side, initial encounter
## 32398 Unspecified injury of axillary artery, unspecified side, subsequent encounter
## 32399 Unspecified injury of axillary artery, unspecified side, sequela
## 32400 Laceration of axillary artery, right side, initial encounter
## 32401 Laceration of axillary artery, right side, subsequent encounter
## 32402 Laceration of axillary artery, right side, sequela
## 32403 Laceration of axillary artery, left side, initial encounter
## 32404 Laceration of axillary artery, left side, subsequent encounter
## 32405 Laceration of axillary artery, left side, sequela
## 32406 Laceration of axillary artery, unspecified side, initial encounter
## 32407 Laceration of axillary artery, unspecified side, subsequent encounter
## 32408 Laceration of axillary artery, unspecified side, sequela
## 32409 Other specified injury of axillary artery, right side, initial encounter
## 32410 Other specified injury of axillary artery, right side, subsequent encounter
## 32411 Other specified injury of axillary artery, right side, sequela
## 32412 Other specified injury of axillary artery, left side, initial encounter
## 32413 Other specified injury of axillary artery, left side, subsequent encounter
## 32414 Other specified injury of axillary artery, left side, sequela
## 32415 Other specified injury of axillary artery, unspecified side, initial encounter
## 32416 Other specified injury of axillary artery, unspecified side, subsequent encounter
## 32417 Other specified injury of axillary artery, unspecified side, sequela
## 32418 Unspecified injury of brachial artery, right side, initial encounter
## 32419 Unspecified injury of brachial artery, right side, subsequent encounter
## 32420 Unspecified injury of brachial artery, right side, sequela
## 32421 Unspecified injury of brachial artery, left side, initial encounter
## 32422 Unspecified injury of brachial artery, left side, subsequent encounter
## 32423 Unspecified injury of brachial artery, left side, sequela
## 32424 Unspecified injury of brachial artery, unspecified side, initial encounter
## 32425 Unspecified injury of brachial artery, unspecified side, subsequent encounter
## 32426 Unspecified injury of brachial artery, unspecified side, sequela
## 32427 Laceration of brachial artery, right side, initial encounter
## 32428 Laceration of brachial artery, right side, subsequent encounter
## 32429 Laceration of brachial artery, right side, sequela
## 32430 Laceration of brachial artery, left side, initial encounter
## 32431 Laceration of brachial artery, left side, subsequent encounter
## 32432 Laceration of brachial artery, left side, sequela
## 32433 Laceration of brachial artery, unspecified side, initial encounter
## 32434 Laceration of brachial artery, unspecified side, subsequent encounter
## 32435 Laceration of brachial artery, unspecified side, sequela
## 32436 Other specified injury of brachial artery, right side, initial encounter
## 32437 Other specified injury of brachial artery, right side, subsequent encounter
## 32438 Other specified injury of brachial artery, right side, sequela
## 32439 Other specified injury of brachial artery, left side, initial encounter
## 32440 Other specified injury of brachial artery, left side, subsequent encounter
## 32441 Other specified injury of brachial artery, left side, sequela
## 32442 Other specified injury of brachial artery, unspecified side, initial encounter
## 32443 Other specified injury of brachial artery, unspecified side, subsequent encounter
## 32444 Other specified injury of brachial artery, unspecified side, sequela
## 32445 Unspecified injury of axillary or brachial vein, right side, initial encounter
## 32446 Unspecified injury of axillary or brachial vein, right side, subsequent encounter
## 32447 Unspecified injury of axillary or brachial vein, right side, sequela
## 32448 Unspecified injury of axillary or brachial vein, left side, initial encounter
## 32449 Unspecified injury of axillary or brachial vein, left side, subsequent encounter
## 32450 Unspecified injury of axillary or brachial vein, left side, sequela
## 32451 Unspecified injury of axillary or brachial vein, unspecified side, initial encounter
## 32452 Unspecified injury of axillary or brachial vein, unspecified side, subsequent encounter
## 32453 Unspecified injury of axillary or brachial vein, unspecified side, sequela
## 32454 Laceration of axillary or brachial vein, right side, initial encounter
## 32455 Laceration of axillary or brachial vein, right side, subsequent encounter
## 32456 Laceration of axillary or brachial vein, right side, sequela
## 32457 Laceration of axillary or brachial vein, left side, initial encounter
## 32458 Laceration of axillary or brachial vein, left side, subsequent encounter
## 32459 Laceration of axillary or brachial vein, left side, sequela
## 32460 Laceration of axillary or brachial vein, unspecified side, initial encounter
## 32461 Laceration of axillary or brachial vein, unspecified side, subsequent encounter
## 32462 Laceration of axillary or brachial vein, unspecified side, sequela
## 32463 Other specified injury of axillary or brachial vein, right side, initial encounter
## 32464 Other specified injury of axillary or brachial vein, right side, subsequent encounter
## 32465 Other specified injury of axillary or brachial vein, right side, sequela
## 32466 Other specified injury of axillary or brachial vein, left side, initial encounter
## 32467 Other specified injury of axillary or brachial vein, left side, subsequent encounter
## 32468 Other specified injury of axillary or brachial vein, left side, sequela
## 32469 Other specified injury of axillary or brachial vein, unspecified side, initial encounter
## 32470 Other specified injury of axillary or brachial vein, unspecified side, subsequent encounter
## 32471 Other specified injury of axillary or brachial vein, unspecified side, sequela
## 32472 Unspecified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter
## 32473 Unspecified injury of superficial vein at shoulder and upper arm level, right arm, subsequent encounter
## 32474 Unspecified injury of superficial vein at shoulder and upper arm level, right arm, sequela
## 32475 Unspecified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter
## 32476 Unspecified injury of superficial vein at shoulder and upper arm level, left arm, subsequent encounter
## 32477 Unspecified injury of superficial vein at shoulder and upper arm level, left arm, sequela
## 32478 Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter
## 32479 Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32480 Unspecified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela
## 32481 Laceration of superficial vein at shoulder and upper arm level, right arm, initial encounter
## 32482 Laceration of superficial vein at shoulder and upper arm level, right arm, subsequent encounter
## 32483 Laceration of superficial vein at shoulder and upper arm level, right arm, sequela
## 32484 Laceration of superficial vein at shoulder and upper arm level, left arm, initial encounter
## 32485 Laceration of superficial vein at shoulder and upper arm level, left arm, subsequent encounter
## 32486 Laceration of superficial vein at shoulder and upper arm level, left arm, sequela
## 32487 Laceration of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter
## 32488 Laceration of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32489 Laceration of superficial vein at shoulder and upper arm level, unspecified arm, sequela
## 32490 Other specified injury of superficial vein at shoulder and upper arm level, right arm, initial encounter
## 32491 Other specified injury of superficial vein at shoulder and upper arm level, right arm, subsequent encounter
## 32492 Other specified injury of superficial vein at shoulder and upper arm level, right arm, sequela
## 32493 Other specified injury of superficial vein at shoulder and upper arm level, left arm, initial encounter
## 32494 Other specified injury of superficial vein at shoulder and upper arm level, left arm, subsequent encounter
## 32495 Other specified injury of superficial vein at shoulder and upper arm level, left arm, sequela
## 32496 Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, initial encounter
## 32497 Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32498 Other specified injury of superficial vein at shoulder and upper arm level, unspecified arm, sequela
## 32499 Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter
## 32500 Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter
## 32501 Unspecified injury of other specified blood vessels at shoulder and upper arm level, right arm, sequela
## 32502 Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter
## 32503 Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter
## 32504 Unspecified injury of other specified blood vessels at shoulder and upper arm level, left arm, sequela
## 32505 Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter
## 32506 Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32507 Unspecified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela
## 32508 Laceration of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter
## 32509 Laceration of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter
## 32510 Laceration of other specified blood vessels at shoulder and upper arm level, right arm, sequela
## 32511 Laceration of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter
## 32512 Laceration of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter
## 32513 Laceration of other specified blood vessels at shoulder and upper arm level, left arm, sequela
## 32514 Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter
## 32515 Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32516 Laceration of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela
## 32517 Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, initial encounter
## 32518 Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, subsequent encounter
## 32519 Other specified injury of other specified blood vessels at shoulder and upper arm level, right arm, sequela
## 32520 Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, initial encounter
## 32521 Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, subsequent encounter
## 32522 Other specified injury of other specified blood vessels at shoulder and upper arm level, left arm, sequela
## 32523 Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, initial encounter
## 32524 Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32525 Other specified injury of other specified blood vessels at shoulder and upper arm level, unspecified arm, sequela
## 32526 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter
## 32527 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter
## 32528 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela
## 32529 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter
## 32530 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter
## 32531 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela
## 32532 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter
## 32533 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32534 Unspecified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela
## 32535 Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter
## 32536 Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter
## 32537 Laceration of unspecified blood vessel at shoulder and upper arm level, right arm, sequela
## 32538 Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter
## 32539 Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter
## 32540 Laceration of unspecified blood vessel at shoulder and upper arm level, left arm, sequela
## 32541 Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter
## 32542 Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32543 Laceration of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela
## 32544 Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, initial encounter
## 32545 Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, subsequent encounter
## 32546 Other specified injury of unspecified blood vessel at shoulder and upper arm level, right arm, sequela
## 32547 Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, initial encounter
## 32548 Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, subsequent encounter
## 32549 Other specified injury of unspecified blood vessel at shoulder and upper arm level, left arm, sequela
## 32550 Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, initial encounter
## 32551 Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32552 Other specified injury of unspecified blood vessel at shoulder and upper arm level, unspecified arm, sequela
## 32553 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter
## 32554 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter
## 32555 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela
## 32556 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter
## 32557 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter
## 32558 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela
## 32559 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter
## 32560 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter
## 32561 Unspecified injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela
## 32562 Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter
## 32563 Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter
## 32564 Strain of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela
## 32565 Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter
## 32566 Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter
## 32567 Strain of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela
## 32568 Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter
## 32569 Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter
## 32570 Strain of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela
## 32571 Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter
## 32572 Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter
## 32573 Laceration of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela
## 32574 Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter
## 32575 Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter
## 32576 Laceration of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela
## 32577 Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter
## 32578 Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter
## 32579 Laceration of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela
## 32580 Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, initial encounter
## 32581 Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, subsequent encounter
## 32582 Other injury of muscle(s) and tendon(s) of the rotator cuff of right shoulder, sequela
## 32583 Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, initial encounter
## 32584 Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, subsequent encounter
## 32585 Other injury of muscle(s) and tendon(s) of the rotator cuff of left shoulder, sequela
## 32586 Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, initial encounter
## 32587 Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, subsequent encounter
## 32588 Other injury of muscle(s) and tendon(s) of the rotator cuff of unspecified shoulder, sequela
## 32589 Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter
## 32590 Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter
## 32591 Unspecified injury of muscle, fascia and tendon of long head of biceps, right arm, sequela
## 32592 Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter
## 32593 Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter
## 32594 Unspecified injury of muscle, fascia and tendon of long head of biceps, left arm, sequela
## 32595 Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter
## 32596 Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter
## 32597 Unspecified injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela
## 32598 Strain of muscle, fascia and tendon of long head of biceps, right arm, initial encounter
## 32599 Strain of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter
## 32600 Strain of muscle, fascia and tendon of long head of biceps, right arm, sequela
## 32601 Strain of muscle, fascia and tendon of long head of biceps, left arm, initial encounter
## 32602 Strain of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter
## 32603 Strain of muscle, fascia and tendon of long head of biceps, left arm, sequela
## 32604 Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter
## 32605 Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter
## 32606 Strain of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela
## 32607 Laceration of muscle, fascia and tendon of long head of biceps, right arm, initial encounter
## 32608 Laceration of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter
## 32609 Laceration of muscle, fascia and tendon of long head of biceps, right arm, sequela
## 32610 Laceration of muscle, fascia and tendon of long head of biceps, left arm, initial encounter
## 32611 Laceration of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter
## 32612 Laceration of muscle, fascia and tendon of long head of biceps, left arm, sequela
## 32613 Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter
## 32614 Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter
## 32615 Laceration of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela
## 32616 Other injury of muscle, fascia and tendon of long head of biceps, right arm, initial encounter
## 32617 Other injury of muscle, fascia and tendon of long head of biceps, right arm, subsequent encounter
## 32618 Other injury of muscle, fascia and tendon of long head of biceps, right arm, sequela
## 32619 Other injury of muscle, fascia and tendon of long head of biceps, left arm, initial encounter
## 32620 Other injury of muscle, fascia and tendon of long head of biceps, left arm, subsequent encounter
## 32621 Other injury of muscle, fascia and tendon of long head of biceps, left arm, sequela
## 32622 Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, initial encounter
## 32623 Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, subsequent encounter
## 32624 Other injury of muscle, fascia and tendon of long head of biceps, unspecified arm, sequela
## 32625 Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter
## 32626 Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter
## 32627 Unspecified injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela
## 32628 Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter
## 32629 Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter
## 32630 Unspecified injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela
## 32631 Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter
## 32632 Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter
## 32633 Unspecified injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela
## 32634 Strain of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter
## 32635 Strain of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter
## 32636 Strain of muscle, fascia and tendon of other parts of biceps, right arm, sequela
## 32637 Strain of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter
## 32638 Strain of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter
## 32639 Strain of muscle, fascia and tendon of other parts of biceps, left arm, sequela
## 32640 Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter
## 32641 Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter
## 32642 Strain of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela
## 32643 Laceration of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter
## 32644 Laceration of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter
## 32645 Laceration of muscle, fascia and tendon of other parts of biceps, right arm, sequela
## 32646 Laceration of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter
## 32647 Laceration of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter
## 32648 Laceration of muscle, fascia and tendon of other parts of biceps, left arm, sequela
## 32649 Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter
## 32650 Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter
## 32651 Laceration of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela
## 32652 Other injury of muscle, fascia and tendon of other parts of biceps, right arm, initial encounter
## 32653 Other injury of muscle, fascia and tendon of other parts of biceps, right arm, subsequent encounter
## 32654 Other injury of muscle, fascia and tendon of other parts of biceps, right arm, sequela
## 32655 Other injury of muscle, fascia and tendon of other parts of biceps, left arm, initial encounter
## 32656 Other injury of muscle, fascia and tendon of other parts of biceps, left arm, subsequent encounter
## 32657 Other injury of muscle, fascia and tendon of other parts of biceps, left arm, sequela
## 32658 Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, initial encounter
## 32659 Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, subsequent encounter
## 32660 Other injury of muscle, fascia and tendon of other parts of biceps, unspecified arm, sequela
## 32661 Unspecified injury of muscle, fascia and tendon of triceps, right arm, initial encounter
## 32662 Unspecified injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter
## 32663 Unspecified injury of muscle, fascia and tendon of triceps, right arm, sequela
## 32664 Unspecified injury of muscle, fascia and tendon of triceps, left arm, initial encounter
## 32665 Unspecified injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter
## 32666 Unspecified injury of muscle, fascia and tendon of triceps, left arm, sequela
## 32667 Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter
## 32668 Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter
## 32669 Unspecified injury of muscle, fascia and tendon of triceps, unspecified arm, sequela
## 32670 Strain of muscle, fascia and tendon of triceps, right arm, initial encounter
## 32671 Strain of muscle, fascia and tendon of triceps, right arm, subsequent encounter
## 32672 Strain of muscle, fascia and tendon of triceps, right arm, sequela
## 32673 Strain of muscle, fascia and tendon of triceps, left arm, initial encounter
## 32674 Strain of muscle, fascia and tendon of triceps, left arm, subsequent encounter
## 32675 Strain of muscle, fascia and tendon of triceps, left arm, sequela
## 32676 Strain of muscle, fascia and tendon of triceps, unspecified arm, initial encounter
## 32677 Strain of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter
## 32678 Strain of muscle, fascia and tendon of triceps, unspecified arm, sequela
## 32679 Laceration of muscle, fascia and tendon of triceps, right arm, initial encounter
## 32680 Laceration of muscle, fascia and tendon of triceps, right arm, subsequent encounter
## 32681 Laceration of muscle, fascia and tendon of triceps, right arm, sequela
## 32682 Laceration of muscle, fascia and tendon of triceps, left arm, initial encounter
## 32683 Laceration of muscle, fascia and tendon of triceps, left arm, subsequent encounter
## 32684 Laceration of muscle, fascia and tendon of triceps, left arm, sequela
## 32685 Laceration of muscle, fascia and tendon of triceps, unspecified arm, initial encounter
## 32686 Laceration of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter
## 32687 Laceration of muscle, fascia and tendon of triceps, unspecified arm, sequela
## 32688 Other injury of muscle, fascia and tendon of triceps, right arm, initial encounter
## 32689 Other injury of muscle, fascia and tendon of triceps, right arm, subsequent encounter
## 32690 Other injury of muscle, fascia and tendon of triceps, right arm, sequela
## 32691 Other injury of muscle, fascia and tendon of triceps, left arm, initial encounter
## 32692 Other injury of muscle, fascia and tendon of triceps, left arm, subsequent encounter
## 32693 Other injury of muscle, fascia and tendon of triceps, left arm, sequela
## 32694 Other injury of muscle, fascia and tendon of triceps, unspecified arm, initial encounter
## 32695 Other injury of muscle, fascia and tendon of triceps, unspecified arm, subsequent encounter
## 32696 Other injury of muscle, fascia and tendon of triceps, unspecified arm, sequela
## 32697 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter
## 32698 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter
## 32699 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela
## 32700 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter
## 32701 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter
## 32702 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela
## 32703 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter
## 32704 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32705 Unspecified injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela
## 32706 Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter
## 32707 Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter
## 32708 Strain of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela
## 32709 Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter
## 32710 Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter
## 32711 Strain of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela
## 32712 Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter
## 32713 Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32714 Strain of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela
## 32715 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter
## 32716 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter
## 32717 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela
## 32718 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter
## 32719 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter
## 32720 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela
## 32721 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter
## 32722 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32723 Laceration of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela
## 32724 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, initial encounter
## 32725 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, subsequent encounter
## 32726 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, right arm, sequela
## 32727 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, initial encounter
## 32728 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, subsequent encounter
## 32729 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, left arm, sequela
## 32730 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, initial encounter
## 32731 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32732 Other injury of other muscles, fascia and tendons at shoulder and upper arm level, unspecified arm, sequela
## 32733 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter
## 32734 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter
## 32735 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela
## 32736 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter
## 32737 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter
## 32738 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela
## 32739 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter
## 32740 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32741 Unspecified injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela
## 32742 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter
## 32743 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter
## 32744 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela
## 32745 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter
## 32746 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter
## 32747 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela
## 32748 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter
## 32749 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32750 Strain of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela
## 32751 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter
## 32752 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter
## 32753 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela
## 32754 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter
## 32755 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter
## 32756 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela
## 32757 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter
## 32758 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32759 Laceration of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela
## 32760 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, initial encounter
## 32761 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, subsequent encounter
## 32762 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, right arm, sequela
## 32763 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, initial encounter
## 32764 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, subsequent encounter
## 32765 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, left arm, sequela
## 32766 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, initial encounter
## 32767 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, subsequent encounter
## 32768 Other injury of unspecified muscle, fascia and tendon at shoulder and upper arm level, unspecified arm, sequela
## 32769 Crushing injury of right shoulder and upper arm, initial encounter
## 32770 Crushing injury of right shoulder and upper arm, subsequent encounter
## 32771 Crushing injury of right shoulder and upper arm, sequela
## 32772 Crushing injury of left shoulder and upper arm, initial encounter
## 32773 Crushing injury of left shoulder and upper arm, subsequent encounter
## 32774 Crushing injury of left shoulder and upper arm, sequela
## 32775 Crushing injury of shoulder and upper arm, unspecified arm, initial encounter
## 32776 Crushing injury of shoulder and upper arm, unspecified arm, subsequent encounter
## 32777 Crushing injury of shoulder and upper arm, unspecified arm, sequela
## 32778 Complete traumatic amputation at right shoulder joint, initial encounter
## 32779 Complete traumatic amputation at right shoulder joint, subsequent encounter
## 32780 Complete traumatic amputation at right shoulder joint, sequela
## 32781 Complete traumatic amputation at left shoulder joint, initial encounter
## 32782 Complete traumatic amputation at left shoulder joint, subsequent encounter
## 32783 Complete traumatic amputation at left shoulder joint, sequela
## 32784 Complete traumatic amputation at unspecified shoulder joint, initial encounter
## 32785 Complete traumatic amputation at unspecified shoulder joint, subsequent encounter
## 32786 Complete traumatic amputation at unspecified shoulder joint, sequela
## 32787 Partial traumatic amputation at right shoulder joint, initial encounter
## 32788 Partial traumatic amputation at right shoulder joint, subsequent encounter
## 32789 Partial traumatic amputation at right shoulder joint, sequela
## 32790 Partial traumatic amputation at left shoulder joint, initial encounter
## 32791 Partial traumatic amputation at left shoulder joint, subsequent encounter
## 32792 Partial traumatic amputation at left shoulder joint, sequela
## 32793 Partial traumatic amputation at unspecified shoulder joint, initial encounter
## 32794 Partial traumatic amputation at unspecified shoulder joint, subsequent encounter
## 32795 Partial traumatic amputation at unspecified shoulder joint, sequela
## 32796 Complete traumatic amputation at level between right shoulder and elbow, initial encounter
## 32797 Complete traumatic amputation at level between right shoulder and elbow, subsequent encounter
## 32798 Complete traumatic amputation at level between right shoulder and elbow, sequela
## 32799 Complete traumatic amputation at level between left shoulder and elbow, initial encounter
## 32800 Complete traumatic amputation at level between left shoulder and elbow, subsequent encounter
## 32801 Complete traumatic amputation at level between left shoulder and elbow, sequela
## 32802 Complete traumatic amputation at level between unspecified shoulder and elbow, initial encounter
## 32803 Complete traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter
## 32804 Complete traumatic amputation at level between unspecified shoulder and elbow, sequela
## 32805 Partial traumatic amputation at level between right shoulder and elbow, initial encounter
## 32806 Partial traumatic amputation at level between right shoulder and elbow, subsequent encounter
## 32807 Partial traumatic amputation at level between right shoulder and elbow, sequela
## 32808 Partial traumatic amputation at level between left shoulder and elbow, initial encounter
## 32809 Partial traumatic amputation at level between left shoulder and elbow, subsequent encounter
## 32810 Partial traumatic amputation at level between left shoulder and elbow, sequela
## 32811 Partial traumatic amputation at level between unspecified shoulder and elbow, initial encounter
## 32812 Partial traumatic amputation at level between unspecified shoulder and elbow, subsequent encounter
## 32813 Partial traumatic amputation at level between unspecified shoulder and elbow, sequela
## 32814 Complete traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter
## 32815 Complete traumatic amputation of right shoulder and upper arm, level unspecified, subsequent encounter
## 32816 Complete traumatic amputation of right shoulder and upper arm, level unspecified, sequela
## 32817 Complete traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter
## 32818 Complete traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter
## 32819 Complete traumatic amputation of left shoulder and upper arm, level unspecified, sequela
## 32820 Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, initial encounter
## 32821 Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, subsequent encounter
## 32822 Complete traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela
## 32823 Partial traumatic amputation of right shoulder and upper arm, level unspecified, initial encounter
## 32824 Partial traumatic amputation of right shoulder and upper arm, level unspecified, subsequent encounter
## 32825 Partial traumatic amputation of right shoulder and upper arm, level unspecified, sequela
## 32826 Partial traumatic amputation of left shoulder and upper arm, level unspecified, initial encounter
## 32827 Partial traumatic amputation of left shoulder and upper arm, level unspecified, subsequent encounter
## 32828 Partial traumatic amputation of left shoulder and upper arm, level unspecified, sequela
## 32829 Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, initial encounter
## 32830 Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, subsequent encounter
## 32831 Partial traumatic amputation of unspecified shoulder and upper arm, level unspecified, sequela
## 32832 Unspecified physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture
## 32833 Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32834 Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32835 Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32836 Unspecified physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion
## 32837 Unspecified physeal fracture of upper end of humerus, right arm, sequela
## 32838 Unspecified physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture
## 32839 Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32840 Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32841 Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32842 Unspecified physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion
## 32843 Unspecified physeal fracture of upper end of humerus, left arm, sequela
## 32844 Unspecified physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture
## 32845 Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32846 Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32847 Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32848 Unspecified physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32849 Unspecified physeal fracture of upper end of humerus, unspecified arm, sequela
## 32850 Salter-Harris Type I physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture
## 32851 Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32852 Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32853 Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32854 Salter-Harris Type I physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion
## 32855 Salter-Harris Type I physeal fracture of upper end of humerus, right arm, sequela
## 32856 Salter-Harris Type I physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture
## 32857 Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32858 Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32859 Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32860 Salter-Harris Type I physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion
## 32861 Salter-Harris Type I physeal fracture of upper end of humerus, left arm, sequela
## 32862 Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture
## 32863 Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32864 Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32865 Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32866 Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32867 Salter-Harris Type I physeal fracture of upper end of humerus, unspecified arm, sequela
## 32868 Salter-Harris Type II physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture
## 32869 Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32870 Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32871 Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32872 Salter-Harris Type II physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion
## 32873 Salter-Harris Type II physeal fracture of upper end of humerus, right arm, sequela
## 32874 Salter-Harris Type II physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture
## 32875 Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32876 Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32877 Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32878 Salter-Harris Type II physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion
## 32879 Salter-Harris Type II physeal fracture of upper end of humerus, left arm, sequela
## 32880 Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture
## 32881 Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32882 Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32883 Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32884 Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32885 Salter-Harris Type II physeal fracture of upper end of humerus, unspecified arm, sequela
## 32886 Salter-Harris Type III physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture
## 32887 Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32888 Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32889 Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32890 Salter-Harris Type III physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion
## 32891 Salter-Harris Type III physeal fracture of upper end of humerus, right arm, sequela
## 32892 Salter-Harris Type III physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture
## 32893 Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32894 Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32895 Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32896 Salter-Harris Type III physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion
## 32897 Salter-Harris Type III physeal fracture of upper end of humerus, left arm, sequela
## 32898 Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture
## 32899 Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32900 Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32901 Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32902 Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32903 Salter-Harris Type III physeal fracture of upper end of humerus, unspecified arm, sequela
## 32904 Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture
## 32905 Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32906 Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32907 Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32908 Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion
## 32909 Salter-Harris Type IV physeal fracture of upper end of humerus, right arm, sequela
## 32910 Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture
## 32911 Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32912 Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32913 Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32914 Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion
## 32915 Salter-Harris Type IV physeal fracture of upper end of humerus, left arm, sequela
## 32916 Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture
## 32917 Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32918 Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32919 Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32920 Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32921 Salter-Harris Type IV physeal fracture of upper end of humerus, unspecified arm, sequela
## 32922 Other physeal fracture of upper end of humerus, right arm, initial encounter for closed fracture
## 32923 Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32924 Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32925 Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32926 Other physeal fracture of upper end of humerus, right arm, subsequent encounter for fracture with malunion
## 32927 Other physeal fracture of upper end of humerus, right arm, sequela
## 32928 Other physeal fracture of upper end of humerus, left arm, initial encounter for closed fracture
## 32929 Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32930 Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32931 Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32932 Other physeal fracture of upper end of humerus, left arm, subsequent encounter for fracture with malunion
## 32933 Other physeal fracture of upper end of humerus, left arm, sequela
## 32934 Other physeal fracture of upper end of humerus, unspecified arm, initial encounter for closed fracture
## 32935 Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32936 Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32937 Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32938 Other physeal fracture of upper end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32939 Other physeal fracture of upper end of humerus, unspecified arm, sequela
## 32940 Unspecified physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture
## 32941 Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32942 Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32943 Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32944 Unspecified physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion
## 32945 Unspecified physeal fracture of lower end of humerus, right arm, sequela
## 32946 Unspecified physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture
## 32947 Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32948 Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32949 Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32950 Unspecified physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion
## 32951 Unspecified physeal fracture of lower end of humerus, left arm, sequela
## 32952 Unspecified physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture
## 32953 Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32954 Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32955 Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32956 Unspecified physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32957 Unspecified physeal fracture of lower end of humerus, unspecified arm, sequela
## 32958 Salter-Harris Type I physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture
## 32959 Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32960 Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32961 Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32962 Salter-Harris Type I physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion
## 32963 Salter-Harris Type I physeal fracture of lower end of humerus, right arm, sequela
## 32964 Salter-Harris Type I physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture
## 32965 Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32966 Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32967 Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32968 Salter-Harris Type I physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion
## 32969 Salter-Harris Type I physeal fracture of lower end of humerus, left arm, sequela
## 32970 Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture
## 32971 Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32972 Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32973 Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32974 Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32975 Salter-Harris Type I physeal fracture of lower end of humerus, unspecified arm, sequela
## 32976 Salter-Harris Type II physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture
## 32977 Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32978 Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32979 Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32980 Salter-Harris Type II physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion
## 32981 Salter-Harris Type II physeal fracture of lower end of humerus, right arm, sequela
## 32982 Salter-Harris Type II physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture
## 32983 Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing
## 32984 Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 32985 Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion
## 32986 Salter-Harris Type II physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion
## 32987 Salter-Harris Type II physeal fracture of lower end of humerus, left arm, sequela
## 32988 Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture
## 32989 Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 32990 Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 32991 Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 32992 Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 32993 Salter-Harris Type II physeal fracture of lower end of humerus, unspecified arm, sequela
## 32994 Salter-Harris Type III physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture
## 32995 Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing
## 32996 Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 32997 Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion
## 32998 Salter-Harris Type III physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion
## 32999 Salter-Harris Type III physeal fracture of lower end of humerus, right arm, sequela
## 33000 Salter-Harris Type III physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture
## 33001 Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing
## 33002 Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 33003 Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion
## 33004 Salter-Harris Type III physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion
## 33005 Salter-Harris Type III physeal fracture of lower end of humerus, left arm, sequela
## 33006 Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture
## 33007 Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 33008 Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 33009 Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 33010 Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 33011 Salter-Harris Type III physeal fracture of lower end of humerus, unspecified arm, sequela
## 33012 Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture
## 33013 Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing
## 33014 Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 33015 Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion
## 33016 Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion
## 33017 Salter-Harris Type IV physeal fracture of lower end of humerus, right arm, sequela
## 33018 Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture
## 33019 Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing
## 33020 Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 33021 Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion
## 33022 Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion
## 33023 Salter-Harris Type IV physeal fracture of lower end of humerus, left arm, sequela
## 33024 Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture
## 33025 Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 33026 Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 33027 Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 33028 Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 33029 Salter-Harris Type IV physeal fracture of lower end of humerus, unspecified arm, sequela
## 33030 Other physeal fracture of lower end of humerus, right arm, initial encounter for closed fracture
## 33031 Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with routine healing
## 33032 Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with delayed healing
## 33033 Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with nonunion
## 33034 Other physeal fracture of lower end of humerus, right arm, subsequent encounter for fracture with malunion
## 33035 Other physeal fracture of lower end of humerus, right arm, sequela
## 33036 Other physeal fracture of lower end of humerus, left arm, initial encounter for closed fracture
## 33037 Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with routine healing
## 33038 Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with delayed healing
## 33039 Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with nonunion
## 33040 Other physeal fracture of lower end of humerus, left arm, subsequent encounter for fracture with malunion
## 33041 Other physeal fracture of lower end of humerus, left arm, sequela
## 33042 Other physeal fracture of lower end of humerus, unspecified arm, initial encounter for closed fracture
## 33043 Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with routine healing
## 33044 Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with delayed healing
## 33045 Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with nonunion
## 33046 Other physeal fracture of lower end of humerus, unspecified arm, subsequent encounter for fracture with malunion
## 33047 Other physeal fracture of lower end of humerus, unspecified arm, sequela
## 33048 Other specified injuries of shoulder and upper arm, unspecified arm, initial encounter
## 33049 Other specified injuries of shoulder and upper arm, unspecified arm, subsequent encounter
## 33050 Other specified injuries of shoulder and upper arm, unspecified arm, sequela
## 33051 Other specified injuries of right shoulder and upper arm, initial encounter
## 33052 Other specified injuries of right shoulder and upper arm, subsequent encounter
## 33053 Other specified injuries of right shoulder and upper arm, sequela
## 33054 Other specified injuries of left shoulder and upper arm, initial encounter
## 33055 Other specified injuries of left shoulder and upper arm, subsequent encounter
## 33056 Other specified injuries of left shoulder and upper arm, sequela
## 33057 Unspecified injury of shoulder and upper arm, unspecified arm, initial encounter
## 33058 Unspecified injury of shoulder and upper arm, unspecified arm, subsequent encounter
## 33059 Unspecified injury of shoulder and upper arm, unspecified arm, sequela
## 33060 Unspecified injury of right shoulder and upper arm, initial encounter
## 33061 Unspecified injury of right shoulder and upper arm, subsequent encounter
## 33062 Unspecified injury of right shoulder and upper arm, sequela
## 33063 Unspecified injury of left shoulder and upper arm, initial encounter
## 33064 Unspecified injury of left shoulder and upper arm, subsequent encounter
## 33065 Unspecified injury of left shoulder and upper arm, sequela
## 33066 Contusion of unspecified elbow, initial encounter
## 33067 Contusion of unspecified elbow, subsequent encounter
## 33068 Contusion of unspecified elbow, sequela
## 33069 Contusion of right elbow, initial encounter
## 33070 Contusion of right elbow, subsequent encounter
## 33071 Contusion of right elbow, sequela
## 33072 Contusion of left elbow, initial encounter
## 33073 Contusion of left elbow, subsequent encounter
## 33074 Contusion of left elbow, sequela
## 33075 Contusion of unspecified forearm, initial encounter
## 33076 Contusion of unspecified forearm, subsequent encounter
## 33077 Contusion of unspecified forearm, sequela
## 33078 Contusion of right forearm, initial encounter
## 33079 Contusion of right forearm, subsequent encounter
## 33080 Contusion of right forearm, sequela
## 33081 Contusion of left forearm, initial encounter
## 33082 Contusion of left forearm, subsequent encounter
## 33083 Contusion of left forearm, sequela
## 33084 Abrasion of right elbow, initial encounter
## 33085 Abrasion of right elbow, subsequent encounter
## 33086 Abrasion of right elbow, sequela
## 33087 Abrasion of left elbow, initial encounter
## 33088 Abrasion of left elbow, subsequent encounter
## 33089 Abrasion of left elbow, sequela
## 33090 Abrasion of unspecified elbow, initial encounter
## 33091 Abrasion of unspecified elbow, subsequent encounter
## 33092 Abrasion of unspecified elbow, sequela
## 33093 Blister (nonthermal) of right elbow, initial encounter
## 33094 Blister (nonthermal) of right elbow, subsequent encounter
## 33095 Blister (nonthermal) of right elbow, sequela
## 33096 Blister (nonthermal) of left elbow, initial encounter
## 33097 Blister (nonthermal) of left elbow, subsequent encounter
## 33098 Blister (nonthermal) of left elbow, sequela
## 33099 Blister (nonthermal) of unspecified elbow, initial encounter
## 33100 Blister (nonthermal) of unspecified elbow, subsequent encounter
## 33101 Blister (nonthermal) of unspecified elbow, sequela
## 33102 External constriction of right elbow, initial encounter
## 33103 External constriction of right elbow, subsequent encounter
## 33104 External constriction of right elbow, sequela
## 33105 External constriction of left elbow, initial encounter
## 33106 External constriction of left elbow, subsequent encounter
## 33107 External constriction of left elbow, sequela
## 33108 External constriction of unspecified elbow, initial encounter
## 33109 External constriction of unspecified elbow, subsequent encounter
## 33110 External constriction of unspecified elbow, sequela
## 33111 Superficial foreign body of right elbow, initial encounter
## 33112 Superficial foreign body of right elbow, subsequent encounter
## 33113 Superficial foreign body of right elbow, sequela
## 33114 Superficial foreign body of left elbow, initial encounter
## 33115 Superficial foreign body of left elbow, subsequent encounter
## 33116 Superficial foreign body of left elbow, sequela
## 33117 Superficial foreign body of unspecified elbow, initial encounter
## 33118 Superficial foreign body of unspecified elbow, subsequent encounter
## 33119 Superficial foreign body of unspecified elbow, sequela
## 33120 Insect bite (nonvenomous) of right elbow, initial encounter
## 33121 Insect bite (nonvenomous) of right elbow, subsequent encounter
## 33122 Insect bite (nonvenomous) of right elbow, sequela
## 33123 Insect bite (nonvenomous) of left elbow, initial encounter
## 33124 Insect bite (nonvenomous) of left elbow, subsequent encounter
## 33125 Insect bite (nonvenomous) of left elbow, sequela
## 33126 Insect bite (nonvenomous) of unspecified elbow, initial encounter
## 33127 Insect bite (nonvenomous) of unspecified elbow, subsequent encounter
## 33128 Insect bite (nonvenomous) of unspecified elbow, sequela
## 33129 Other superficial bite of right elbow, initial encounter
## 33130 Other superficial bite of right elbow, subsequent encounter
## 33131 Other superficial bite of right elbow, sequela
## 33132 Other superficial bite of left elbow, initial encounter
## 33133 Other superficial bite of left elbow, subsequent encounter
## 33134 Other superficial bite of left elbow, sequela
## 33135 Other superficial bite of unspecified elbow, initial encounter
## 33136 Other superficial bite of unspecified elbow, subsequent encounter
## 33137 Other superficial bite of unspecified elbow, sequela
## 33138 Abrasion of right forearm, initial encounter
## 33139 Abrasion of right forearm, subsequent encounter
## 33140 Abrasion of right forearm, sequela
## 33141 Abrasion of left forearm, initial encounter
## 33142 Abrasion of left forearm, subsequent encounter
## 33143 Abrasion of left forearm, sequela
## 33144 Abrasion of unspecified forearm, initial encounter
## 33145 Abrasion of unspecified forearm, subsequent encounter
## 33146 Abrasion of unspecified forearm, sequela
## 33147 Blister (nonthermal) of right forearm, initial encounter
## 33148 Blister (nonthermal) of right forearm, subsequent encounter
## 33149 Blister (nonthermal) of right forearm, sequela
## 33150 Blister (nonthermal) of left forearm, initial encounter
## 33151 Blister (nonthermal) of left forearm, subsequent encounter
## 33152 Blister (nonthermal) of left forearm, sequela
## 33153 Blister (nonthermal) of unspecified forearm, initial encounter
## 33154 Blister (nonthermal) of unspecified forearm, subsequent encounter
## 33155 Blister (nonthermal) of unspecified forearm, sequela
## 33156 External constriction of right forearm, initial encounter
## 33157 External constriction of right forearm, subsequent encounter
## 33158 External constriction of right forearm, sequela
## 33159 External constriction of left forearm, initial encounter
## 33160 External constriction of left forearm, subsequent encounter
## 33161 External constriction of left forearm, sequela
## 33162 External constriction of unspecified forearm, initial encounter
## 33163 External constriction of unspecified forearm, subsequent encounter
## 33164 External constriction of unspecified forearm, sequela
## 33165 Superficial foreign body of right forearm, initial encounter
## 33166 Superficial foreign body of right forearm, subsequent encounter
## 33167 Superficial foreign body of right forearm, sequela
## 33168 Superficial foreign body of left forearm, initial encounter
## 33169 Superficial foreign body of left forearm, subsequent encounter
## 33170 Superficial foreign body of left forearm, sequela
## 33171 Superficial foreign body of unspecified forearm, initial encounter
## 33172 Superficial foreign body of unspecified forearm, subsequent encounter
## 33173 Superficial foreign body of unspecified forearm, sequela
## 33174 Insect bite (nonvenomous) of right forearm, initial encounter
## 33175 Insect bite (nonvenomous) of right forearm, subsequent encounter
## 33176 Insect bite (nonvenomous) of right forearm, sequela
## 33177 Insect bite (nonvenomous) of left forearm, initial encounter
## 33178 Insect bite (nonvenomous) of left forearm, subsequent encounter
## 33179 Insect bite (nonvenomous) of left forearm, sequela
## 33180 Insect bite (nonvenomous) of unspecified forearm, initial encounter
## 33181 Insect bite (nonvenomous) of unspecified forearm, subsequent encounter
## 33182 Insect bite (nonvenomous) of unspecified forearm, sequela
## 33183 Other superficial bite of right forearm, initial encounter
## 33184 Other superficial bite of right forearm, subsequent encounter
## 33185 Other superficial bite of right forearm, sequela
## 33186 Other superficial bite of left forearm, initial encounter
## 33187 Other superficial bite of left forearm, subsequent encounter
## 33188 Other superficial bite of left forearm, sequela
## 33189 Other superficial bite of unspecified forearm, initial encounter
## 33190 Other superficial bite of unspecified forearm, subsequent encounter
## 33191 Other superficial bite of unspecified forearm, sequela
## 33192 Unspecified superficial injury of right elbow, initial encounter
## 33193 Unspecified superficial injury of right elbow, subsequent encounter
## 33194 Unspecified superficial injury of right elbow, sequela
## 33195 Unspecified superficial injury of left elbow, initial encounter
## 33196 Unspecified superficial injury of left elbow, subsequent encounter
## 33197 Unspecified superficial injury of left elbow, sequela
## 33198 Unspecified superficial injury of unspecified elbow, initial encounter
## 33199 Unspecified superficial injury of unspecified elbow, subsequent encounter
## 33200 Unspecified superficial injury of unspecified elbow, sequela
## 33201 Unspecified superficial injury of right forearm, initial encounter
## 33202 Unspecified superficial injury of right forearm, subsequent encounter
## 33203 Unspecified superficial injury of right forearm, sequela
## 33204 Unspecified superficial injury of left forearm, initial encounter
## 33205 Unspecified superficial injury of left forearm, subsequent encounter
## 33206 Unspecified superficial injury of left forearm, sequela
## 33207 Unspecified superficial injury of unspecified forearm, initial encounter
## 33208 Unspecified superficial injury of unspecified forearm, subsequent encounter
## 33209 Unspecified superficial injury of unspecified forearm, sequela
## 33210 Unspecified open wound of right elbow, initial encounter
## 33211 Unspecified open wound of right elbow, subsequent encounter
## 33212 Unspecified open wound of right elbow, sequela
## 33213 Unspecified open wound of left elbow, initial encounter
## 33214 Unspecified open wound of left elbow, subsequent encounter
## 33215 Unspecified open wound of left elbow, sequela
## 33216 Unspecified open wound of unspecified elbow, initial encounter
## 33217 Unspecified open wound of unspecified elbow, subsequent encounter
## 33218 Unspecified open wound of unspecified elbow, sequela
## 33219 Laceration without foreign body of right elbow, initial encounter
## 33220 Laceration without foreign body of right elbow, subsequent encounter
## 33221 Laceration without foreign body of right elbow, sequela
## 33222 Laceration without foreign body of left elbow, initial encounter
## 33223 Laceration without foreign body of left elbow, subsequent encounter
## 33224 Laceration without foreign body of left elbow, sequela
## 33225 Laceration without foreign body of unspecified elbow, initial encounter
## 33226 Laceration without foreign body of unspecified elbow, subsequent encounter
## 33227 Laceration without foreign body of unspecified elbow, sequela
## 33228 Laceration with foreign body of right elbow, initial encounter
## 33229 Laceration with foreign body of right elbow, subsequent encounter
## 33230 Laceration with foreign body of right elbow, sequela
## 33231 Laceration with foreign body of left elbow, initial encounter
## 33232 Laceration with foreign body of left elbow, subsequent encounter
## 33233 Laceration with foreign body of left elbow, sequela
## 33234 Laceration with foreign body of unspecified elbow, initial encounter
## 33235 Laceration with foreign body of unspecified elbow, subsequent encounter
## 33236 Laceration with foreign body of unspecified elbow, sequela
## 33237 Puncture wound without foreign body of right elbow, initial encounter
## 33238 Puncture wound without foreign body of right elbow, subsequent encounter
## 33239 Puncture wound without foreign body of right elbow, sequela
## 33240 Puncture wound without foreign body of left elbow, initial encounter
## 33241 Puncture wound without foreign body of left elbow, subsequent encounter
## 33242 Puncture wound without foreign body of left elbow, sequela
## 33243 Puncture wound without foreign body of unspecified elbow, initial encounter
## 33244 Puncture wound without foreign body of unspecified elbow, subsequent encounter
## 33245 Puncture wound without foreign body of unspecified elbow, sequela
## 33246 Puncture wound with foreign body of right elbow, initial encounter
## 33247 Puncture wound with foreign body of right elbow, subsequent encounter
## 33248 Puncture wound with foreign body of right elbow, sequela
## 33249 Puncture wound with foreign body of left elbow, initial encounter
## 33250 Puncture wound with foreign body of left elbow, subsequent encounter
## 33251 Puncture wound with foreign body of left elbow, sequela
## 33252 Puncture wound with foreign body of unspecified elbow, initial encounter
## 33253 Puncture wound with foreign body of unspecified elbow, subsequent encounter
## 33254 Puncture wound with foreign body of unspecified elbow, sequela
## 33255 Open bite, right elbow, initial encounter
## 33256 Open bite, right elbow, subsequent encounter
## 33257 Open bite, right elbow, sequela
## 33258 Open bite, left elbow, initial encounter
## 33259 Open bite, left elbow, subsequent encounter
## 33260 Open bite, left elbow, sequela
## 33261 Open bite, unspecified elbow, initial encounter
## 33262 Open bite, unspecified elbow, subsequent encounter
## 33263 Open bite, unspecified elbow, sequela
## 33264 Unspecified open wound of right forearm, initial encounter
## 33265 Unspecified open wound of right forearm, subsequent encounter
## 33266 Unspecified open wound of right forearm, sequela
## 33267 Unspecified open wound of left forearm, initial encounter
## 33268 Unspecified open wound of left forearm, subsequent encounter
## 33269 Unspecified open wound of left forearm, sequela
## 33270 Unspecified open wound of unspecified forearm, initial encounter
## 33271 Unspecified open wound of unspecified forearm, subsequent encounter
## 33272 Unspecified open wound of unspecified forearm, sequela
## 33273 Laceration without foreign body of right forearm, initial encounter
## 33274 Laceration without foreign body of right forearm, subsequent encounter
## 33275 Laceration without foreign body of right forearm, sequela
## 33276 Laceration without foreign body of left forearm, initial encounter
## 33277 Laceration without foreign body of left forearm, subsequent encounter
## 33278 Laceration without foreign body of left forearm, sequela
## 33279 Laceration without foreign body of unspecified forearm, initial encounter
## 33280 Laceration without foreign body of unspecified forearm, subsequent encounter
## 33281 Laceration without foreign body of unspecified forearm, sequela
## 33282 Laceration with foreign body of right forearm, initial encounter
## 33283 Laceration with foreign body of right forearm, subsequent encounter
## 33284 Laceration with foreign body of right forearm, sequela
## 33285 Laceration with foreign body of left forearm, initial encounter
## 33286 Laceration with foreign body of left forearm, subsequent encounter
## 33287 Laceration with foreign body of left forearm, sequela
## 33288 Laceration with foreign body of unspecified forearm, initial encounter
## 33289 Laceration with foreign body of unspecified forearm, subsequent encounter
## 33290 Laceration with foreign body of unspecified forearm, sequela
## 33291 Puncture wound without foreign body of right forearm, initial encounter
## 33292 Puncture wound without foreign body of right forearm, subsequent encounter
## 33293 Puncture wound without foreign body of right forearm, sequela
## 33294 Puncture wound without foreign body of left forearm, initial encounter
## 33295 Puncture wound without foreign body of left forearm, subsequent encounter
## 33296 Puncture wound without foreign body of left forearm, sequela
## 33297 Puncture wound without foreign body of unspecified forearm, initial encounter
## 33298 Puncture wound without foreign body of unspecified forearm, subsequent encounter
## 33299 Puncture wound without foreign body of unspecified forearm, sequela
## 33300 Puncture wound with foreign body of right forearm, initial encounter
## 33301 Puncture wound with foreign body of right forearm, subsequent encounter
## 33302 Puncture wound with foreign body of right forearm, sequela
## 33303 Puncture wound with foreign body of left forearm, initial encounter
## 33304 Puncture wound with foreign body of left forearm, subsequent encounter
## 33305 Puncture wound with foreign body of left forearm, sequela
## 33306 Puncture wound with foreign body of unspecified forearm, initial encounter
## 33307 Puncture wound with foreign body of unspecified forearm, subsequent encounter
## 33308 Puncture wound with foreign body of unspecified forearm, sequela
## 33309 Open bite of right forearm, initial encounter
## 33310 Open bite of right forearm, subsequent encounter
## 33311 Open bite of right forearm, sequela
## 33312 Open bite of left forearm, initial encounter
## 33313 Open bite of left forearm, subsequent encounter
## 33314 Open bite of left forearm, sequela
## 33315 Open bite of unspecified forearm, initial encounter
## 33316 Open bite of unspecified forearm, subsequent encounter
## 33317 Open bite of unspecified forearm, sequela
## 33318 Unspecified fracture of upper end of right ulna, initial encounter for closed fracture
## 33319 Unspecified fracture of upper end of right ulna, initial encounter for open fracture type I or II
## 33320 Unspecified fracture of upper end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33321 Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with routine healing
## 33322 Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 33323 Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33324 Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with delayed healing
## 33325 Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33326 Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33327 Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion
## 33328 Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 33329 Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33330 Unspecified fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion
## 33331 Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with malunion
## 33332 Unspecified fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33333 Unspecified fracture of upper end of right ulna, sequela
## 33334 Unspecified fracture of upper end of left ulna, initial encounter for closed fracture
## 33335 Unspecified fracture of upper end of left ulna, initial encounter for open fracture type I or II
## 33336 Unspecified fracture of upper end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33337 Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with routine healing
## 33338 Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 33339 Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33340 Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with delayed healing
## 33341 Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33342 Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33343 Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion
## 33344 Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 33345 Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33346 Unspecified fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion
## 33347 Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with malunion
## 33348 Unspecified fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33349 Unspecified fracture of upper end of left ulna, sequela
## 33350 Unspecified fracture of upper end of unspecified ulna, initial encounter for closed fracture
## 33351 Unspecified fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II
## 33352 Unspecified fracture of upper end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33353 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 33354 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 33355 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33356 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 33357 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33358 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33359 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 33360 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 33361 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33362 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with malunion
## 33363 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 33364 Unspecified fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33365 Unspecified fracture of upper end of unspecified ulna, sequela
## 33366 Torus fracture of upper end of right ulna, initial encounter for closed fracture
## 33367 Torus fracture of upper end of right ulna, subsequent encounter for fracture with routine healing
## 33368 Torus fracture of upper end of right ulna, subsequent encounter for fracture with delayed healing
## 33369 Torus fracture of upper end of right ulna, subsequent encounter for fracture with nonunion
## 33370 Torus fracture of upper end of right ulna, subsequent encounter for fracture with malunion
## 33371 Torus fracture of upper end of right ulna, sequela
## 33372 Torus fracture of upper end of left ulna, initial encounter for closed fracture
## 33373 Torus fracture of upper end of left ulna, subsequent encounter for fracture with routine healing
## 33374 Torus fracture of upper end of left ulna, subsequent encounter for fracture with delayed healing
## 33375 Torus fracture of upper end of left ulna, subsequent encounter for fracture with nonunion
## 33376 Torus fracture of upper end of left ulna, subsequent encounter for fracture with malunion
## 33377 Torus fracture of upper end of left ulna, sequela
## 33378 Torus fracture of upper end of unspecified ulna, initial encounter for closed fracture
## 33379 Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with routine healing
## 33380 Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with delayed healing
## 33381 Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with nonunion
## 33382 Torus fracture of upper end of unspecified ulna, subsequent encounter for fracture with malunion
## 33383 Torus fracture of upper end of unspecified ulna, sequela
## 33384 Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for closed fracture
## 33385 Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type I or II
## 33386 Displaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33387 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing
## 33388 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 33389 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33390 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing
## 33391 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33392 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33393 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion
## 33394 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 33395 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33396 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion
## 33397 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion
## 33398 Displaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33399 Displaced fracture of olecranon process without intraarticular extension of right ulna, sequela
## 33400 Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for closed fracture
## 33401 Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type I or II
## 33402 Displaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33403 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing
## 33404 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 33405 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33406 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing
## 33407 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33408 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33409 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion
## 33410 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 33411 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33412 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion
## 33413 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion
## 33414 Displaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33415 Displaced fracture of olecranon process without intraarticular extension of left ulna, sequela
## 33416 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for closed fracture
## 33417 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II
## 33418 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33419 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 33420 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 33421 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33422 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 33423 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33424 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33425 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 33426 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 33427 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33428 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion
## 33429 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 33430 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33431 Displaced fracture of olecranon process without intraarticular extension of unspecified ulna, sequela
## 33432 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for closed fracture
## 33433 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type I or II
## 33434 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33435 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing
## 33436 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 33437 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33438 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing
## 33439 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33440 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33441 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion
## 33442 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 33443 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33444 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion
## 33445 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion
## 33446 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33447 Nondisplaced fracture of olecranon process without intraarticular extension of right ulna, sequela
## 33448 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for closed fracture
## 33449 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type I or II
## 33450 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33451 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing
## 33452 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 33453 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33454 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing
## 33455 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33456 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33457 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion
## 33458 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 33459 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33460 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion
## 33461 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion
## 33462 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33463 Nondisplaced fracture of olecranon process without intraarticular extension of left ulna, sequela
## 33464 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for closed fracture
## 33465 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II
## 33466 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33467 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 33468 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 33469 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33470 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 33471 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33472 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33473 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 33474 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 33475 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33476 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion
## 33477 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 33478 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33479 Nondisplaced fracture of olecranon process without intraarticular extension of unspecified ulna, sequela
## 33480 Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for closed fracture
## 33481 Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type I or II
## 33482 Displaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33483 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing
## 33484 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 33485 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33486 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing
## 33487 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33488 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33489 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion
## 33490 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 33491 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33492 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion
## 33493 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion
## 33494 Displaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33495 Displaced fracture of olecranon process with intraarticular extension of right ulna, sequela
## 33496 Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for closed fracture
## 33497 Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type I or II
## 33498 Displaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33499 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing
## 33500 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 33501 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33502 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing
## 33503 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33504 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33505 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion
## 33506 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 33507 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33508 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion
## 33509 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion
## 33510 Displaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33511 Displaced fracture of olecranon process with intraarticular extension of left ulna, sequela
## 33512 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for closed fracture
## 33513 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II
## 33514 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33515 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 33516 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 33517 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33518 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 33519 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33520 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33521 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 33522 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 33523 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33524 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion
## 33525 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 33526 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33527 Displaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela
## 33528 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for closed fracture
## 33529 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type I or II
## 33530 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33531 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with routine healing
## 33532 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 33533 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33534 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with delayed healing
## 33535 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33536 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33537 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with nonunion
## 33538 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 33539 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33540 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for closed fracture with malunion
## 33541 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type I or II with malunion
## 33542 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33543 Nondisplaced fracture of olecranon process with intraarticular extension of right ulna, sequela
## 33544 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for closed fracture
## 33545 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type I or II
## 33546 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33547 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with routine healing
## 33548 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 33549 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33550 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with delayed healing
## 33551 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33552 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33553 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with nonunion
## 33554 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 33555 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33556 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for closed fracture with malunion
## 33557 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type I or II with malunion
## 33558 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33559 Nondisplaced fracture of olecranon process with intraarticular extension of left ulna, sequela
## 33560 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for closed fracture
## 33561 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type I or II
## 33562 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33563 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 33564 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 33565 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33566 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 33567 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33568 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33569 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 33570 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 33571 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33572 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for closed fracture with malunion
## 33573 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 33574 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33575 Nondisplaced fracture of olecranon process with intraarticular extension of unspecified ulna, sequela
## 33576 Displaced fracture of coronoid process of right ulna, initial encounter for closed fracture
## 33577 Displaced fracture of coronoid process of right ulna, initial encounter for open fracture type I or II
## 33578 Displaced fracture of coronoid process of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33579 Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with routine healing
## 33580 Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 33581 Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33582 Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with delayed healing
## 33583 Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33584 Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33585 Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with nonunion
## 33586 Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 33587 Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33588 Displaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with malunion
## 33589 Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with malunion
## 33590 Displaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33591 Displaced fracture of coronoid process of right ulna, sequela
## 33592 Displaced fracture of coronoid process of left ulna, initial encounter for closed fracture
## 33593 Displaced fracture of coronoid process of left ulna, initial encounter for open fracture type I or II
## 33594 Displaced fracture of coronoid process of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33595 Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with routine healing
## 33596 Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 33597 Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33598 Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing
## 33599 Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33600 Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33601 Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with nonunion
## 33602 Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 33603 Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33604 Displaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with malunion
## 33605 Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with malunion
## 33606 Displaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33607 Displaced fracture of coronoid process of left ulna, sequela
## 33608 Displaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture
## 33609 Displaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type I or II
## 33610 Displaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33611 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 33612 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 33613 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33614 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 33615 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33616 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33617 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 33618 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 33619 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33620 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with malunion
## 33621 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 33622 Displaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33623 Displaced fracture of coronoid process of unspecified ulna, sequela
## 33624 Nondisplaced fracture of coronoid process of right ulna, initial encounter for closed fracture
## 33625 Nondisplaced fracture of coronoid process of right ulna, initial encounter for open fracture type I or II
## 33626 Nondisplaced fracture of coronoid process of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33627 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with routine healing
## 33628 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 33629 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33630 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with delayed healing
## 33631 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33632 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33633 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with nonunion
## 33634 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 33635 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33636 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for closed fracture with malunion
## 33637 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type I or II with malunion
## 33638 Nondisplaced fracture of coronoid process of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33639 Nondisplaced fracture of coronoid process of right ulna, sequela
## 33640 Nondisplaced fracture of coronoid process of left ulna, initial encounter for closed fracture
## 33641 Nondisplaced fracture of coronoid process of left ulna, initial encounter for open fracture type I or II
## 33642 Nondisplaced fracture of coronoid process of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33643 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with routine healing
## 33644 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 33645 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33646 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with delayed healing
## 33647 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33648 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33649 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with nonunion
## 33650 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 33651 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33652 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for closed fracture with malunion
## 33653 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type I or II with malunion
## 33654 Nondisplaced fracture of coronoid process of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33655 Nondisplaced fracture of coronoid process of left ulna, sequela
## 33656 Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for closed fracture
## 33657 Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type I or II
## 33658 Nondisplaced fracture of coronoid process of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33659 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 33660 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 33661 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33662 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 33663 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33664 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33665 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 33666 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 33667 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33668 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for closed fracture with malunion
## 33669 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 33670 Nondisplaced fracture of coronoid process of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33671 Nondisplaced fracture of coronoid process of unspecified ulna, sequela
## 33672 Other fracture of upper end of right ulna, initial encounter for closed fracture
## 33673 Other fracture of upper end of right ulna, initial encounter for open fracture type I or II
## 33674 Other fracture of upper end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33675 Other fracture of upper end of right ulna, subsequent encounter for closed fracture with routine healing
## 33676 Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 33677 Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33678 Other fracture of upper end of right ulna, subsequent encounter for closed fracture with delayed healing
## 33679 Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33680 Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33681 Other fracture of upper end of right ulna, subsequent encounter for closed fracture with nonunion
## 33682 Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 33683 Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33684 Other fracture of upper end of right ulna, subsequent encounter for closed fracture with malunion
## 33685 Other fracture of upper end of right ulna, subsequent encounter for open fracture type I or II with malunion
## 33686 Other fracture of upper end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33687 Other fracture of upper end of right ulna, sequela
## 33688 Other fracture of upper end of left ulna, initial encounter for closed fracture
## 33689 Other fracture of upper end of left ulna, initial encounter for open fracture type I or II
## 33690 Other fracture of upper end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33691 Other fracture of upper end of left ulna, subsequent encounter for closed fracture with routine healing
## 33692 Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 33693 Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33694 Other fracture of upper end of left ulna, subsequent encounter for closed fracture with delayed healing
## 33695 Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33696 Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33697 Other fracture of upper end of left ulna, subsequent encounter for closed fracture with nonunion
## 33698 Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 33699 Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33700 Other fracture of upper end of left ulna, subsequent encounter for closed fracture with malunion
## 33701 Other fracture of upper end of left ulna, subsequent encounter for open fracture type I or II with malunion
## 33702 Other fracture of upper end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33703 Other fracture of upper end of left ulna, sequela
## 33704 Other fracture of upper end of unspecified ulna, initial encounter for closed fracture
## 33705 Other fracture of upper end of unspecified ulna, initial encounter for open fracture type I or II
## 33706 Other fracture of upper end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33707 Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 33708 Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 33709 Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33710 Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 33711 Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 33712 Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33713 Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 33714 Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 33715 Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33716 Other fracture of upper end of unspecified ulna, subsequent encounter for closed fracture with malunion
## 33717 Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 33718 Other fracture of upper end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33719 Other fracture of upper end of unspecified ulna, sequela
## 33720 Unspecified fracture of upper end of right radius, initial encounter for closed fracture
## 33721 Unspecified fracture of upper end of right radius, initial encounter for open fracture type I or II
## 33722 Unspecified fracture of upper end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33723 Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with routine healing
## 33724 Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with routine healing
## 33725 Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33726 Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with delayed healing
## 33727 Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 33728 Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33729 Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion
## 33730 Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with nonunion
## 33731 Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33732 Unspecified fracture of upper end of right radius, subsequent encounter for closed fracture with malunion
## 33733 Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type I or II with malunion
## 33734 Unspecified fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33735 Unspecified fracture of upper end of right radius, sequela
## 33736 Unspecified fracture of upper end of left radius, initial encounter for closed fracture
## 33737 Unspecified fracture of upper end of left radius, initial encounter for open fracture type I or II
## 33738 Unspecified fracture of upper end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33739 Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with routine healing
## 33740 Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with routine healing
## 33741 Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33742 Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with delayed healing
## 33743 Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 33744 Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33745 Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion
## 33746 Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion
## 33747 Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33748 Unspecified fracture of upper end of left radius, subsequent encounter for closed fracture with malunion
## 33749 Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type I or II with malunion
## 33750 Unspecified fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33751 Unspecified fracture of upper end of left radius, sequela
## 33752 Unspecified fracture of upper end of unspecified radius, initial encounter for closed fracture
## 33753 Unspecified fracture of upper end of unspecified radius, initial encounter for open fracture type I or II
## 33754 Unspecified fracture of upper end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33755 Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with routine healing
## 33756 Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 33757 Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33758 Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 33759 Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 33760 Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33761 Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with nonunion
## 33762 Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 33763 Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33764 Unspecified fracture of upper end of unspecified radius, subsequent encounter for closed fracture with malunion
## 33765 Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 33766 Unspecified fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33767 Unspecified fracture of upper end of unspecified radius, sequela
## 33768 Torus fracture of upper end of right radius, initial encounter for closed fracture
## 33769 Torus fracture of upper end of right radius, subsequent encounter for fracture with routine healing
## 33770 Torus fracture of upper end of right radius, subsequent encounter for fracture with delayed healing
## 33771 Torus fracture of upper end of right radius, subsequent encounter for fracture with nonunion
## 33772 Torus fracture of upper end of right radius, subsequent encounter for fracture with malunion
## 33773 Torus fracture of upper end of right radius, sequela
## 33774 Torus fracture of upper end of left radius, initial encounter for closed fracture
## 33775 Torus fracture of upper end of left radius, subsequent encounter for fracture with routine healing
## 33776 Torus fracture of upper end of left radius, subsequent encounter for fracture with delayed healing
## 33777 Torus fracture of upper end of left radius, subsequent encounter for fracture with nonunion
## 33778 Torus fracture of upper end of left radius, subsequent encounter for fracture with malunion
## 33779 Torus fracture of upper end of left radius, sequela
## 33780 Torus fracture of upper end of unspecified radius, initial encounter for closed fracture
## 33781 Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with routine healing
## 33782 Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with delayed healing
## 33783 Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with nonunion
## 33784 Torus fracture of upper end of unspecified radius, subsequent encounter for fracture with malunion
## 33785 Torus fracture of upper end of unspecified radius, sequela
## 33786 Displaced fracture of head of right radius, initial encounter for closed fracture
## 33787 Displaced fracture of head of right radius, initial encounter for open fracture type I or II
## 33788 Displaced fracture of head of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33789 Displaced fracture of head of right radius, subsequent encounter for closed fracture with routine healing
## 33790 Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with routine healing
## 33791 Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33792 Displaced fracture of head of right radius, subsequent encounter for closed fracture with delayed healing
## 33793 Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 33794 Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33795 Displaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion
## 33796 Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with nonunion
## 33797 Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33798 Displaced fracture of head of right radius, subsequent encounter for closed fracture with malunion
## 33799 Displaced fracture of head of right radius, subsequent encounter for open fracture type I or II with malunion
## 33800 Displaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33801 Displaced fracture of head of right radius, sequela
## 33802 Displaced fracture of head of left radius, initial encounter for closed fracture
## 33803 Displaced fracture of head of left radius, initial encounter for open fracture type I or II
## 33804 Displaced fracture of head of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33805 Displaced fracture of head of left radius, subsequent encounter for closed fracture with routine healing
## 33806 Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with routine healing
## 33807 Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33808 Displaced fracture of head of left radius, subsequent encounter for closed fracture with delayed healing
## 33809 Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 33810 Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33811 Displaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion
## 33812 Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with nonunion
## 33813 Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33814 Displaced fracture of head of left radius, subsequent encounter for closed fracture with malunion
## 33815 Displaced fracture of head of left radius, subsequent encounter for open fracture type I or II with malunion
## 33816 Displaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33817 Displaced fracture of head of left radius, sequela
## 33818 Displaced fracture of head of unspecified radius, initial encounter for closed fracture
## 33819 Displaced fracture of head of unspecified radius, initial encounter for open fracture type I or II
## 33820 Displaced fracture of head of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33821 Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with routine healing
## 33822 Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 33823 Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33824 Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 33825 Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 33826 Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33827 Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with nonunion
## 33828 Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 33829 Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33830 Displaced fracture of head of unspecified radius, subsequent encounter for closed fracture with malunion
## 33831 Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 33832 Displaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33833 Displaced fracture of head of unspecified radius, sequela
## 33834 Nondisplaced fracture of head of right radius, initial encounter for closed fracture
## 33835 Nondisplaced fracture of head of right radius, initial encounter for open fracture type I or II
## 33836 Nondisplaced fracture of head of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33837 Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with routine healing
## 33838 Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with routine healing
## 33839 Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33840 Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with delayed healing
## 33841 Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 33842 Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33843 Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with nonunion
## 33844 Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with nonunion
## 33845 Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33846 Nondisplaced fracture of head of right radius, subsequent encounter for closed fracture with malunion
## 33847 Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type I or II with malunion
## 33848 Nondisplaced fracture of head of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33849 Nondisplaced fracture of head of right radius, sequela
## 33850 Nondisplaced fracture of head of left radius, initial encounter for closed fracture
## 33851 Nondisplaced fracture of head of left radius, initial encounter for open fracture type I or II
## 33852 Nondisplaced fracture of head of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33853 Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with routine healing
## 33854 Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with routine healing
## 33855 Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33856 Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with delayed healing
## 33857 Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 33858 Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33859 Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with nonunion
## 33860 Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with nonunion
## 33861 Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33862 Nondisplaced fracture of head of left radius, subsequent encounter for closed fracture with malunion
## 33863 Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type I or II with malunion
## 33864 Nondisplaced fracture of head of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33865 Nondisplaced fracture of head of left radius, sequela
## 33866 Nondisplaced fracture of head of unspecified radius, initial encounter for closed fracture
## 33867 Nondisplaced fracture of head of unspecified radius, initial encounter for open fracture type I or II
## 33868 Nondisplaced fracture of head of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33869 Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with routine healing
## 33870 Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 33871 Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33872 Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 33873 Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 33874 Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33875 Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with nonunion
## 33876 Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 33877 Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33878 Nondisplaced fracture of head of unspecified radius, subsequent encounter for closed fracture with malunion
## 33879 Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 33880 Nondisplaced fracture of head of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33881 Nondisplaced fracture of head of unspecified radius, sequela
## 33882 Displaced fracture of neck of right radius, initial encounter for closed fracture
## 33883 Displaced fracture of neck of right radius, initial encounter for open fracture type I or II
## 33884 Displaced fracture of neck of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33885 Displaced fracture of neck of right radius, subsequent encounter for closed fracture with routine healing
## 33886 Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with routine healing
## 33887 Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33888 Displaced fracture of neck of right radius, subsequent encounter for closed fracture with delayed healing
## 33889 Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 33890 Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33891 Displaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion
## 33892 Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with nonunion
## 33893 Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33894 Displaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion
## 33895 Displaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with malunion
## 33896 Displaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33897 Displaced fracture of neck of right radius, sequela
## 33898 Displaced fracture of neck of left radius, initial encounter for closed fracture
## 33899 Displaced fracture of neck of left radius, initial encounter for open fracture type I or II
## 33900 Displaced fracture of neck of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33901 Displaced fracture of neck of left radius, subsequent encounter for closed fracture with routine healing
## 33902 Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with routine healing
## 33903 Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33904 Displaced fracture of neck of left radius, subsequent encounter for closed fracture with delayed healing
## 33905 Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 33906 Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33907 Displaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion
## 33908 Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with nonunion
## 33909 Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33910 Displaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion
## 33911 Displaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with malunion
## 33912 Displaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33913 Displaced fracture of neck of left radius, sequela
## 33914 Displaced fracture of neck of unspecified radius, initial encounter for closed fracture
## 33915 Displaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II
## 33916 Displaced fracture of neck of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33917 Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with routine healing
## 33918 Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 33919 Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33920 Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 33921 Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 33922 Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33923 Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with nonunion
## 33924 Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 33925 Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33926 Displaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with malunion
## 33927 Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 33928 Displaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33929 Displaced fracture of neck of unspecified radius, sequela
## 33930 Nondisplaced fracture of neck of right radius, initial encounter for closed fracture
## 33931 Nondisplaced fracture of neck of right radius, initial encounter for open fracture type I or II
## 33932 Nondisplaced fracture of neck of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33933 Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with routine healing
## 33934 Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with routine healing
## 33935 Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33936 Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with delayed healing
## 33937 Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 33938 Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33939 Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with nonunion
## 33940 Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with nonunion
## 33941 Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33942 Nondisplaced fracture of neck of right radius, subsequent encounter for closed fracture with malunion
## 33943 Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type I or II with malunion
## 33944 Nondisplaced fracture of neck of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33945 Nondisplaced fracture of neck of right radius, sequela
## 33946 Nondisplaced fracture of neck of left radius, initial encounter for closed fracture
## 33947 Nondisplaced fracture of neck of left radius, initial encounter for open fracture type I or II
## 33948 Nondisplaced fracture of neck of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33949 Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with routine healing
## 33950 Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with routine healing
## 33951 Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33952 Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with delayed healing
## 33953 Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 33954 Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33955 Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with nonunion
## 33956 Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with nonunion
## 33957 Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33958 Nondisplaced fracture of neck of left radius, subsequent encounter for closed fracture with malunion
## 33959 Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type I or II with malunion
## 33960 Nondisplaced fracture of neck of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33961 Nondisplaced fracture of neck of left radius, sequela
## 33962 Nondisplaced fracture of neck of unspecified radius, initial encounter for closed fracture
## 33963 Nondisplaced fracture of neck of unspecified radius, initial encounter for open fracture type I or II
## 33964 Nondisplaced fracture of neck of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33965 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with routine healing
## 33966 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 33967 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33968 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 33969 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 33970 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33971 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with nonunion
## 33972 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 33973 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33974 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for closed fracture with malunion
## 33975 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 33976 Nondisplaced fracture of neck of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33977 Nondisplaced fracture of neck of unspecified radius, sequela
## 33978 Other fracture of upper end of right radius, initial encounter for closed fracture
## 33979 Other fracture of upper end of right radius, initial encounter for open fracture type I or II
## 33980 Other fracture of upper end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33981 Other fracture of upper end of right radius, subsequent encounter for closed fracture with routine healing
## 33982 Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with routine healing
## 33983 Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 33984 Other fracture of upper end of right radius, subsequent encounter for closed fracture with delayed healing
## 33985 Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 33986 Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 33987 Other fracture of upper end of right radius, subsequent encounter for closed fracture with nonunion
## 33988 Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with nonunion
## 33989 Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 33990 Other fracture of upper end of right radius, subsequent encounter for closed fracture with malunion
## 33991 Other fracture of upper end of right radius, subsequent encounter for open fracture type I or II with malunion
## 33992 Other fracture of upper end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 33993 Other fracture of upper end of right radius, sequela
## 33994 Other fracture of upper end of left radius, initial encounter for closed fracture
## 33995 Other fracture of upper end of left radius, initial encounter for open fracture type I or II
## 33996 Other fracture of upper end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 33997 Other fracture of upper end of left radius, subsequent encounter for closed fracture with routine healing
## 33998 Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with routine healing
## 33999 Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34000 Other fracture of upper end of left radius, subsequent encounter for closed fracture with delayed healing
## 34001 Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 34002 Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34003 Other fracture of upper end of left radius, subsequent encounter for closed fracture with nonunion
## 34004 Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with nonunion
## 34005 Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34006 Other fracture of upper end of left radius, subsequent encounter for closed fracture with malunion
## 34007 Other fracture of upper end of left radius, subsequent encounter for open fracture type I or II with malunion
## 34008 Other fracture of upper end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34009 Other fracture of upper end of left radius, sequela
## 34010 Other fracture of upper end of unspecified radius, initial encounter for closed fracture
## 34011 Other fracture of upper end of unspecified radius, initial encounter for open fracture type I or II
## 34012 Other fracture of upper end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34013 Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with routine healing
## 34014 Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 34015 Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34016 Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 34017 Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 34018 Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34019 Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with nonunion
## 34020 Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 34021 Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34022 Other fracture of upper end of unspecified radius, subsequent encounter for closed fracture with malunion
## 34023 Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 34024 Other fracture of upper end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34025 Other fracture of upper end of unspecified radius, sequela
## 34026 Unspecified fracture of shaft of right ulna, initial encounter for closed fracture
## 34027 Unspecified fracture of shaft of right ulna, initial encounter for open fracture type I or II
## 34028 Unspecified fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34029 Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing
## 34030 Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 34031 Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34032 Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing
## 34033 Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34034 Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34035 Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion
## 34036 Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 34037 Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34038 Unspecified fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion
## 34039 Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion
## 34040 Unspecified fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34041 Unspecified fracture of shaft of right ulna, sequela
## 34042 Unspecified fracture of shaft of left ulna, initial encounter for closed fracture
## 34043 Unspecified fracture of shaft of left ulna, initial encounter for open fracture type I or II
## 34044 Unspecified fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34045 Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing
## 34046 Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 34047 Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34048 Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing
## 34049 Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34050 Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34051 Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion
## 34052 Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 34053 Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34054 Unspecified fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion
## 34055 Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion
## 34056 Unspecified fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34057 Unspecified fracture of shaft of left ulna, sequela
## 34058 Unspecified fracture of shaft of unspecified ulna, initial encounter for closed fracture
## 34059 Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II
## 34060 Unspecified fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34061 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 34062 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 34063 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34064 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 34065 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34066 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34067 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 34068 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 34069 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34070 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion
## 34071 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 34072 Unspecified fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34073 Unspecified fracture of shaft of unspecified ulna, sequela
## 34074 Greenstick fracture of shaft of right ulna, initial encounter for closed fracture
## 34075 Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with routine healing
## 34076 Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with delayed healing
## 34077 Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with nonunion
## 34078 Greenstick fracture of shaft of right ulna, subsequent encounter for fracture with malunion
## 34079 Greenstick fracture of shaft of right ulna, sequela
## 34080 Greenstick fracture of shaft of left ulna, initial encounter for closed fracture
## 34081 Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with routine healing
## 34082 Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with delayed healing
## 34083 Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with nonunion
## 34084 Greenstick fracture of shaft of left ulna, subsequent encounter for fracture with malunion
## 34085 Greenstick fracture of shaft of left ulna, sequela
## 34086 Greenstick fracture of shaft of unspecified ulna, initial encounter for closed fracture
## 34087 Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with routine healing
## 34088 Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with delayed healing
## 34089 Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with nonunion
## 34090 Greenstick fracture of shaft of unspecified ulna, subsequent encounter for fracture with malunion
## 34091 Greenstick fracture of shaft of unspecified ulna, sequela
## 34092 Displaced transverse fracture of shaft of right ulna, initial encounter for closed fracture
## 34093 Displaced transverse fracture of shaft of right ulna, initial encounter for open fracture type I or II
## 34094 Displaced transverse fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34095 Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing
## 34096 Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 34097 Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34098 Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing
## 34099 Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34100 Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34101 Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion
## 34102 Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 34103 Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34104 Displaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion
## 34105 Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion
## 34106 Displaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34107 Displaced transverse fracture of shaft of right ulna, sequela
## 34108 Displaced transverse fracture of shaft of left ulna, initial encounter for closed fracture
## 34109 Displaced transverse fracture of shaft of left ulna, initial encounter for open fracture type I or II
## 34110 Displaced transverse fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34111 Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing
## 34112 Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 34113 Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34114 Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing
## 34115 Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34116 Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34117 Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion
## 34118 Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 34119 Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34120 Displaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion
## 34121 Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion
## 34122 Displaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34123 Displaced transverse fracture of shaft of left ulna, sequela
## 34124 Displaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture
## 34125 Displaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II
## 34126 Displaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34127 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 34128 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 34129 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34130 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 34131 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34132 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34133 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 34134 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 34135 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34136 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion
## 34137 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 34138 Displaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34139 Displaced transverse fracture of shaft of unspecified ulna, sequela
## 34140 Nondisplaced transverse fracture of shaft of right ulna, initial encounter for closed fracture
## 34141 Nondisplaced transverse fracture of shaft of right ulna, initial encounter for open fracture type I or II
## 34142 Nondisplaced transverse fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34143 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing
## 34144 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 34145 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34146 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing
## 34147 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34148 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34149 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion
## 34150 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 34151 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34152 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion
## 34153 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion
## 34154 Nondisplaced transverse fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34155 Nondisplaced transverse fracture of shaft of right ulna, sequela
## 34156 Nondisplaced transverse fracture of shaft of left ulna, initial encounter for closed fracture
## 34157 Nondisplaced transverse fracture of shaft of left ulna, initial encounter for open fracture type I or II
## 34158 Nondisplaced transverse fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34159 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing
## 34160 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 34161 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34162 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing
## 34163 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34164 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34165 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion
## 34166 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 34167 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34168 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion
## 34169 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion
## 34170 Nondisplaced transverse fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34171 Nondisplaced transverse fracture of shaft of left ulna, sequela
## 34172 Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for closed fracture
## 34173 Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II
## 34174 Nondisplaced transverse fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34175 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 34176 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 34177 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34178 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 34179 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34180 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34181 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 34182 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 34183 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34184 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion
## 34185 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 34186 Nondisplaced transverse fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34187 Nondisplaced transverse fracture of shaft of unspecified ulna, sequela
## 34188 Displaced oblique fracture of shaft of right ulna, initial encounter for closed fracture
## 34189 Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II
## 34190 Displaced oblique fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34191 Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing
## 34192 Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 34193 Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34194 Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing
## 34195 Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34196 Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34197 Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion
## 34198 Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 34199 Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34200 Displaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion
## 34201 Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion
## 34202 Displaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34203 Displaced oblique fracture of shaft of right ulna, sequela
## 34204 Displaced oblique fracture of shaft of left ulna, initial encounter for closed fracture
## 34205 Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II
## 34206 Displaced oblique fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34207 Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing
## 34208 Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 34209 Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34210 Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing
## 34211 Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34212 Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34213 Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion
## 34214 Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 34215 Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34216 Displaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion
## 34217 Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion
## 34218 Displaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34219 Displaced oblique fracture of shaft of left ulna, sequela
## 34220 Displaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture
## 34221 Displaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II
## 34222 Displaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34223 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 34224 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 34225 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34226 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 34227 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34228 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34229 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 34230 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 34231 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34232 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion
## 34233 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 34234 Displaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34235 Displaced oblique fracture of shaft of unspecified ulna, sequela
## 34236 Nondisplaced oblique fracture of shaft of right ulna, initial encounter for closed fracture
## 34237 Nondisplaced oblique fracture of shaft of right ulna, initial encounter for open fracture type I or II
## 34238 Nondisplaced oblique fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34239 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing
## 34240 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 34241 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34242 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing
## 34243 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34244 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34245 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion
## 34246 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 34247 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34248 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion
## 34249 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion
## 34250 Nondisplaced oblique fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34251 Nondisplaced oblique fracture of shaft of right ulna, sequela
## 34252 Nondisplaced oblique fracture of shaft of left ulna, initial encounter for closed fracture
## 34253 Nondisplaced oblique fracture of shaft of left ulna, initial encounter for open fracture type I or II
## 34254 Nondisplaced oblique fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34255 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing
## 34256 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 34257 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34258 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing
## 34259 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34260 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34261 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion
## 34262 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 34263 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34264 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion
## 34265 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion
## 34266 Nondisplaced oblique fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34267 Nondisplaced oblique fracture of shaft of left ulna, sequela
## 34268 Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for closed fracture
## 34269 Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II
## 34270 Nondisplaced oblique fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34271 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 34272 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 34273 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34274 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 34275 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34276 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34277 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 34278 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 34279 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34280 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion
## 34281 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 34282 Nondisplaced oblique fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34283 Nondisplaced oblique fracture of shaft of unspecified ulna, sequela
## 34284 Displaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture
## 34285 Displaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II
## 34286 Displaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34287 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing
## 34288 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing
## 34289 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34290 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing
## 34291 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 34292 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34293 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion
## 34294 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion
## 34295 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34296 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion
## 34297 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion
## 34298 Displaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34299 Displaced spiral fracture of shaft of ulna, right arm, sequela
## 34300 Displaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture
## 34301 Displaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II
## 34302 Displaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34303 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing
## 34304 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing
## 34305 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34306 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing
## 34307 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 34308 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34309 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion
## 34310 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion
## 34311 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34312 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion
## 34313 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion
## 34314 Displaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34315 Displaced spiral fracture of shaft of ulna, left arm, sequela
## 34316 Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture
## 34317 Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II
## 34318 Displaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34319 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing
## 34320 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 34321 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34322 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 34323 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 34324 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34325 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion
## 34326 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 34327 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34328 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion
## 34329 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 34330 Displaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34331 Displaced spiral fracture of shaft of ulna, unspecified arm, sequela
## 34332 Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for closed fracture
## 34333 Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II
## 34334 Nondisplaced spiral fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34335 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing
## 34336 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing
## 34337 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34338 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing
## 34339 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 34340 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34341 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion
## 34342 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion
## 34343 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34344 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion
## 34345 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion
## 34346 Nondisplaced spiral fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34347 Nondisplaced spiral fracture of shaft of ulna, right arm, sequela
## 34348 Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for closed fracture
## 34349 Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II
## 34350 Nondisplaced spiral fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34351 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing
## 34352 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing
## 34353 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34354 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing
## 34355 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 34356 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34357 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion
## 34358 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion
## 34359 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34360 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion
## 34361 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion
## 34362 Nondisplaced spiral fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34363 Nondisplaced spiral fracture of shaft of ulna, left arm, sequela
## 34364 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture
## 34365 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II
## 34366 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34367 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing
## 34368 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 34369 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34370 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 34371 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 34372 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34373 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion
## 34374 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 34375 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34376 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion
## 34377 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 34378 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34379 Nondisplaced spiral fracture of shaft of ulna, unspecified arm, sequela
## 34380 Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture
## 34381 Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II
## 34382 Displaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34383 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing
## 34384 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing
## 34385 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34386 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing
## 34387 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 34388 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34389 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion
## 34390 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion
## 34391 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34392 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion
## 34393 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion
## 34394 Displaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34395 Displaced comminuted fracture of shaft of ulna, right arm, sequela
## 34396 Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture
## 34397 Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II
## 34398 Displaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34399 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing
## 34400 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing
## 34401 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34402 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing
## 34403 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 34404 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34405 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion
## 34406 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion
## 34407 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34408 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion
## 34409 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion
## 34410 Displaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34411 Displaced comminuted fracture of shaft of ulna, left arm, sequela
## 34412 Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture
## 34413 Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II
## 34414 Displaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34415 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing
## 34416 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 34417 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34418 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 34419 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 34420 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34421 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion
## 34422 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 34423 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34424 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion
## 34425 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 34426 Displaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34427 Displaced comminuted fracture of shaft of ulna, unspecified arm, sequela
## 34428 Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for closed fracture
## 34429 Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II
## 34430 Nondisplaced comminuted fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34431 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing
## 34432 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing
## 34433 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34434 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing
## 34435 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 34436 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34437 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion
## 34438 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion
## 34439 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34440 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion
## 34441 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion
## 34442 Nondisplaced comminuted fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34443 Nondisplaced comminuted fracture of shaft of ulna, right arm, sequela
## 34444 Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for closed fracture
## 34445 Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II
## 34446 Nondisplaced comminuted fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34447 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing
## 34448 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing
## 34449 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34450 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing
## 34451 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 34452 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34453 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion
## 34454 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion
## 34455 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34456 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion
## 34457 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion
## 34458 Nondisplaced comminuted fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34459 Nondisplaced comminuted fracture of shaft of ulna, left arm, sequela
## 34460 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture
## 34461 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II
## 34462 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34463 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing
## 34464 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 34465 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34466 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 34467 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 34468 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34469 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion
## 34470 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 34471 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34472 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion
## 34473 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 34474 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34475 Nondisplaced comminuted fracture of shaft of ulna, unspecified arm, sequela
## 34476 Displaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture
## 34477 Displaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II
## 34478 Displaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34479 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing
## 34480 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing
## 34481 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34482 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing
## 34483 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 34484 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34485 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion
## 34486 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion
## 34487 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34488 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion
## 34489 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion
## 34490 Displaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34491 Displaced segmental fracture of shaft of ulna, right arm, sequela
## 34492 Displaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture
## 34493 Displaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II
## 34494 Displaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34495 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing
## 34496 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing
## 34497 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34498 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing
## 34499 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 34500 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34501 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion
## 34502 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion
## 34503 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34504 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion
## 34505 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion
## 34506 Displaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34507 Displaced segmental fracture of shaft of ulna, left arm, sequela
## 34508 Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture
## 34509 Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II
## 34510 Displaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34511 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing
## 34512 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 34513 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34514 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 34515 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 34516 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34517 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion
## 34518 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 34519 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34520 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion
## 34521 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 34522 Displaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34523 Displaced segmental fracture of shaft of ulna, unspecified arm, sequela
## 34524 Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for closed fracture
## 34525 Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type I or II
## 34526 Nondisplaced segmental fracture of shaft of ulna, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34527 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with routine healing
## 34528 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with routine healing
## 34529 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34530 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with delayed healing
## 34531 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 34532 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34533 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with nonunion
## 34534 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with nonunion
## 34535 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34536 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for closed fracture with malunion
## 34537 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type I or II with malunion
## 34538 Nondisplaced segmental fracture of shaft of ulna, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34539 Nondisplaced segmental fracture of shaft of ulna, right arm, sequela
## 34540 Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for closed fracture
## 34541 Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type I or II
## 34542 Nondisplaced segmental fracture of shaft of ulna, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34543 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with routine healing
## 34544 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with routine healing
## 34545 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34546 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with delayed healing
## 34547 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 34548 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34549 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with nonunion
## 34550 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with nonunion
## 34551 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34552 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for closed fracture with malunion
## 34553 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type I or II with malunion
## 34554 Nondisplaced segmental fracture of shaft of ulna, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34555 Nondisplaced segmental fracture of shaft of ulna, left arm, sequela
## 34556 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for closed fracture
## 34557 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type I or II
## 34558 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34559 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with routine healing
## 34560 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 34561 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34562 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 34563 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 34564 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34565 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with nonunion
## 34566 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 34567 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34568 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for closed fracture with malunion
## 34569 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 34570 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34571 Nondisplaced segmental fracture of shaft of ulna, unspecified arm, sequela
## 34572 Monteggia's fracture of right ulna, initial encounter for closed fracture
## 34573 Monteggia's fracture of right ulna, initial encounter for open fracture type I or II
## 34574 Monteggia's fracture of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34575 Monteggia's fracture of right ulna, subsequent encounter for closed fracture with routine healing
## 34576 Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 34577 Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34578 Monteggia's fracture of right ulna, subsequent encounter for closed fracture with delayed healing
## 34579 Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34580 Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34581 Monteggia's fracture of right ulna, subsequent encounter for closed fracture with nonunion
## 34582 Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 34583 Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34584 Monteggia's fracture of right ulna, subsequent encounter for closed fracture with malunion
## 34585 Monteggia's fracture of right ulna, subsequent encounter for open fracture type I or II with malunion
## 34586 Monteggia's fracture of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34587 Monteggia's fracture of right ulna, sequela
## 34588 Monteggia's fracture of left ulna, initial encounter for closed fracture
## 34589 Monteggia's fracture of left ulna, initial encounter for open fracture type I or II
## 34590 Monteggia's fracture of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34591 Monteggia's fracture of left ulna, subsequent encounter for closed fracture with routine healing
## 34592 Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 34593 Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34594 Monteggia's fracture of left ulna, subsequent encounter for closed fracture with delayed healing
## 34595 Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34596 Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34597 Monteggia's fracture of left ulna, subsequent encounter for closed fracture with nonunion
## 34598 Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 34599 Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34600 Monteggia's fracture of left ulna, subsequent encounter for closed fracture with malunion
## 34601 Monteggia's fracture of left ulna, subsequent encounter for open fracture type I or II with malunion
## 34602 Monteggia's fracture of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34603 Monteggia's fracture of left ulna, sequela
## 34604 Monteggia's fracture of unspecified ulna, initial encounter for closed fracture
## 34605 Monteggia's fracture of unspecified ulna, initial encounter for open fracture type I or II
## 34606 Monteggia's fracture of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34607 Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 34608 Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 34609 Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34610 Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 34611 Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34612 Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34613 Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 34614 Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 34615 Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34616 Monteggia's fracture of unspecified ulna, subsequent encounter for closed fracture with malunion
## 34617 Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 34618 Monteggia's fracture of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34619 Monteggia's fracture of unspecified ulna, sequela
## 34620 Bent bone of right ulna, initial encounter for closed fracture
## 34621 Bent bone of right ulna, initial encounter for open fracture type I or II
## 34622 Bent bone of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34623 Bent bone of right ulna, subsequent encounter for closed fracture with routine healing
## 34624 Bent bone of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 34625 Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34626 Bent bone of right ulna, subsequent encounter for closed fracture with delayed healing
## 34627 Bent bone of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34628 Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34629 Bent bone of right ulna, subsequent encounter for closed fracture with nonunion
## 34630 Bent bone of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 34631 Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34632 Bent bone of right ulna, subsequent encounter for closed fracture with malunion
## 34633 Bent bone of right ulna, subsequent encounter for open fracture type I or II with malunion
## 34634 Bent bone of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34635 Bent bone of right ulna, sequela
## 34636 Bent bone of left ulna, initial encounter for closed fracture
## 34637 Bent bone of left ulna, initial encounter for open fracture type I or II
## 34638 Bent bone of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34639 Bent bone of left ulna, subsequent encounter for closed fracture with routine healing
## 34640 Bent bone of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 34641 Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34642 Bent bone of left ulna, subsequent encounter for closed fracture with delayed healing
## 34643 Bent bone of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34644 Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34645 Bent bone of left ulna, subsequent encounter for closed fracture with nonunion
## 34646 Bent bone of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 34647 Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34648 Bent bone of left ulna, subsequent encounter for closed fracture with malunion
## 34649 Bent bone of left ulna, subsequent encounter for open fracture type I or II with malunion
## 34650 Bent bone of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34651 Bent bone of left ulna, sequela
## 34652 Bent bone of unspecified ulna, initial encounter for closed fracture
## 34653 Bent bone of unspecified ulna, initial encounter for open fracture type I or II
## 34654 Bent bone of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34655 Bent bone of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 34656 Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 34657 Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34658 Bent bone of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 34659 Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34660 Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34661 Bent bone of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 34662 Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 34663 Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34664 Bent bone of unspecified ulna, subsequent encounter for closed fracture with malunion
## 34665 Bent bone of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 34666 Bent bone of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34667 Bent bone of unspecified ulna, sequela
## 34668 Other fracture of shaft of right ulna, initial encounter for closed fracture
## 34669 Other fracture of shaft of right ulna, initial encounter for open fracture type I or II
## 34670 Other fracture of shaft of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34671 Other fracture of shaft of right ulna, subsequent encounter for closed fracture with routine healing
## 34672 Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 34673 Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34674 Other fracture of shaft of right ulna, subsequent encounter for closed fracture with delayed healing
## 34675 Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34676 Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34677 Other fracture of shaft of right ulna, subsequent encounter for closed fracture with nonunion
## 34678 Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 34679 Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34680 Other fracture of shaft of right ulna, subsequent encounter for closed fracture with malunion
## 34681 Other fracture of shaft of right ulna, subsequent encounter for open fracture type I or II with malunion
## 34682 Other fracture of shaft of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34683 Other fracture of shaft of right ulna, sequela
## 34684 Other fracture of shaft of left ulna, initial encounter for closed fracture
## 34685 Other fracture of shaft of left ulna, initial encounter for open fracture type I or II
## 34686 Other fracture of shaft of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34687 Other fracture of shaft of left ulna, subsequent encounter for closed fracture with routine healing
## 34688 Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 34689 Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34690 Other fracture of shaft of left ulna, subsequent encounter for closed fracture with delayed healing
## 34691 Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34692 Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34693 Other fracture of shaft of left ulna, subsequent encounter for closed fracture with nonunion
## 34694 Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 34695 Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34696 Other fracture of shaft of left ulna, subsequent encounter for closed fracture with malunion
## 34697 Other fracture of shaft of left ulna, subsequent encounter for open fracture type I or II with malunion
## 34698 Other fracture of shaft of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34699 Other fracture of shaft of left ulna, sequela
## 34700 Other fracture of shaft of unspecified ulna, initial encounter for closed fracture
## 34701 Other fracture of shaft of unspecified ulna, initial encounter for open fracture type I or II
## 34702 Other fracture of shaft of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34703 Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 34704 Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 34705 Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34706 Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 34707 Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 34708 Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34709 Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 34710 Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 34711 Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34712 Other fracture of shaft of unspecified ulna, subsequent encounter for closed fracture with malunion
## 34713 Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 34714 Other fracture of shaft of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34715 Other fracture of shaft of unspecified ulna, sequela
## 34716 Unspecified fracture of shaft of right radius, initial encounter for closed fracture
## 34717 Unspecified fracture of shaft of right radius, initial encounter for open fracture type I or II
## 34718 Unspecified fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34719 Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing
## 34720 Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing
## 34721 Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34722 Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing
## 34723 Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 34724 Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34725 Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion
## 34726 Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion
## 34727 Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34728 Unspecified fracture of shaft of right radius, subsequent encounter for closed fracture with malunion
## 34729 Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion
## 34730 Unspecified fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34731 Unspecified fracture of shaft of right radius, sequela
## 34732 Unspecified fracture of shaft of left radius, initial encounter for closed fracture
## 34733 Unspecified fracture of shaft of left radius, initial encounter for open fracture type I or II
## 34734 Unspecified fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34735 Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing
## 34736 Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing
## 34737 Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34738 Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing
## 34739 Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 34740 Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34741 Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion
## 34742 Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion
## 34743 Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34744 Unspecified fracture of shaft of left radius, subsequent encounter for closed fracture with malunion
## 34745 Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion
## 34746 Unspecified fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34747 Unspecified fracture of shaft of left radius, sequela
## 34748 Unspecified fracture of shaft of unspecified radius, initial encounter for closed fracture
## 34749 Unspecified fracture of shaft of unspecified radius, initial encounter for open fracture type I or II
## 34750 Unspecified fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34751 Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing
## 34752 Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 34753 Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34754 Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 34755 Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 34756 Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34757 Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion
## 34758 Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 34759 Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34760 Unspecified fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion
## 34761 Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 34762 Unspecified fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34763 Unspecified fracture of shaft of unspecified radius, sequela
## 34764 Greenstick fracture of shaft of radius, right arm, initial encounter for closed fracture
## 34765 Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with routine healing
## 34766 Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with delayed healing
## 34767 Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with nonunion
## 34768 Greenstick fracture of shaft of radius, right arm, subsequent encounter for fracture with malunion
## 34769 Greenstick fracture of shaft of radius, right arm, sequela
## 34770 Greenstick fracture of shaft of radius, left arm, initial encounter for closed fracture
## 34771 Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with routine healing
## 34772 Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with delayed healing
## 34773 Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with nonunion
## 34774 Greenstick fracture of shaft of radius, left arm, subsequent encounter for fracture with malunion
## 34775 Greenstick fracture of shaft of radius, left arm, sequela
## 34776 Greenstick fracture of shaft of radius, unspecified arm, initial encounter for closed fracture
## 34777 Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 34778 Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 34779 Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 34780 Greenstick fracture of shaft of radius, unspecified arm, subsequent encounter for fracture with malunion
## 34781 Greenstick fracture of shaft of radius, unspecified arm, sequela
## 34782 Displaced transverse fracture of shaft of right radius, initial encounter for closed fracture
## 34783 Displaced transverse fracture of shaft of right radius, initial encounter for open fracture type I or II
## 34784 Displaced transverse fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34785 Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing
## 34786 Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing
## 34787 Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34788 Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing
## 34789 Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 34790 Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34791 Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion
## 34792 Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion
## 34793 Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34794 Displaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with malunion
## 34795 Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion
## 34796 Displaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34797 Displaced transverse fracture of shaft of right radius, sequela
## 34798 Displaced transverse fracture of shaft of left radius, initial encounter for closed fracture
## 34799 Displaced transverse fracture of shaft of left radius, initial encounter for open fracture type I or II
## 34800 Displaced transverse fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34801 Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing
## 34802 Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing
## 34803 Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34804 Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing
## 34805 Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 34806 Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34807 Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion
## 34808 Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion
## 34809 Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34810 Displaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with malunion
## 34811 Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion
## 34812 Displaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34813 Displaced transverse fracture of shaft of left radius, sequela
## 34814 Displaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture
## 34815 Displaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type I or II
## 34816 Displaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34817 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing
## 34818 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 34819 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34820 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 34821 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 34822 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34823 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion
## 34824 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 34825 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34826 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion
## 34827 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 34828 Displaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34829 Displaced transverse fracture of shaft of unspecified radius, sequela
## 34830 Nondisplaced transverse fracture of shaft of right radius, initial encounter for closed fracture
## 34831 Nondisplaced transverse fracture of shaft of right radius, initial encounter for open fracture type I or II
## 34832 Nondisplaced transverse fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34833 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing
## 34834 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing
## 34835 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34836 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing
## 34837 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 34838 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34839 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion
## 34840 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion
## 34841 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34842 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for closed fracture with malunion
## 34843 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion
## 34844 Nondisplaced transverse fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34845 Nondisplaced transverse fracture of shaft of right radius, sequela
## 34846 Nondisplaced transverse fracture of shaft of left radius, initial encounter for closed fracture
## 34847 Nondisplaced transverse fracture of shaft of left radius, initial encounter for open fracture type I or II
## 34848 Nondisplaced transverse fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34849 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing
## 34850 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing
## 34851 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34852 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing
## 34853 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 34854 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34855 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion
## 34856 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion
## 34857 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34858 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for closed fracture with malunion
## 34859 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion
## 34860 Nondisplaced transverse fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34861 Nondisplaced transverse fracture of shaft of left radius, sequela
## 34862 Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for closed fracture
## 34863 Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type I or II
## 34864 Nondisplaced transverse fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34865 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing
## 34866 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 34867 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34868 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 34869 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 34870 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34871 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion
## 34872 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 34873 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34874 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion
## 34875 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 34876 Nondisplaced transverse fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34877 Nondisplaced transverse fracture of shaft of unspecified radius, sequela
## 34878 Displaced oblique fracture of shaft of right radius, initial encounter for closed fracture
## 34879 Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II
## 34880 Displaced oblique fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34881 Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing
## 34882 Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing
## 34883 Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34884 Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing
## 34885 Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 34886 Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34887 Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion
## 34888 Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion
## 34889 Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34890 Displaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with malunion
## 34891 Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion
## 34892 Displaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34893 Displaced oblique fracture of shaft of right radius, sequela
## 34894 Displaced oblique fracture of shaft of left radius, initial encounter for closed fracture
## 34895 Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II
## 34896 Displaced oblique fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34897 Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing
## 34898 Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing
## 34899 Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34900 Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing
## 34901 Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 34902 Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34903 Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion
## 34904 Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion
## 34905 Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34906 Displaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with malunion
## 34907 Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion
## 34908 Displaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34909 Displaced oblique fracture of shaft of left radius, sequela
## 34910 Displaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture
## 34911 Displaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type I or II
## 34912 Displaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34913 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing
## 34914 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 34915 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34916 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 34917 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 34918 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34919 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion
## 34920 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 34921 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34922 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion
## 34923 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 34924 Displaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34925 Displaced oblique fracture of shaft of unspecified radius, sequela
## 34926 Nondisplaced oblique fracture of shaft of right radius, initial encounter for closed fracture
## 34927 Nondisplaced oblique fracture of shaft of right radius, initial encounter for open fracture type I or II
## 34928 Nondisplaced oblique fracture of shaft of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34929 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with routine healing
## 34930 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with routine healing
## 34931 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34932 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with delayed healing
## 34933 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 34934 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34935 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with nonunion
## 34936 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with nonunion
## 34937 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34938 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for closed fracture with malunion
## 34939 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type I or II with malunion
## 34940 Nondisplaced oblique fracture of shaft of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34941 Nondisplaced oblique fracture of shaft of right radius, sequela
## 34942 Nondisplaced oblique fracture of shaft of left radius, initial encounter for closed fracture
## 34943 Nondisplaced oblique fracture of shaft of left radius, initial encounter for open fracture type I or II
## 34944 Nondisplaced oblique fracture of shaft of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34945 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with routine healing
## 34946 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with routine healing
## 34947 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34948 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with delayed healing
## 34949 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 34950 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34951 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with nonunion
## 34952 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with nonunion
## 34953 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34954 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for closed fracture with malunion
## 34955 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type I or II with malunion
## 34956 Nondisplaced oblique fracture of shaft of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34957 Nondisplaced oblique fracture of shaft of left radius, sequela
## 34958 Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for closed fracture
## 34959 Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type I or II
## 34960 Nondisplaced oblique fracture of shaft of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34961 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with routine healing
## 34962 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 34963 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34964 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 34965 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 34966 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34967 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with nonunion
## 34968 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 34969 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34970 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for closed fracture with malunion
## 34971 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 34972 Nondisplaced oblique fracture of shaft of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34973 Nondisplaced oblique fracture of shaft of unspecified radius, sequela
## 34974 Displaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture
## 34975 Displaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type I or II
## 34976 Displaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34977 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing
## 34978 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing
## 34979 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34980 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing
## 34981 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 34982 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34983 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion
## 34984 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion
## 34985 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 34986 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion
## 34987 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion
## 34988 Displaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 34989 Displaced spiral fracture of shaft of radius, right arm, sequela
## 34990 Displaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture
## 34991 Displaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type I or II
## 34992 Displaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 34993 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing
## 34994 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing
## 34995 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 34996 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing
## 34997 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 34998 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 34999 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion
## 35000 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion
## 35001 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35002 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion
## 35003 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion
## 35004 Displaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35005 Displaced spiral fracture of shaft of radius, left arm, sequela
## 35006 Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture
## 35007 Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II
## 35008 Displaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35009 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing
## 35010 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 35011 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35012 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 35013 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 35014 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35015 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion
## 35016 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 35017 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35018 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion
## 35019 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 35020 Displaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35021 Displaced spiral fracture of shaft of radius, unspecified arm, sequela
## 35022 Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for closed fracture
## 35023 Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type I or II
## 35024 Nondisplaced spiral fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35025 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing
## 35026 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing
## 35027 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35028 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing
## 35029 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 35030 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35031 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion
## 35032 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion
## 35033 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35034 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion
## 35035 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion
## 35036 Nondisplaced spiral fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35037 Nondisplaced spiral fracture of shaft of radius, right arm, sequela
## 35038 Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for closed fracture
## 35039 Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type I or II
## 35040 Nondisplaced spiral fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35041 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing
## 35042 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing
## 35043 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35044 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing
## 35045 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 35046 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35047 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion
## 35048 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion
## 35049 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35050 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion
## 35051 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion
## 35052 Nondisplaced spiral fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35053 Nondisplaced spiral fracture of shaft of radius, left arm, sequela
## 35054 Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for closed fracture
## 35055 Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II
## 35056 Nondisplaced spiral fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35057 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing
## 35058 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 35059 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35060 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 35061 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 35062 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35063 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion
## 35064 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 35065 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35066 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion
## 35067 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 35068 Nondisplaced spiral fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35069 Nondisplaced spiral fracture of shaft of radius, unspecified arm, sequela
## 35070 Displaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture
## 35071 Displaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type I or II
## 35072 Displaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35073 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing
## 35074 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing
## 35075 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35076 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing
## 35077 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 35078 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35079 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion
## 35080 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion
## 35081 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35082 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion
## 35083 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion
## 35084 Displaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35085 Displaced comminuted fracture of shaft of radius, right arm, sequela
## 35086 Displaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture
## 35087 Displaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type I or II
## 35088 Displaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35089 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing
## 35090 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing
## 35091 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35092 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing
## 35093 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 35094 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35095 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion
## 35096 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion
## 35097 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35098 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion
## 35099 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion
## 35100 Displaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35101 Displaced comminuted fracture of shaft of radius, left arm, sequela
## 35102 Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for closed fracture
## 35103 Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II
## 35104 Displaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35105 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing
## 35106 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 35107 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35108 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 35109 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 35110 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35111 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion
## 35112 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 35113 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35114 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion
## 35115 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 35116 Displaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35117 Displaced comminuted fracture of shaft of radius, unspecified arm, sequela
## 35118 Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for closed fracture
## 35119 Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type I or II
## 35120 Nondisplaced comminuted fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35121 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing
## 35122 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing
## 35123 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35124 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing
## 35125 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 35126 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35127 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion
## 35128 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion
## 35129 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35130 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion
## 35131 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion
## 35132 Nondisplaced comminuted fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35133 Nondisplaced comminuted fracture of shaft of radius, right arm, sequela
## 35134 Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for closed fracture
## 35135 Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type I or II
## 35136 Nondisplaced comminuted fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35137 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing
## 35138 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing
## 35139 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35140 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing
## 35141 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 35142 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35143 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion
## 35144 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion
## 35145 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35146 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion
## 35147 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion
## 35148 Nondisplaced comminuted fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35149 Nondisplaced comminuted fracture of shaft of radius, left arm, sequela
## 35150 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for closed fracture
## 35151 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II
## 35152 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35153 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing
## 35154 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 35155 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35156 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 35157 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 35158 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35159 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion
## 35160 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 35161 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35162 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion
## 35163 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 35164 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35165 Nondisplaced comminuted fracture of shaft of radius, unspecified arm, sequela
## 35166 Displaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture
## 35167 Displaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type I or II
## 35168 Displaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35169 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing
## 35170 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing
## 35171 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35172 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing
## 35173 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 35174 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35175 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion
## 35176 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion
## 35177 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35178 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion
## 35179 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion
## 35180 Displaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35181 Displaced segmental fracture of shaft of radius, right arm, sequela
## 35182 Displaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture
## 35183 Displaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type I or II
## 35184 Displaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35185 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing
## 35186 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing
## 35187 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35188 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing
## 35189 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 35190 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35191 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion
## 35192 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion
## 35193 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35194 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion
## 35195 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion
## 35196 Displaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35197 Displaced segmental fracture of shaft of radius, left arm, sequela
## 35198 Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for closed fracture
## 35199 Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II
## 35200 Displaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35201 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing
## 35202 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 35203 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35204 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 35205 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 35206 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35207 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion
## 35208 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 35209 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35210 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion
## 35211 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 35212 Displaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35213 Displaced segmental fracture of shaft of radius, unspecified arm, sequela
## 35214 Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for closed fracture
## 35215 Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type I or II
## 35216 Nondisplaced segmental fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35217 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing
## 35218 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing
## 35219 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35220 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing
## 35221 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 35222 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35223 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion
## 35224 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion
## 35225 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35226 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion
## 35227 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion
## 35228 Nondisplaced segmental fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35229 Nondisplaced segmental fracture of shaft of radius, right arm, sequela
## 35230 Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for closed fracture
## 35231 Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type I or II
## 35232 Nondisplaced segmental fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35233 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing
## 35234 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing
## 35235 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35236 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing
## 35237 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 35238 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35239 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion
## 35240 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion
## 35241 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35242 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion
## 35243 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion
## 35244 Nondisplaced segmental fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35245 Nondisplaced segmental fracture of shaft of radius, left arm, sequela
## 35246 Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for closed fracture
## 35247 Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II
## 35248 Nondisplaced segmental fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35249 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing
## 35250 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 35251 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35252 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 35253 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 35254 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35255 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion
## 35256 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 35257 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35258 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion
## 35259 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 35260 Nondisplaced segmental fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35261 Nondisplaced segmental fracture of shaft of radius, unspecified arm, sequela
## 35262 Galeazzi's fracture of right radius, initial encounter for closed fracture
## 35263 Galeazzi's fracture of right radius, initial encounter for open fracture type I or II
## 35264 Galeazzi's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35265 Galeazzi's fracture of right radius, subsequent encounter for closed fracture with routine healing
## 35266 Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35267 Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35268 Galeazzi's fracture of right radius, subsequent encounter for closed fracture with delayed healing
## 35269 Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35270 Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35271 Galeazzi's fracture of right radius, subsequent encounter for closed fracture with nonunion
## 35272 Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35273 Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35274 Galeazzi's fracture of right radius, subsequent encounter for closed fracture with malunion
## 35275 Galeazzi's fracture of right radius, subsequent encounter for open fracture type I or II with malunion
## 35276 Galeazzi's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35277 Galeazzi's fracture of right radius, sequela
## 35278 Galeazzi's fracture of left radius, initial encounter for closed fracture
## 35279 Galeazzi's fracture of left radius, initial encounter for open fracture type I or II
## 35280 Galeazzi's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35281 Galeazzi's fracture of left radius, subsequent encounter for closed fracture with routine healing
## 35282 Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35283 Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35284 Galeazzi's fracture of left radius, subsequent encounter for closed fracture with delayed healing
## 35285 Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35286 Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35287 Galeazzi's fracture of left radius, subsequent encounter for closed fracture with nonunion
## 35288 Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35289 Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35290 Galeazzi's fracture of left radius, subsequent encounter for closed fracture with malunion
## 35291 Galeazzi's fracture of left radius, subsequent encounter for open fracture type I or II with malunion
## 35292 Galeazzi's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35293 Galeazzi's fracture of left radius, sequela
## 35294 Galeazzi's fracture of unspecified radius, initial encounter for closed fracture
## 35295 Galeazzi's fracture of unspecified radius, initial encounter for open fracture type I or II
## 35296 Galeazzi's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35297 Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35298 Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35299 Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35300 Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35301 Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35302 Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35303 Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35304 Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35305 Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35306 Galeazzi's fracture of unspecified radius, subsequent encounter for closed fracture with malunion
## 35307 Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35308 Galeazzi's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35309 Galeazzi's fracture of unspecified radius, sequela
## 35310 Bent bone of right radius, initial encounter for closed fracture
## 35311 Bent bone of right radius, initial encounter for open fracture type I or II
## 35312 Bent bone of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35313 Bent bone of right radius, subsequent encounter for closed fracture with routine healing
## 35314 Bent bone of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35315 Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35316 Bent bone of right radius, subsequent encounter for closed fracture with delayed healing
## 35317 Bent bone of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35318 Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35319 Bent bone of right radius, subsequent encounter for closed fracture with nonunion
## 35320 Bent bone of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35321 Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35322 Bent bone of right radius, subsequent encounter for closed fracture with malunion
## 35323 Bent bone of right radius, subsequent encounter for open fracture type I or II with malunion
## 35324 Bent bone of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35325 Bent bone of right radius, sequela
## 35326 Bent bone of left radius, initial encounter for closed fracture
## 35327 Bent bone of left radius, initial encounter for open fracture type I or II
## 35328 Bent bone of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35329 Bent bone of left radius, subsequent encounter for closed fracture with routine healing
## 35330 Bent bone of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35331 Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35332 Bent bone of left radius, subsequent encounter for closed fracture with delayed healing
## 35333 Bent bone of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35334 Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35335 Bent bone of left radius, subsequent encounter for closed fracture with nonunion
## 35336 Bent bone of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35337 Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35338 Bent bone of left radius, subsequent encounter for closed fracture with malunion
## 35339 Bent bone of left radius, subsequent encounter for open fracture type I or II with malunion
## 35340 Bent bone of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35341 Bent bone of left radius, sequela
## 35342 Bent bone of unspecified radius, initial encounter for closed fracture
## 35343 Bent bone of unspecified radius, initial encounter for open fracture type I or II
## 35344 Bent bone of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35345 Bent bone of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35346 Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35347 Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35348 Bent bone of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35349 Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35350 Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35351 Bent bone of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35352 Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35353 Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35354 Bent bone of unspecified radius, subsequent encounter for closed fracture with malunion
## 35355 Bent bone of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35356 Bent bone of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35357 Bent bone of unspecified radius, sequela
## 35358 Other fracture of shaft of radius, right arm, initial encounter for closed fracture
## 35359 Other fracture of shaft of radius, right arm, initial encounter for open fracture type I or II
## 35360 Other fracture of shaft of radius, right arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35361 Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with routine healing
## 35362 Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with routine healing
## 35363 Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35364 Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with delayed healing
## 35365 Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with delayed healing
## 35366 Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35367 Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with nonunion
## 35368 Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with nonunion
## 35369 Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35370 Other fracture of shaft of radius, right arm, subsequent encounter for closed fracture with malunion
## 35371 Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type I or II with malunion
## 35372 Other fracture of shaft of radius, right arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35373 Other fracture of shaft of radius, right arm, sequela
## 35374 Other fracture of shaft of radius, left arm, initial encounter for closed fracture
## 35375 Other fracture of shaft of radius, left arm, initial encounter for open fracture type I or II
## 35376 Other fracture of shaft of radius, left arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35377 Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with routine healing
## 35378 Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with routine healing
## 35379 Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35380 Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with delayed healing
## 35381 Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with delayed healing
## 35382 Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35383 Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with nonunion
## 35384 Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with nonunion
## 35385 Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35386 Other fracture of shaft of radius, left arm, subsequent encounter for closed fracture with malunion
## 35387 Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type I or II with malunion
## 35388 Other fracture of shaft of radius, left arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35389 Other fracture of shaft of radius, left arm, sequela
## 35390 Other fracture of shaft of radius, unspecified arm, initial encounter for closed fracture
## 35391 Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type I or II
## 35392 Other fracture of shaft of radius, unspecified arm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35393 Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with routine healing
## 35394 Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with routine healing
## 35395 Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35396 Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with delayed healing
## 35397 Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with delayed healing
## 35398 Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35399 Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with nonunion
## 35400 Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with nonunion
## 35401 Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35402 Other fracture of shaft of radius, unspecified arm, subsequent encounter for closed fracture with malunion
## 35403 Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type I or II with malunion
## 35404 Other fracture of shaft of radius, unspecified arm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35405 Other fracture of shaft of radius, unspecified arm, sequela
## 35406 Unspecified fracture of the lower end of right radius, initial encounter for closed fracture
## 35407 Unspecified fracture of the lower end of right radius, initial encounter for open fracture type I or II
## 35408 Unspecified fracture of the lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35409 Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with routine healing
## 35410 Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35411 Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35412 Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with delayed healing
## 35413 Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35414 Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35415 Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with nonunion
## 35416 Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35417 Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35418 Unspecified fracture of the lower end of right radius, subsequent encounter for closed fracture with malunion
## 35419 Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type I or II with malunion
## 35420 Unspecified fracture of the lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35421 Unspecified fracture of the lower end of right radius, sequela
## 35422 Unspecified fracture of the lower end of left radius, initial encounter for closed fracture
## 35423 Unspecified fracture of the lower end of left radius, initial encounter for open fracture type I or II
## 35424 Unspecified fracture of the lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35425 Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with routine healing
## 35426 Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35427 Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35428 Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with delayed healing
## 35429 Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35430 Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35431 Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with nonunion
## 35432 Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35433 Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35434 Unspecified fracture of the lower end of left radius, subsequent encounter for closed fracture with malunion
## 35435 Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type I or II with malunion
## 35436 Unspecified fracture of the lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35437 Unspecified fracture of the lower end of left radius, sequela
## 35438 Unspecified fracture of the lower end of unspecified radius, initial encounter for closed fracture
## 35439 Unspecified fracture of the lower end of unspecified radius, initial encounter for open fracture type I or II
## 35440 Unspecified fracture of the lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35441 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35442 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35443 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35444 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35445 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35446 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35447 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35448 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35449 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35450 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for closed fracture with malunion
## 35451 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35452 Unspecified fracture of the lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35453 Unspecified fracture of the lower end of unspecified radius, sequela
## 35454 Displaced fracture of right radial styloid process, initial encounter for closed fracture
## 35455 Displaced fracture of right radial styloid process, initial encounter for open fracture type I or II
## 35456 Displaced fracture of right radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35457 Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with routine healing
## 35458 Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35459 Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35460 Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with delayed healing
## 35461 Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35462 Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35463 Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with nonunion
## 35464 Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35465 Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35466 Displaced fracture of right radial styloid process, subsequent encounter for closed fracture with malunion
## 35467 Displaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with malunion
## 35468 Displaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35469 Displaced fracture of right radial styloid process, sequela
## 35470 Displaced fracture of left radial styloid process, initial encounter for closed fracture
## 35471 Displaced fracture of left radial styloid process, initial encounter for open fracture type I or II
## 35472 Displaced fracture of left radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35473 Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with routine healing
## 35474 Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35475 Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35476 Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with delayed healing
## 35477 Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35478 Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35479 Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with nonunion
## 35480 Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35481 Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35482 Displaced fracture of left radial styloid process, subsequent encounter for closed fracture with malunion
## 35483 Displaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with malunion
## 35484 Displaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35485 Displaced fracture of left radial styloid process, sequela
## 35486 Displaced fracture of unspecified radial styloid process, initial encounter for closed fracture
## 35487 Displaced fracture of unspecified radial styloid process, initial encounter for open fracture type I or II
## 35488 Displaced fracture of unspecified radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35489 Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with routine healing
## 35490 Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35491 Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35492 Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with delayed healing
## 35493 Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35494 Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35495 Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with nonunion
## 35496 Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35497 Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35498 Displaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with malunion
## 35499 Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with malunion
## 35500 Displaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35501 Displaced fracture of unspecified radial styloid process, sequela
## 35502 Nondisplaced fracture of right radial styloid process, initial encounter for closed fracture
## 35503 Nondisplaced fracture of right radial styloid process, initial encounter for open fracture type I or II
## 35504 Nondisplaced fracture of right radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35505 Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with routine healing
## 35506 Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35507 Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35508 Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with delayed healing
## 35509 Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35510 Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35511 Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with nonunion
## 35512 Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35513 Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35514 Nondisplaced fracture of right radial styloid process, subsequent encounter for closed fracture with malunion
## 35515 Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type I or II with malunion
## 35516 Nondisplaced fracture of right radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35517 Nondisplaced fracture of right radial styloid process, sequela
## 35518 Nondisplaced fracture of left radial styloid process, initial encounter for closed fracture
## 35519 Nondisplaced fracture of left radial styloid process, initial encounter for open fracture type I or II
## 35520 Nondisplaced fracture of left radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35521 Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with routine healing
## 35522 Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35523 Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35524 Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with delayed healing
## 35525 Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35526 Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35527 Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with nonunion
## 35528 Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35529 Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35530 Nondisplaced fracture of left radial styloid process, subsequent encounter for closed fracture with malunion
## 35531 Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type I or II with malunion
## 35532 Nondisplaced fracture of left radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35533 Nondisplaced fracture of left radial styloid process, sequela
## 35534 Nondisplaced fracture of unspecified radial styloid process, initial encounter for closed fracture
## 35535 Nondisplaced fracture of unspecified radial styloid process, initial encounter for open fracture type I or II
## 35536 Nondisplaced fracture of unspecified radial styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35537 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with routine healing
## 35538 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35539 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35540 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with delayed healing
## 35541 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35542 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35543 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with nonunion
## 35544 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35545 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35546 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for closed fracture with malunion
## 35547 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type I or II with malunion
## 35548 Nondisplaced fracture of unspecified radial styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35549 Nondisplaced fracture of unspecified radial styloid process, sequela
## 35550 Torus fracture of lower end of right radius, initial encounter for closed fracture
## 35551 Torus fracture of lower end of right radius, subsequent encounter for fracture with routine healing
## 35552 Torus fracture of lower end of right radius, subsequent encounter for fracture with delayed healing
## 35553 Torus fracture of lower end of right radius, subsequent encounter for fracture with nonunion
## 35554 Torus fracture of lower end of right radius, subsequent encounter for fracture with malunion
## 35555 Torus fracture of lower end of right radius, sequela
## 35556 Torus fracture of lower end of left radius, initial encounter for closed fracture
## 35557 Torus fracture of lower end of left radius, subsequent encounter for fracture with routine healing
## 35558 Torus fracture of lower end of left radius, subsequent encounter for fracture with delayed healing
## 35559 Torus fracture of lower end of left radius, subsequent encounter for fracture with nonunion
## 35560 Torus fracture of lower end of left radius, subsequent encounter for fracture with malunion
## 35561 Torus fracture of lower end of left radius, sequela
## 35562 Torus fracture of lower end of unspecified radius, initial encounter for closed fracture
## 35563 Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with routine healing
## 35564 Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with delayed healing
## 35565 Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with nonunion
## 35566 Torus fracture of lower end of unspecified radius, subsequent encounter for fracture with malunion
## 35567 Torus fracture of lower end of unspecified radius, sequela
## 35568 Colles' fracture of right radius, initial encounter for closed fracture
## 35569 Colles' fracture of right radius, initial encounter for open fracture type I or II
## 35570 Colles' fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35571 Colles' fracture of right radius, subsequent encounter for closed fracture with routine healing
## 35572 Colles' fracture of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35573 Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35574 Colles' fracture of right radius, subsequent encounter for closed fracture with delayed healing
## 35575 Colles' fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35576 Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35577 Colles' fracture of right radius, subsequent encounter for closed fracture with nonunion
## 35578 Colles' fracture of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35579 Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35580 Colles' fracture of right radius, subsequent encounter for closed fracture with malunion
## 35581 Colles' fracture of right radius, subsequent encounter for open fracture type I or II with malunion
## 35582 Colles' fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35583 Colles' fracture of right radius, sequela
## 35584 Colles' fracture of left radius, initial encounter for closed fracture
## 35585 Colles' fracture of left radius, initial encounter for open fracture type I or II
## 35586 Colles' fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35587 Colles' fracture of left radius, subsequent encounter for closed fracture with routine healing
## 35588 Colles' fracture of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35589 Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35590 Colles' fracture of left radius, subsequent encounter for closed fracture with delayed healing
## 35591 Colles' fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35592 Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35593 Colles' fracture of left radius, subsequent encounter for closed fracture with nonunion
## 35594 Colles' fracture of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35595 Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35596 Colles' fracture of left radius, subsequent encounter for closed fracture with malunion
## 35597 Colles' fracture of left radius, subsequent encounter for open fracture type I or II with malunion
## 35598 Colles' fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35599 Colles' fracture of left radius, sequela
## 35600 Colles' fracture of unspecified radius, initial encounter for closed fracture
## 35601 Colles' fracture of unspecified radius, initial encounter for open fracture type I or II
## 35602 Colles' fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35603 Colles' fracture of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35604 Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35605 Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35606 Colles' fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35607 Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35608 Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35609 Colles' fracture of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35610 Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35611 Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35612 Colles' fracture of unspecified radius, subsequent encounter for closed fracture with malunion
## 35613 Colles' fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35614 Colles' fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35615 Colles' fracture of unspecified radius, sequela
## 35616 Smith's fracture of right radius, initial encounter for closed fracture
## 35617 Smith's fracture of right radius, initial encounter for open fracture type I or II
## 35618 Smith's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35619 Smith's fracture of right radius, subsequent encounter for closed fracture with routine healing
## 35620 Smith's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35621 Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35622 Smith's fracture of right radius, subsequent encounter for closed fracture with delayed healing
## 35623 Smith's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35624 Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35625 Smith's fracture of right radius, subsequent encounter for closed fracture with nonunion
## 35626 Smith's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35627 Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35628 Smith's fracture of right radius, subsequent encounter for closed fracture with malunion
## 35629 Smith's fracture of right radius, subsequent encounter for open fracture type I or II with malunion
## 35630 Smith's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35631 Smith's fracture of right radius, sequela
## 35632 Smith's fracture of left radius, initial encounter for closed fracture
## 35633 Smith's fracture of left radius, initial encounter for open fracture type I or II
## 35634 Smith's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35635 Smith's fracture of left radius, subsequent encounter for closed fracture with routine healing
## 35636 Smith's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35637 Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35638 Smith's fracture of left radius, subsequent encounter for closed fracture with delayed healing
## 35639 Smith's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35640 Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35641 Smith's fracture of left radius, subsequent encounter for closed fracture with nonunion
## 35642 Smith's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35643 Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35644 Smith's fracture of left radius, subsequent encounter for closed fracture with malunion
## 35645 Smith's fracture of left radius, subsequent encounter for open fracture type I or II with malunion
## 35646 Smith's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35647 Smith's fracture of left radius, sequela
## 35648 Smith's fracture of unspecified radius, initial encounter for closed fracture
## 35649 Smith's fracture of unspecified radius, initial encounter for open fracture type I or II
## 35650 Smith's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35651 Smith's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35652 Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35653 Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35654 Smith's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35655 Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35656 Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35657 Smith's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35658 Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35659 Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35660 Smith's fracture of unspecified radius, subsequent encounter for closed fracture with malunion
## 35661 Smith's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35662 Smith's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35663 Smith's fracture of unspecified radius, sequela
## 35664 Other extraarticular fracture of lower end of right radius, initial encounter for closed fracture
## 35665 Other extraarticular fracture of lower end of right radius, initial encounter for open fracture type I or II
## 35666 Other extraarticular fracture of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35667 Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with routine healing
## 35668 Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35669 Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35670 Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with delayed healing
## 35671 Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35672 Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35673 Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with nonunion
## 35674 Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35675 Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35676 Other extraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with malunion
## 35677 Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with malunion
## 35678 Other extraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35679 Other extraarticular fracture of lower end of right radius, sequela
## 35680 Other extraarticular fracture of lower end of left radius, initial encounter for closed fracture
## 35681 Other extraarticular fracture of lower end of left radius, initial encounter for open fracture type I or II
## 35682 Other extraarticular fracture of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35683 Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with routine healing
## 35684 Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35685 Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35686 Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with delayed healing
## 35687 Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35688 Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35689 Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with nonunion
## 35690 Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35691 Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35692 Other extraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with malunion
## 35693 Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with malunion
## 35694 Other extraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35695 Other extraarticular fracture of lower end of left radius, sequela
## 35696 Other extraarticular fracture of lower end of unspecified radius, initial encounter for closed fracture
## 35697 Other extraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II
## 35698 Other extraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35699 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35700 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35701 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35702 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35703 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35704 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35705 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35706 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35707 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35708 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with malunion
## 35709 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35710 Other extraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35711 Other extraarticular fracture of lower end of unspecified radius, sequela
## 35712 Barton's fracture of right radius, initial encounter for closed fracture
## 35713 Barton's fracture of right radius, initial encounter for open fracture type I or II
## 35714 Barton's fracture of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35715 Barton's fracture of right radius, subsequent encounter for closed fracture with routine healing
## 35716 Barton's fracture of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35717 Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35718 Barton's fracture of right radius, subsequent encounter for closed fracture with delayed healing
## 35719 Barton's fracture of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35720 Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35721 Barton's fracture of right radius, subsequent encounter for closed fracture with nonunion
## 35722 Barton's fracture of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35723 Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35724 Barton's fracture of right radius, subsequent encounter for closed fracture with malunion
## 35725 Barton's fracture of right radius, subsequent encounter for open fracture type I or II with malunion
## 35726 Barton's fracture of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35727 Barton's fracture of right radius, sequela
## 35728 Barton's fracture of left radius, initial encounter for closed fracture
## 35729 Barton's fracture of left radius, initial encounter for open fracture type I or II
## 35730 Barton's fracture of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35731 Barton's fracture of left radius, subsequent encounter for closed fracture with routine healing
## 35732 Barton's fracture of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35733 Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35734 Barton's fracture of left radius, subsequent encounter for closed fracture with delayed healing
## 35735 Barton's fracture of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35736 Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35737 Barton's fracture of left radius, subsequent encounter for closed fracture with nonunion
## 35738 Barton's fracture of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35739 Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35740 Barton's fracture of left radius, subsequent encounter for closed fracture with malunion
## 35741 Barton's fracture of left radius, subsequent encounter for open fracture type I or II with malunion
## 35742 Barton's fracture of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35743 Barton's fracture of left radius, sequela
## 35744 Barton's fracture of unspecified radius, initial encounter for closed fracture
## 35745 Barton's fracture of unspecified radius, initial encounter for open fracture type I or II
## 35746 Barton's fracture of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35747 Barton's fracture of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35748 Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35749 Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35750 Barton's fracture of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35751 Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35752 Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35753 Barton's fracture of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35754 Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35755 Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35756 Barton's fracture of unspecified radius, subsequent encounter for closed fracture with malunion
## 35757 Barton's fracture of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35758 Barton's fracture of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35759 Barton's fracture of unspecified radius, sequela
## 35760 Other intraarticular fracture of lower end of right radius, initial encounter for closed fracture
## 35761 Other intraarticular fracture of lower end of right radius, initial encounter for open fracture type I or II
## 35762 Other intraarticular fracture of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35763 Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with routine healing
## 35764 Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35765 Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35766 Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with delayed healing
## 35767 Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35768 Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35769 Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with nonunion
## 35770 Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35771 Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35772 Other intraarticular fracture of lower end of right radius, subsequent encounter for closed fracture with malunion
## 35773 Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type I or II with malunion
## 35774 Other intraarticular fracture of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35775 Other intraarticular fracture of lower end of right radius, sequela
## 35776 Other intraarticular fracture of lower end of left radius, initial encounter for closed fracture
## 35777 Other intraarticular fracture of lower end of left radius, initial encounter for open fracture type I or II
## 35778 Other intraarticular fracture of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35779 Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with routine healing
## 35780 Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35781 Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35782 Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with delayed healing
## 35783 Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35784 Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35785 Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with nonunion
## 35786 Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35787 Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35788 Other intraarticular fracture of lower end of left radius, subsequent encounter for closed fracture with malunion
## 35789 Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type I or II with malunion
## 35790 Other intraarticular fracture of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35791 Other intraarticular fracture of lower end of left radius, sequela
## 35792 Other intraarticular fracture of lower end of unspecified radius, initial encounter for closed fracture
## 35793 Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type I or II
## 35794 Other intraarticular fracture of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35795 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35796 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35797 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35798 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35799 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35800 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35801 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35802 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35803 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35804 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for closed fracture with malunion
## 35805 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35806 Other intraarticular fracture of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35807 Other intraarticular fracture of lower end of unspecified radius, sequela
## 35808 Other fractures of lower end of right radius, initial encounter for closed fracture
## 35809 Other fractures of lower end of right radius, initial encounter for open fracture type I or II
## 35810 Other fractures of lower end of right radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35811 Other fractures of lower end of right radius, subsequent encounter for closed fracture with routine healing
## 35812 Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with routine healing
## 35813 Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35814 Other fractures of lower end of right radius, subsequent encounter for closed fracture with delayed healing
## 35815 Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with delayed healing
## 35816 Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35817 Other fractures of lower end of right radius, subsequent encounter for closed fracture with nonunion
## 35818 Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with nonunion
## 35819 Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35820 Other fractures of lower end of right radius, subsequent encounter for closed fracture with malunion
## 35821 Other fractures of lower end of right radius, subsequent encounter for open fracture type I or II with malunion
## 35822 Other fractures of lower end of right radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35823 Other fractures of lower end of right radius, sequela
## 35824 Other fractures of lower end of left radius, initial encounter for closed fracture
## 35825 Other fractures of lower end of left radius, initial encounter for open fracture type I or II
## 35826 Other fractures of lower end of left radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35827 Other fractures of lower end of left radius, subsequent encounter for closed fracture with routine healing
## 35828 Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with routine healing
## 35829 Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35830 Other fractures of lower end of left radius, subsequent encounter for closed fracture with delayed healing
## 35831 Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with delayed healing
## 35832 Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35833 Other fractures of lower end of left radius, subsequent encounter for closed fracture with nonunion
## 35834 Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with nonunion
## 35835 Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35836 Other fractures of lower end of left radius, subsequent encounter for closed fracture with malunion
## 35837 Other fractures of lower end of left radius, subsequent encounter for open fracture type I or II with malunion
## 35838 Other fractures of lower end of left radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35839 Other fractures of lower end of left radius, sequela
## 35840 Other fractures of lower end of unspecified radius, initial encounter for closed fracture
## 35841 Other fractures of lower end of unspecified radius, initial encounter for open fracture type I or II
## 35842 Other fractures of lower end of unspecified radius, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35843 Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with routine healing
## 35844 Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with routine healing
## 35845 Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35846 Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with delayed healing
## 35847 Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with delayed healing
## 35848 Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35849 Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with nonunion
## 35850 Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with nonunion
## 35851 Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35852 Other fractures of lower end of unspecified radius, subsequent encounter for closed fracture with malunion
## 35853 Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type I or II with malunion
## 35854 Other fractures of lower end of unspecified radius, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35855 Other fractures of lower end of unspecified radius, sequela
## 35856 Unspecified fracture of lower end of right ulna, initial encounter for closed fracture
## 35857 Unspecified fracture of lower end of right ulna, initial encounter for open fracture type I or II
## 35858 Unspecified fracture of lower end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35859 Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with routine healing
## 35860 Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 35861 Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35862 Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with delayed healing
## 35863 Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 35864 Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35865 Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion
## 35866 Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 35867 Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35868 Unspecified fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion
## 35869 Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with malunion
## 35870 Unspecified fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35871 Unspecified fracture of lower end of right ulna, sequela
## 35872 Unspecified fracture of lower end of left ulna, initial encounter for closed fracture
## 35873 Unspecified fracture of lower end of left ulna, initial encounter for open fracture type I or II
## 35874 Unspecified fracture of lower end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35875 Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with routine healing
## 35876 Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 35877 Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35878 Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with delayed healing
## 35879 Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 35880 Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35881 Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion
## 35882 Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 35883 Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35884 Unspecified fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion
## 35885 Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with malunion
## 35886 Unspecified fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35887 Unspecified fracture of lower end of left ulna, sequela
## 35888 Unspecified fracture of lower end of unspecified ulna, initial encounter for closed fracture
## 35889 Unspecified fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II
## 35890 Unspecified fracture of lower end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35891 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 35892 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 35893 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35894 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 35895 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 35896 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35897 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 35898 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 35899 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35900 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with malunion
## 35901 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 35902 Unspecified fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35903 Unspecified fracture of lower end of unspecified ulna, sequela
## 35904 Displaced fracture of right ulna styloid process, initial encounter for closed fracture
## 35905 Displaced fracture of right ulna styloid process, initial encounter for open fracture type I or II
## 35906 Displaced fracture of right ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35907 Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with routine healing
## 35908 Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35909 Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35910 Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with delayed healing
## 35911 Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35912 Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35913 Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with nonunion
## 35914 Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35915 Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35916 Displaced fracture of right ulna styloid process, subsequent encounter for closed fracture with malunion
## 35917 Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with malunion
## 35918 Displaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35919 Displaced fracture of right ulna styloid process, sequela
## 35920 Displaced fracture of left ulna styloid process, initial encounter for closed fracture
## 35921 Displaced fracture of left ulna styloid process, initial encounter for open fracture type I or II
## 35922 Displaced fracture of left ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35923 Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with routine healing
## 35924 Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35925 Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35926 Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with delayed healing
## 35927 Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35928 Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35929 Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with nonunion
## 35930 Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35931 Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35932 Displaced fracture of left ulna styloid process, subsequent encounter for closed fracture with malunion
## 35933 Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with malunion
## 35934 Displaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35935 Displaced fracture of left ulna styloid process, sequela
## 35936 Displaced fracture of unspecified ulna styloid process, initial encounter for closed fracture
## 35937 Displaced fracture of unspecified ulna styloid process, initial encounter for open fracture type I or II
## 35938 Displaced fracture of unspecified ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35939 Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with routine healing
## 35940 Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35941 Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35942 Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with delayed healing
## 35943 Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35944 Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35945 Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with nonunion
## 35946 Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35947 Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35948 Displaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with malunion
## 35949 Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with malunion
## 35950 Displaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35951 Displaced fracture of unspecified ulna styloid process, sequela
## 35952 Nondisplaced fracture of right ulna styloid process, initial encounter for closed fracture
## 35953 Nondisplaced fracture of right ulna styloid process, initial encounter for open fracture type I or II
## 35954 Nondisplaced fracture of right ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35955 Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with routine healing
## 35956 Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35957 Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35958 Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with delayed healing
## 35959 Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35960 Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35961 Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with nonunion
## 35962 Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35963 Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35964 Nondisplaced fracture of right ulna styloid process, subsequent encounter for closed fracture with malunion
## 35965 Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type I or II with malunion
## 35966 Nondisplaced fracture of right ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35967 Nondisplaced fracture of right ulna styloid process, sequela
## 35968 Nondisplaced fracture of left ulna styloid process, initial encounter for closed fracture
## 35969 Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type I or II
## 35970 Nondisplaced fracture of left ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35971 Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with routine healing
## 35972 Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35973 Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35974 Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with delayed healing
## 35975 Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35976 Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35977 Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with nonunion
## 35978 Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35979 Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35980 Nondisplaced fracture of left ulna styloid process, subsequent encounter for closed fracture with malunion
## 35981 Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type I or II with malunion
## 35982 Nondisplaced fracture of left ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35983 Nondisplaced fracture of left ulna styloid process, sequela
## 35984 Nondisplaced fracture of unspecified ulna styloid process, initial encounter for closed fracture
## 35985 Nondisplaced fracture of unspecified ulna styloid process, initial encounter for open fracture type I or II
## 35986 Nondisplaced fracture of unspecified ulna styloid process, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 35987 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with routine healing
## 35988 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with routine healing
## 35989 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 35990 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with delayed healing
## 35991 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with delayed healing
## 35992 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 35993 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with nonunion
## 35994 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with nonunion
## 35995 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 35996 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for closed fracture with malunion
## 35997 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type I or II with malunion
## 35998 Nondisplaced fracture of unspecified ulna styloid process, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 35999 Nondisplaced fracture of unspecified ulna styloid process, sequela
## 36000 Torus fracture of lower end of right ulna, initial encounter for closed fracture
## 36001 Torus fracture of lower end of right ulna, subsequent encounter for fracture with routine healing
## 36002 Torus fracture of lower end of right ulna, subsequent encounter for fracture with delayed healing
## 36003 Torus fracture of lower end of right ulna, subsequent encounter for fracture with nonunion
## 36004 Torus fracture of lower end of right ulna, subsequent encounter for fracture with malunion
## 36005 Torus fracture of lower end of right ulna, sequela
## 36006 Torus fracture of lower end of left ulna, initial encounter for closed fracture
## 36007 Torus fracture of lower end of left ulna, subsequent encounter for fracture with routine healing
## 36008 Torus fracture of lower end of left ulna, subsequent encounter for fracture with delayed healing
## 36009 Torus fracture of lower end of left ulna, subsequent encounter for fracture with nonunion
## 36010 Torus fracture of lower end of left ulna, subsequent encounter for fracture with malunion
## 36011 Torus fracture of lower end of left ulna, sequela
## 36012 Torus fracture of lower end of unspecified ulna, initial encounter for closed fracture
## 36013 Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with routine healing
## 36014 Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with delayed healing
## 36015 Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with nonunion
## 36016 Torus fracture of lower end of unspecified ulna, subsequent encounter for fracture with malunion
## 36017 Torus fracture of lower end of unspecified ulna, sequela
## 36018 Other fracture of lower end of right ulna, initial encounter for closed fracture
## 36019 Other fracture of lower end of right ulna, initial encounter for open fracture type I or II
## 36020 Other fracture of lower end of right ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 36021 Other fracture of lower end of right ulna, subsequent encounter for closed fracture with routine healing
## 36022 Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with routine healing
## 36023 Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 36024 Other fracture of lower end of right ulna, subsequent encounter for closed fracture with delayed healing
## 36025 Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with delayed healing
## 36026 Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 36027 Other fracture of lower end of right ulna, subsequent encounter for closed fracture with nonunion
## 36028 Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with nonunion
## 36029 Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 36030 Other fracture of lower end of right ulna, subsequent encounter for closed fracture with malunion
## 36031 Other fracture of lower end of right ulna, subsequent encounter for open fracture type I or II with malunion
## 36032 Other fracture of lower end of right ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 36033 Other fracture of lower end of right ulna, sequela
## 36034 Other fracture of lower end of left ulna, initial encounter for closed fracture
## 36035 Other fracture of lower end of left ulna, initial encounter for open fracture type I or II
## 36036 Other fracture of lower end of left ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 36037 Other fracture of lower end of left ulna, subsequent encounter for closed fracture with routine healing
## 36038 Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with routine healing
## 36039 Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 36040 Other fracture of lower end of left ulna, subsequent encounter for closed fracture with delayed healing
## 36041 Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with delayed healing
## 36042 Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 36043 Other fracture of lower end of left ulna, subsequent encounter for closed fracture with nonunion
## 36044 Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with nonunion
## 36045 Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 36046 Other fracture of lower end of left ulna, subsequent encounter for closed fracture with malunion
## 36047 Other fracture of lower end of left ulna, subsequent encounter for open fracture type I or II with malunion
## 36048 Other fracture of lower end of left ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 36049 Other fracture of lower end of left ulna, sequela
## 36050 Other fracture of lower end of unspecified ulna, initial encounter for closed fracture
## 36051 Other fracture of lower end of unspecified ulna, initial encounter for open fracture type I or II
## 36052 Other fracture of lower end of unspecified ulna, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 36053 Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with routine healing
## 36054 Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with routine healing
## 36055 Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 36056 Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with delayed healing
## 36057 Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with delayed healing
## 36058 Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 36059 Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with nonunion
## 36060 Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with nonunion
## 36061 Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 36062 Other fracture of lower end of unspecified ulna, subsequent encounter for closed fracture with malunion
## 36063 Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type I or II with malunion
## 36064 Other fracture of lower end of unspecified ulna, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 36065 Other fracture of lower end of unspecified ulna, sequela
## 36066 Unspecified fracture of unspecified forearm, initial encounter for closed fracture
## 36067 Unspecified fracture of unspecified forearm, initial encounter for open fracture type I or II
## 36068 Unspecified fracture of unspecified forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 36069 Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with routine healing
## 36070 Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with routine healing
## 36071 Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 36072 Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with delayed healing
## 36073 Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with delayed healing
## 36074 Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 36075 Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with nonunion
## 36076 Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with nonunion
## 36077 Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 36078 Unspecified fracture of unspecified forearm, subsequent encounter for closed fracture with malunion
## 36079 Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type I or II with malunion
## 36080 Unspecified fracture of unspecified forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 36081 Unspecified fracture of unspecified forearm, sequela
## 36082 Unspecified fracture of right forearm, initial encounter for closed fracture
## 36083 Unspecified fracture of right forearm, initial encounter for open fracture type I or II
## 36084 Unspecified fracture of right forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 36085 Unspecified fracture of right forearm, subsequent encounter for closed fracture with routine healing
## 36086 Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with routine healing
## 36087 Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 36088 Unspecified fracture of right forearm, subsequent encounter for closed fracture with delayed healing
## 36089 Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with delayed healing
## 36090 Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 36091 Unspecified fracture of right forearm, subsequent encounter for closed fracture with nonunion
## 36092 Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with nonunion
## 36093 Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 36094 Unspecified fracture of right forearm, subsequent encounter for closed fracture with malunion
## 36095 Unspecified fracture of right forearm, subsequent encounter for open fracture type I or II with malunion
## 36096 Unspecified fracture of right forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 36097 Unspecified fracture of right forearm, sequela
## 36098 Unspecified fracture of left forearm, initial encounter for closed fracture
## 36099 Unspecified fracture of left forearm, initial encounter for open fracture type I or II
## 36100 Unspecified fracture of left forearm, initial encounter for open fracture type IIIA, IIIB, or IIIC
## 36101 Unspecified fracture of left forearm, subsequent encounter for closed fracture with routine healing
## 36102 Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with routine healing
## 36103 Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with routine healing
## 36104 Unspecified fracture of left forearm, subsequent encounter for closed fracture with delayed healing
## 36105 Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with delayed healing
## 36106 Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with delayed healing
## 36107 Unspecified fracture of left forearm, subsequent encounter for closed fracture with nonunion
## 36108 Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with nonunion
## 36109 Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with nonunion
## 36110 Unspecified fracture of left forearm, subsequent encounter for closed fracture with malunion
## 36111 Unspecified fracture of left forearm, subsequent encounter for open fracture type I or II with malunion
## 36112 Unspecified fracture of left forearm, subsequent encounter for open fracture type IIIA, IIIB, or IIIC with malunion
## 36113 Unspecified fracture of left forearm, sequela
## 36114 Unspecified subluxation of right radial head, initial encounter
## 36115 Unspecified subluxation of right radial head, subsequent encounter
## 36116 Unspecified subluxation of right radial head, sequela
## 36117 Unspecified subluxation of left radial head, initial encounter
## 36118 Unspecified subluxation of left radial head, subsequent encounter
## 36119 Unspecified subluxation of left radial head, sequela
## 36120 Unspecified subluxation of unspecified radial head, initial encounter
## 36121 Unspecified subluxation of unspecified radial head, subsequent encounter
## 36122 Unspecified subluxation of unspecified radial head, sequela
## 36123 Unspecified dislocation of right radial head, initial encounter
## 36124 Unspecified dislocation of right radial head, subsequent encounter
## 36125 Unspecified dislocation of right radial head, sequela
## 36126 Unspecified dislocation of left radial head, initial encounter
## 36127 Unspecified dislocation of left radial head, subsequent encounter
## 36128 Unspecified dislocation of left radial head, sequela
## 36129 Unspecified dislocation of unspecified radial head, initial encounter
## 36130 Unspecified dislocation of unspecified radial head, subsequent encounter
## 36131 Unspecified dislocation of unspecified radial head, sequela
## 36132 Anterior subluxation of right radial head, initial encounter
## 36133 Anterior subluxation of right radial head, subsequent encounter
## 36134 Anterior subluxation of right radial head, sequela
## 36135 Anterior subluxation of left radial head, initial encounter
## 36136 Anterior subluxation of left radial head, subsequent encounter
## 36137 Anterior subluxation of left radial head, sequela
## 36138 Anterior subluxation of unspecified radial head, initial encounter
## 36139 Anterior subluxation of unspecified radial head, subsequent encounter
## 36140 Anterior subluxation of unspecified radial head, sequela
## 36141 Anterior dislocation of right radial head, initial encounter
## 36142 Anterior dislocation of right radial head, subsequent encounter
## 36143 Anterior dislocation of right radial head, sequela
## 36144 Anterior dislocation of left radial head, initial encounter
## 36145 Anterior dislocation of left radial head, subsequent encounter
## 36146 Anterior dislocation of left radial head, sequela
## 36147 Anterior dislocation of unspecified radial head, initial encounter
## 36148 Anterior dislocation of unspecified radial head, subsequent encounter
## 36149 Anterior dislocation of unspecified radial head, sequela
## 36150 Posterior subluxation of right radial head, initial encounter
## 36151 Posterior subluxation of right radial head, subsequent encounter
## 36152 Posterior subluxation of right radial head, sequela
## 36153 Posterior subluxation of left radial head, initial encounter
## 36154 Posterior subluxation of left radial head, subsequent encounter
## 36155 Posterior subluxation of left radial head, sequela
## 36156 Posterior subluxation of unspecified radial head, initial encounter
## 36157 Posterior subluxation of unspecified radial head, subsequent encounter
## 36158 Posterior subluxation of unspecified radial head, sequela
## 36159 Posterior dislocation of right radial head, initial encounter
## 36160 Posterior dislocation of right radial head, subsequent encounter
## 36161 Posterior dislocation of right radial head, sequela
## 36162 Posterior dislocation of left radial head, initial encounter
## 36163 Posterior dislocation of left radial head, subsequent encounter
## 36164 Posterior dislocation of left radial head, sequela
## 36165 Posterior dislocation of unspecified radial head, initial encounter
## 36166 Posterior dislocation of unspecified radial head, subsequent encounter
## 36167 Posterior dislocation of unspecified radial head, sequela
## 36168 Nursemaid's elbow, right elbow, initial encounter
## 36169 Nursemaid's elbow, right elbow, subsequent encounter
## 36170 Nursemaid's elbow, right elbow, sequela
## 36171 Nursemaid's elbow, left elbow, initial encounter
## 36172 Nursemaid's elbow, left elbow, subsequent encounter
## 36173 Nursemaid's elbow, left elbow, sequela
## 36174 Nursemaid's elbow, unspecified elbow, initial encounter
## 36175 Nursemaid's elbow, unspecified elbow, subsequent encounter
## 36176 Nursemaid's elbow, unspecified elbow, sequela
## 36177 Other subluxation of right radial head, initial encounter
## 36178 Other subluxation of right radial head, subsequent encounter
## 36179 Other subluxation of right radial head, sequela
## 36180 Other subluxation of left radial head, initial encounter
## 36181 Other subluxation of left radial head, subsequent encounter
## 36182 Other subluxation of left radial head, sequela
## 36183 Other subluxation of unspecified radial head, initial encounter
## 36184 Other subluxation of unspecified radial head, subsequent encounter
## 36185 Other subluxation of unspecified radial head, sequela
## 36186 Other dislocation of right radial head, initial encounter
## 36187 Other dislocation of right radial head, subsequent encounter
## 36188 Other dislocation of right radial head, sequela
## 36189 Other dislocation of left radial head, initial encounter
## 36190 Other dislocation of left radial head, subsequent encounter
## 36191 Other dislocation of left radial head, sequela
## 36192 Other dislocation of unspecified radial head, initial encounter
## 36193 Other dislocation of unspecified radial head, subsequent encounter
## 36194 Other dislocation of unspecified radial head, sequela
## 36195 Unspecified subluxation of right ulnohumeral joint, initial encounter
## 36196 Unspecified subluxation of right ulnohumeral joint, subsequent encounter
## 36197 Unspecified subluxation of right ulnohumeral joint, sequela
## 36198 Unspecified subluxation of left ulnohumeral joint, initial encounter
## 36199 Unspecified subluxation of left ulnohumeral joint, subsequent encounter
## 36200 Unspecified subluxation of left ulnohumeral joint, sequela
## 36201 Unspecified subluxation of unspecified ulnohumeral joint, initial encounter
## 36202 Unspecified subluxation of unspecified ulnohumeral joint, subsequent encounter
## 36203 Unspecified subluxation of unspecified ulnohumeral joint, sequela
## 36204 Unspecified dislocation of right ulnohumeral joint, initial encounter
## 36205 Unspecified dislocation of right ulnohumeral joint, subsequent encounter
## 36206 Unspecified dislocation of right ulnohumeral joint, sequela
## 36207 Unspecified dislocation of left ulnohumeral joint, initial encounter
## 36208 Unspecified dislocation of left ulnohumeral joint, subsequent encounter
## 36209 Unspecified dislocation of left ulnohumeral joint, sequela
## 36210 Unspecified dislocation of unspecified ulnohumeral joint, initial encounter
## 36211 Unspecified dislocation of unspecified ulnohumeral joint, subsequent encounter
## 36212 Unspecified dislocation of unspecified ulnohumeral joint, sequela
## 36213 Anterior subluxation of right ulnohumeral joint, initial encounter
## 36214 Anterior subluxation of right ulnohumeral joint, subsequent encounter
## 36215 Anterior subluxation of right ulnohumeral joint, sequela
## 36216 Anterior subluxation of left ulnohumeral joint, initial encounter
## 36217 Anterior subluxation of left ulnohumeral joint, subsequent encounter
## 36218 Anterior subluxation of left ulnohumeral joint, sequela
## 36219 Anterior subluxation of unspecified ulnohumeral joint, initial encounter
## 36220 Anterior subluxation of unspecified ulnohumeral joint, subsequent encounter
## 36221 Anterior subluxation of unspecified ulnohumeral joint, sequela
## 36222 Anterior dislocation of right ulnohumeral joint, initial encounter
## 36223 Anterior dislocation of right ulnohumeral joint, subsequent encounter
## 36224 Anterior dislocation of right ulnohumeral joint, sequela
## 36225 Anterior dislocation of left ulnohumeral joint, initial encounter
## 36226 Anterior dislocation of left ulnohumeral joint, subsequent encounter
## 36227 Anterior dislocation of left ulnohumeral joint, sequela
## 36228 Anterior dislocation of unspecified ulnohumeral joint, initial encounter
## 36229 Anterior dislocation of unspecified ulnohumeral joint, subsequent encounter
## 36230 Anterior dislocation of unspecified ulnohumeral joint, sequela
## 36231 Posterior subluxation of right ulnohumeral joint, initial encounter
## 36232 Posterior subluxation of right ulnohumeral joint, subsequent encounter
## 36233 Posterior subluxation of right ulnohumeral joint, sequela
## 36234 Posterior subluxation of left ulnohumeral joint, initial encounter
## 36235 Posterior subluxation of left ulnohumeral joint, subsequent encounter
## 36236 Posterior subluxation of left ulnohumeral joint, sequela
## 36237 Posterior subluxation of unspecified ulnohumeral joint, initial encounter
## 36238 Posterior subluxation of unspecified ulnohumeral joint, subsequent encounter
## 36239 Posterior subluxation of unspecified ulnohumeral joint, sequela
## 36240 Posterior dislocation of right ulnohumeral joint, initial encounter
## 36241 Posterior dislocation of right ulnohumeral joint, subsequent encounter
## 36242 Posterior dislocation of right ulnohumeral joint, sequela
## 36243 Posterior dislocation of left ulnohumeral joint, initial encounter
## 36244 Posterior dislocation of left ulnohumeral joint, subsequent encounter
## 36245 Posterior dislocation of left ulnohumeral joint, sequela
## 36246 Posterior dislocation of unspecified ulnohumeral joint, initial encounter
## 36247 Posterior dislocation of unspecified ulnohumeral joint, subsequent encounter
## 36248 Posterior dislocation of unspecified ulnohumeral joint, sequela
## 36249 Medial subluxation of right ulnohumeral joint, initial encounter
## 36250 Medial subluxation of right ulnohumeral joint, subsequent encounter
## 36251 Medial subluxation of right ulnohumeral joint, sequela
## 36252 Medial subluxation of left ulnohumeral joint, initial encounter
## 36253 Medial subluxation of left ulnohumeral joint, subsequent encounter
## 36254 Medial subluxation of left ulnohumeral joint, sequela
## 36255 Medial subluxation of unspecified ulnohumeral joint, initial encounter
## 36256 Medial subluxation of unspecified ulnohumeral joint, subsequent encounter
## 36257 Medial subluxation of unspecified ulnohumeral joint, sequela
## 36258 Medial dislocation of right ulnohumeral joint, initial encounter
## 36259 Medial dislocation of right ulnohumeral joint, subsequent encounter
## 36260 Medial dislocation of right ulnohumeral joint, sequela
## 36261 Medial dislocation of left ulnohumeral joint, initial encounter
## 36262 Medial dislocation of left ulnohumeral joint, subsequent encounter
## 36263 Medial dislocation of left ulnohumeral joint, sequela
## 36264 Medial dislocation of unspecified ulnohumeral joint, initial encounter
## 36265 Medial dislocation of unspecified ulnohumeral joint, subsequent encounter
## 36266 Medial dislocation of unspecified ulnohumeral joint, sequela
## 36267 Lateral subluxation of right ulnohumeral joint, initial encounter
## 36268 Lateral subluxation of right ulnohumeral joint, subsequent encounter
## 36269 Lateral subluxation of right ulnohumeral joint, sequela
## 36270 Lateral subluxation of left ulnohumeral joint, initial encounter
## 36271 Lateral subluxation of left ulnohumeral joint, subsequent encounter
## 36272 Lateral subluxation of left ulnohumeral joint, sequela
## 36273 Lateral subluxation of unspecified ulnohumeral joint, initial encounter
## 36274 Lateral subluxation of unspecified ulnohumeral joint, subsequent encounter
## 36275 Lateral subluxation of unspecified ulnohumeral joint, sequela
## 36276 Lateral dislocation of right ulnohumeral joint, initial encounter
## 36277 Lateral dislocation of right ulnohumeral joint, subsequent encounter
## 36278 Lateral dislocation of right ulnohumeral joint, sequela
## 36279 Lateral dislocation of left ulnohumeral joint, initial encounter
## 36280 Lateral dislocation of left ulnohumeral joint, subsequent encounter
## 36281 Lateral dislocation of left ulnohumeral joint, sequela
## 36282 Lateral dislocation of unspecified ulnohumeral joint, initial encounter
## 36283 Lateral dislocation of unspecified ulnohumeral joint, subsequent encounter
## 36284 Lateral dislocation of unspecified ulnohumeral joint, sequela
## 36285 Other subluxation of right ulnohumeral joint, initial encounter
## 36286 Other subluxation of right ulnohumeral joint, subsequent encounter
## 36287 Other subluxation of right ulnohumeral joint, sequela
## 36288 Other subluxation of left ulnohumeral joint, initial encounter
## 36289 Other subluxation of left ulnohumeral joint, subsequent encounter
## 36290 Other subluxation of left ulnohumeral joint, sequela
## 36291 Other subluxation of unspecified ulnohumeral joint, initial encounter
## 36292 Other subluxation of unspecified ulnohumeral joint, subsequent encounter
## 36293 Other subluxation of unspecified ulnohumeral joint, sequela
## 36294 Other dislocation of right ulnohumeral joint, initial encounter
## 36295 Other dislocation of right ulnohumeral joint, subsequent encounter
## 36296 Other dislocation of right ulnohumeral joint, sequela
## 36297 Other dislocation of left ulnohumeral joint, initial encounter
## 36298 Other dislocation of left ulnohumeral joint, subsequent encounter
## 36299 Other dislocation of left ulnohumeral joint, sequela
## 36300 Other dislocation of unspecified ulnohumeral joint, initial encounter
## 36301 Other dislocation of unspecified ulnohumeral joint, subsequent encounter
## 36302 Other dislocation of unspecified ulnohumeral joint, sequela
## 36303 Traumatic rupture of unspecified radial collateral ligament, initial encounter
## 36304 Traumatic rupture of unspecified radial collateral ligament, subsequent encounter
## 36305 Traumatic rupture of unspecified radial collateral ligament, sequela
## 36306 Traumatic rupture of right radial collateral ligament, initial encounter
## 36307 Traumatic rupture of right radial collateral ligament, subsequent encounter
## 36308 Traumatic rupture of right radial collateral ligament, sequela
## 36309 Traumatic rupture of left radial collateral ligament, initial encounter
## 36310 Traumatic rupture of left radial collateral ligament, subsequent encounter
## 36311 Traumatic rupture of left radial collateral ligament, sequela
## 36312 Traumatic rupture of unspecified ulnar collateral ligament, initial encounter
## 36313 Traumatic rupture of unspecified ulnar collateral ligament, subsequent encounter
## 36314 Traumatic rupture of unspecified ulnar collateral ligament, sequela
## 36315 Traumatic rupture of right ulnar collateral ligament, initial encounter
## 36316 Traumatic rupture of right ulnar collateral ligament, subsequent encounter
## 36317 Traumatic rupture of right ulnar collateral ligament, sequela
## 36318 Traumatic rupture of left ulnar collateral ligament, initial encounter
## 36319 Traumatic rupture of left ulnar collateral ligament, subsequent encounter
## 36320 Traumatic rupture of left ulnar collateral ligament, sequela
## 36321 Unspecified sprain of right elbow, initial encounter
## 36322 Unspecified sprain of right elbow, subsequent encounter
## 36323 Unspecified sprain of right elbow, sequela
## 36324 Unspecified sprain of left elbow, initial encounter
## 36325 Unspecified sprain of left elbow, subsequent encounter
## 36326 Unspecified sprain of left elbow, sequela
## 36327 Unspecified sprain of unspecified elbow, initial encounter
## 36328 Unspecified sprain of unspecified elbow, subsequent encounter
## 36329 Unspecified sprain of unspecified elbow, sequela
## 36330 Radiohumeral (joint) sprain of right elbow, initial encounter
## 36331 Radiohumeral (joint) sprain of right elbow, subsequent encounter
## 36332 Radiohumeral (joint) sprain of right elbow, sequela
## 36333 Radiohumeral (joint) sprain of left elbow, initial encounter
## 36334 Radiohumeral (joint) sprain of left elbow, subsequent encounter
## 36335 Radiohumeral (joint) sprain of left elbow, sequela
## 36336 Radiohumeral (joint) sprain of unspecified elbow, initial encounter
## 36337 Radiohumeral (joint) sprain of unspecified elbow, subsequent encounter
## 36338 Radiohumeral (joint) sprain of unspecified elbow, sequela
## 36339 Ulnohumeral (joint) sprain of right elbow, initial encounter
## 36340 Ulnohumeral (joint) sprain of right elbow, subsequent encounter
## 36341 Ulnohumeral (joint) sprain of right elbow, sequela
## 36342 Ulnohumeral (joint) sprain of left elbow, initial encounter
## 36343 Ulnohumeral (joint) sprain of left elbow, subsequent encounter
## 36344 Ulnohumeral (joint) sprain of left elbow, sequela
## 36345 Ulnohumeral (joint) sprain of unspecified elbow, initial encounter
## 36346 Ulnohumeral (joint) sprain of unspecified elbow, subsequent encounter
## 36347 Ulnohumeral (joint) sprain of unspecified elbow, sequela
## 36348 Radial collateral ligament sprain of right elbow, initial encounter
## 36349 Radial collateral ligament sprain of right elbow, subsequent encounter
## 36350 Radial collateral ligament sprain of right elbow, sequela
## 36351 Radial collateral ligament sprain of left elbow, initial encounter
## 36352 Radial collateral ligament sprain of left elbow, subsequent encounter
## 36353 Radial collateral ligament sprain of left elbow, sequela
## 36354 Radial collateral ligament sprain of unspecified elbow, initial encounter
## 36355 Radial collateral ligament sprain of unspecified elbow, subsequent encounter
## 36356 Radial collateral ligament sprain of unspecified elbow, sequela
## 36357 Ulnar collateral ligament sprain of right elbow, initial encounter
## 36358 Ulnar collateral ligament sprain of right elbow, subsequent encounter
## 36359 Ulnar collateral ligament sprain of right elbow, sequela
## 36360 Ulnar collateral ligament sprain of left elbow, initial encounter
## 36361 Ulnar collateral ligament sprain of left elbow, subsequent encounter
## 36362 Ulnar collateral ligament sprain of left elbow, sequela
## 36363 Ulnar collateral ligament sprain of unspecified elbow, initial encounter
## 36364 Ulnar collateral ligament sprain of unspecified elbow, subsequent encounter
## 36365 Ulnar collateral ligament sprain of unspecified elbow, sequela
## 36366 Other sprain of right elbow, initial encounter
## 36367 Other sprain of right elbow, subsequent encounter
## 36368 Other sprain of right elbow, sequela
## 36369 Other sprain of left elbow, initial encounter
## 36370 Other sprain of left elbow, subsequent encounter
## 36371 Other sprain of left elbow, sequela
## 36372 Other sprain of unspecified elbow, initial encounter
## 36373 Other sprain of unspecified elbow, subsequent encounter
## 36374 Other sprain of unspecified elbow, sequela
## 36375 Injury of ulnar nerve at forearm level, unspecified arm, initial encounter
## 36376 Injury of ulnar nerve at forearm level, unspecified arm, subsequent encounter
## 36377 Injury of ulnar nerve at forearm level, unspecified arm, sequela
## 36378 Injury of ulnar nerve at forearm level, right arm, initial encounter
## 36379 Injury of ulnar nerve at forearm level, right arm, subsequent encounter
## 36380 Injury of ulnar nerve at forearm level, right arm, sequela
## 36381 Injury of ulnar nerve at forearm level, left arm, initial encounter
## 36382 Injury of ulnar nerve at forearm level, left arm, subsequent encounter
## 36383 Injury of ulnar nerve at forearm level, left arm, sequela
## 36384 Injury of median nerve at forearm level, unspecified arm, initial encounter
## 36385 Injury of median nerve at forearm level, unspecified arm, subsequent encounter
## 36386 Injury of median nerve at forearm level, unspecified arm, sequela
## 36387 Injury of median nerve at forearm level, right arm, initial encounter
## 36388 Injury of median nerve at forearm level, right arm, subsequent encounter
## 36389 Injury of median nerve at forearm level, right arm, sequela
## 36390 Injury of median nerve at forearm level, left arm, initial encounter
## 36391 Injury of median nerve at forearm level, left arm, subsequent encounter
## 36392 Injury of median nerve at forearm level, left arm, sequela
## 36393 Injury of radial nerve at forearm level, unspecified arm, initial encounter
## 36394 Injury of radial nerve at forearm level, unspecified arm, subsequent encounter
## 36395 Injury of radial nerve at forearm level, unspecified arm, sequela
## 36396 Injury of radial nerve at forearm level, right arm, initial encounter
## 36397 Injury of radial nerve at forearm level, right arm, subsequent encounter
## 36398 Injury of radial nerve at forearm level, right arm, sequela
## 36399 Injury of radial nerve at forearm level, left arm, initial encounter
## 36400 Injury of radial nerve at forearm level, left arm, subsequent encounter
## 36401 Injury of radial nerve at forearm level, left arm, sequela
## 36402 Injury of cutaneous sensory nerve at forearm level, unspecified arm, initial encounter
## 36403 Injury of cutaneous sensory nerve at forearm level, unspecified arm, subsequent encounter
## 36404 Injury of cutaneous sensory nerve at forearm level, unspecified arm, sequela
## 36405 Injury of cutaneous sensory nerve at forearm level, right arm, initial encounter
## 36406 Injury of cutaneous sensory nerve at forearm level, right arm, subsequent encounter
## 36407 Injury of cutaneous sensory nerve at forearm level, right arm, sequela
## 36408 Injury of cutaneous sensory nerve at forearm level, left arm, initial encounter
## 36409 Injury of cutaneous sensory nerve at forearm level, left arm, subsequent encounter
## 36410 Injury of cutaneous sensory nerve at forearm level, left arm, sequela
## 36411 Injury of other nerves at forearm level, right arm, initial encounter
## 36412 Injury of other nerves at forearm level, right arm, subsequent encounter
## 36413 Injury of other nerves at forearm level, right arm, sequela
## 36414 Injury of other nerves at forearm level, left arm, initial encounter
## 36415 Injury of other nerves at forearm level, left arm, subsequent encounter
## 36416 Injury of other nerves at forearm level, left arm, sequela
## 36417 Injury of other nerves at forearm level, unspecified arm, initial encounter
## 36418 Injury of other nerves at forearm level, unspecified arm, subsequent encounter
## 36419 Injury of other nerves at forearm level, unspecified arm, sequela
## 36420 Injury of unspecified nerve at forearm level, unspecified arm, initial encounter
## 36421 Injury of unspecified nerve at forearm level, unspecified arm, subsequent encounter
## 36422 Injury of unspecified nerve at forearm level, unspecified arm, sequela
## 36423 Injury of unspecified nerve at forearm level, right arm, initial encounter
## 36424 Injury of unspecified nerve at forearm level, right arm, subsequent encounter
## 36425 Injury of unspecified nerve at forearm level, right arm, sequela
## 36426 Injury of unspecified nerve at forearm level, left arm, initial encounter
## 36427 Injury of unspecified nerve at forearm level, left arm, subsequent encounter
## 36428 Injury of unspecified nerve at forearm level, left arm, sequela
## 36429 Unspecified injury of ulnar artery at forearm level, right arm, initial encounter
## 36430 Unspecified injury of ulnar artery at forearm level, right arm, subsequent encounter
## 36431 Unspecified injury of ulnar artery at forearm level, right arm, sequela
## 36432 Unspecified injury of ulnar artery at forearm level, left arm, initial encounter
## 36433 Unspecified injury of ulnar artery at forearm level, left arm, subsequent encounter
## 36434 Unspecified injury of ulnar artery at forearm level, left arm, sequela
## 36435 Unspecified injury of ulnar artery at forearm level, unspecified arm, initial encounter
## 36436 Unspecified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter
## 36437 Unspecified injury of ulnar artery at forearm level, unspecified arm, sequela
## 36438 Laceration of ulnar artery at forearm level, right arm, initial encounter
## 36439 Laceration of ulnar artery at forearm level, right arm, subsequent encounter
## 36440 Laceration of ulnar artery at forearm level, right arm, sequela
## 36441 Laceration of ulnar artery at forearm level, left arm, initial encounter
## 36442 Laceration of ulnar artery at forearm level, left arm, subsequent encounter
## 36443 Laceration of ulnar artery at forearm level, left arm, sequela
## 36444 Laceration of ulnar artery at forearm level, unspecified arm, initial encounter
## 36445 Laceration of ulnar artery at forearm level, unspecified arm, subsequent encounter
## 36446 Laceration of ulnar artery at forearm level, unspecified arm, sequela
## 36447 Other specified injury of ulnar artery at forearm level, right arm, initial encounter
## 36448 Other specified injury of ulnar artery at forearm level, right arm, subsequent encounter
## 36449 Other specified injury of ulnar artery at forearm level, right arm, sequela
## 36450 Other specified injury of ulnar artery at forearm level, left arm, initial encounter
## 36451 Other specified injury of ulnar artery at forearm level, left arm, subsequent encounter
## 36452 Other specified injury of ulnar artery at forearm level, left arm, sequela
## 36453 Other specified injury of ulnar artery at forearm level, unspecified arm, initial encounter
## 36454 Other specified injury of ulnar artery at forearm level, unspecified arm, subsequent encounter
## 36455 Other specified injury of ulnar artery at forearm level, unspecified arm, sequela
## 36456 Unspecified injury of radial artery at forearm level, right arm, initial encounter
## 36457 Unspecified injury of radial artery at forearm level, right arm, subsequent encounter
## 36458 Unspecified injury of radial artery at forearm level, right arm, sequela
## 36459 Unspecified injury of radial artery at forearm level, left arm, initial encounter
## 36460 Unspecified injury of radial artery at forearm level, left arm, subsequent encounter
## 36461 Unspecified injury of radial artery at forearm level, left arm, sequela
## 36462 Unspecified injury of radial artery at forearm level, unspecified arm, initial encounter
## 36463 Unspecified injury of radial artery at forearm level, unspecified arm, subsequent encounter
## 36464 Unspecified injury of radial artery at forearm level, unspecified arm, sequela
## 36465 Laceration of radial artery at forearm level, right arm, initial encounter
## 36466 Laceration of radial artery at forearm level, right arm, subsequent encounter
## 36467 Laceration of radial artery at forearm level, right arm, sequela
## 36468 Laceration of radial artery at forearm level, left arm, initial encounter
## 36469 Laceration of radial artery at forearm level, left arm, subsequent encounter
## 36470 Laceration of radial artery at forearm level, left arm, sequela
## 36471 Laceration of radial artery at forearm level, unspecified arm, initial encounter
## 36472 Laceration of radial artery at forearm level, unspecified arm, subsequent encounter
## 36473 Laceration of radial artery at forearm level, unspecified arm, sequela
## 36474 Other specified injury of radial artery at forearm level, right arm, initial encounter
## 36475 Other specified injury of radial artery at forearm level, right arm, subsequent encounter
## 36476 Other specified injury of radial artery at forearm level, right arm, sequela
## 36477 Other specified injury of radial artery at forearm level, left arm, initial encounter
## 36478 Other specified injury of radial artery at forearm level, left arm, subsequent encounter
## 36479 Other specified injury of radial artery at forearm level, left arm, sequela
## 36480 Other specified injury of radial artery at forearm level, unspecified arm, initial encounter
## 36481 Other specified injury of radial artery at forearm level, unspecified arm, subsequent encounter
## 36482 Other specified injury of radial artery at forearm level, unspecified arm, sequela
## 36483 Unspecified injury of vein at forearm level, right arm, initial encounter
## 36484 Unspecified injury of vein at forearm level, right arm, subsequent encounter
## 36485 Unspecified injury of vein at forearm level, right arm, sequela
## 36486 Unspecified injury of vein at forearm level, left arm, initial encounter
## 36487 Unspecified injury of vein at forearm level, left arm, subsequent encounter
## 36488 Unspecified injury of vein at forearm level, left arm, sequela
## 36489 Unspecified injury of vein at forearm level, unspecified arm, initial encounter
## 36490 Unspecified injury of vein at forearm level, unspecified arm, subsequent encounter
## 36491 Unspecified injury of vein at forearm level, unspecified arm, sequela
## 36492 Laceration of vein at forearm level, right arm, initial encounter
## 36493 Laceration of vein at forearm level, right arm, subsequent encounter
## 36494 Laceration of vein at forearm level, right arm, sequela
## 36495 Laceration of vein at forearm level, left arm, initial encounter
## 36496 Laceration of vein at forearm level, left arm, subsequent encounter
## 36497 Laceration of vein at forearm level, left arm, sequela
## 36498 Laceration of vein at forearm level, unspecified arm, initial encounter
## 36499 Laceration of vein at forearm level, unspecified arm, subsequent encounter
## 36500 Laceration of vein at forearm level, unspecified arm, sequela
## 36501 Other specified injury of vein at forearm level, right arm, initial encounter
## 36502 Other specified injury of vein at forearm level, right arm, subsequent encounter
## 36503 Other specified injury of vein at forearm level, right arm, sequela
## 36504 Other specified injury of vein at forearm level, left arm, initial encounter
## 36505 Other specified injury of vein at forearm level, left arm, subsequent encounter
## 36506 Other specified injury of vein at forearm level, left arm, sequela
## 36507 Other specified injury of vein at forearm level, unspecified arm, initial encounter
## 36508 Other specified injury of vein at forearm level, unspecified arm, subsequent encounter
## 36509 Other specified injury of vein at forearm level, unspecified arm, sequela
## 36510 Unspecified injury of other blood vessels at forearm level, right arm, initial encounter
## 36511 Unspecified injury of other blood vessels at forearm level, right arm, subsequent encounter
## 36512 Unspecified injury of other blood vessels at forearm level, right arm, sequela
## 36513 Unspecified injury of other blood vessels at forearm level, left arm, initial encounter
## 36514 Unspecified injury of other blood vessels at forearm level, left arm, subsequent encounter
## 36515 Unspecified injury of other blood vessels at forearm level, left arm, sequela
## 36516 Unspecified injury of other blood vessels at forearm level, unspecified arm, initial encounter
## 36517 Unspecified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter
## 36518 Unspecified injury of other blood vessels at forearm level, unspecified arm, sequela
## 36519 Laceration of other blood vessels at forearm level, right arm, initial encounter
## 36520 Laceration of other blood vessels at forearm level, right arm, subsequent encounter
## 36521 Laceration of other blood vessels at forearm level, right arm, sequela
## 36522 Laceration of other blood vessels at forearm level, left arm, initial encounter
## 36523 Laceration of other blood vessels at forearm level, left arm, subsequent encounter
## 36524 Laceration of other blood vessels at forearm level, left arm, sequela
## 36525 Laceration of other blood vessels at forearm level, unspecified arm, initial encounter
## 36526 Laceration of other blood vessels at forearm level, unspecified arm, subsequent encounter
## 36527 Laceration of other blood vessels at forearm level, unspecified arm, sequela
## 36528 Other specified injury of other blood vessels at forearm level, right arm, initial encounter
## 36529 Other specified injury of other blood vessels at forearm level, right arm, subsequent encounter
## 36530 Other specified injury of other blood vessels at forearm level, right arm, sequela
## 36531 Other specified injury of other blood vessels at forearm level, left arm, initial encounter
## 36532 Other specified injury of other blood vessels at forearm level, left arm, subsequent encounter
## 36533 Other specified injury of other blood vessels at forearm level, left arm, sequela
## 36534 Other specified injury of other blood vessels at forearm level, unspecified arm, initial encounter
## 36535 Other specified injury of other blood vessels at forearm level, unspecified arm, subsequent encounter
## 36536 Other specified injury of other blood vessels at forearm level, unspecified arm, sequela
## 36537 Unspecified injury of unspecified blood vessel at forearm level, right arm, initial encounter
## 36538 Unspecified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter
## 36539 Unspecified injury of unspecified blood vessel at forearm level, right arm, sequela
## 36540 Unspecified injury of unspecified blood vessel at forearm level, left arm, initial encounter
## 36541 Unspecified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter
## 36542 Unspecified injury of unspecified blood vessel at forearm level, left arm, sequela
## 36543 Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter
## 36544 Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter
## 36545 Unspecified injury of unspecified blood vessel at forearm level, unspecified arm, sequela
## 36546 Laceration of unspecified blood vessel at forearm level, right arm, initial encounter
## 36547 Laceration of unspecified blood vessel at forearm level, right arm, subsequent encounter
## 36548 Laceration of unspecified blood vessel at forearm level, right arm, sequela
## 36549 Laceration of unspecified blood vessel at forearm level, left arm, initial encounter
## 36550 Laceration of unspecified blood vessel at forearm level, left arm, subsequent encounter
## 36551 Laceration of unspecified blood vessel at forearm level, left arm, sequela
## 36552 Laceration of unspecified blood vessel at forearm level, unspecified arm, initial encounter
## 36553 Laceration of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter
## 36554 Laceration of unspecified blood vessel at forearm level, unspecified arm, sequela
## 36555 Other specified injury of unspecified blood vessel at forearm level, right arm, initial encounter
## 36556 Other specified injury of unspecified blood vessel at forearm level, right arm, subsequent encounter
## 36557 Other specified injury of unspecified blood vessel at forearm level, right arm, sequela
## 36558 Other specified injury of unspecified blood vessel at forearm level, left arm, initial encounter
## 36559 Other specified injury of unspecified blood vessel at forearm level, left arm, subsequent encounter
## 36560 Other specified injury of unspecified blood vessel at forearm level, left arm, sequela
## 36561 Other specified injury of unspecified blood vessel at forearm level, unspecified arm, initial encounter
## 36562 Other specified injury of unspecified blood vessel at forearm level, unspecified arm, subsequent encounter
## 36563 Other specified injury of unspecified blood vessel at forearm level, unspecified arm, sequela
## 36564 Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter
## 36565 Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter
## 36566 Unspecified injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela
## 36567 Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter
## 36568 Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter
## 36569 Unspecified injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela
## 36570 Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter
## 36571 Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter
## 36572 Unspecified injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela
## 36573 Strain of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter
## 36574 Strain of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter
## 36575 Strain of flexor muscle, fascia and tendon of right thumb at forearm level, sequela
## 36576 Strain of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter
## 36577 Strain of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter
## 36578 Strain of flexor muscle, fascia and tendon of left thumb at forearm level, sequela
## 36579 Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter
## 36580 Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter
## 36581 Strain of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela
## 36582 Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter
## 36583 Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter
## 36584 Laceration of flexor muscle, fascia and tendon of right thumb at forearm level, sequela
## 36585 Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter
## 36586 Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter
## 36587 Laceration of flexor muscle, fascia and tendon of left thumb at forearm level, sequela
## 36588 Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter
## 36589 Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter
## 36590 Laceration of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela
## 36591 Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, initial encounter
## 36592 Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, subsequent encounter
## 36593 Other injury of flexor muscle, fascia and tendon of right thumb at forearm level, sequela
## 36594 Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, initial encounter
## 36595 Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, subsequent encounter
## 36596 Other injury of flexor muscle, fascia and tendon of left thumb at forearm level, sequela
## 36597 Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, initial encounter
## 36598 Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, subsequent encounter
## 36599 Other injury of flexor muscle, fascia and tendon of unspecified thumb at forearm level, sequela
## 36600 Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter
## 36601 Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter
## 36602 Unspecified injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela
## 36603 Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter
## 36604 Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter
## 36605 Unspecified injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela
## 36606 Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter
## 36607 Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter
## 36608 Unspecified injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela
## 36609 Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter
## 36610 Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter
## 36611 Unspecified injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela
## 36612 Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter
## 36613 Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter
## 36614 Unspecified injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela
## 36615 Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter
## 36616 Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter
## 36617 Unspecified injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela
## 36618 Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter
## 36619 Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter
## 36620 Unspecified injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela
## 36621 Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter
## 36622 Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter
## 36623 Unspecified injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela
## 36624 Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter
## 36625 Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter
## 36626 Unspecified injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela
## 36627 Strain of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter
## 36628 Strain of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter
## 36629 Strain of flexor muscle, fascia and tendon of right index finger at forearm level, sequela
## 36630 Strain of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter
## 36631 Strain of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter
## 36632 Strain of flexor muscle, fascia and tendon of left index finger at forearm level, sequela
## 36633 Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter
## 36634 Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter
## 36635 Strain of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela
## 36636 Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter
## 36637 Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter
## 36638 Strain of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela
## 36639 Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter
## 36640 Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter
## 36641 Strain of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela
## 36642 Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter
## 36643 Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter
## 36644 Strain of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela
## 36645 Strain of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter
## 36646 Strain of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter
## 36647 Strain of flexor muscle, fascia and tendon of right little finger at forearm level, sequela
## 36648 Strain of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter
## 36649 Strain of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter
## 36650 Strain of flexor muscle, fascia and tendon of left little finger at forearm level, sequela
## 36651 Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, initial encounter
## 36652 Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, subsequent encounter
## 36653 Strain of flexor muscle, fascia and tendon of finger of unspecified finger at forearm level, sequela
## 36654 Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter
## 36655 Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter
## 36656 Laceration of flexor muscle, fascia and tendon of right index finger at forearm level, sequela
## 36657 Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter
## 36658 Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter
## 36659 Laceration of flexor muscle, fascia and tendon of left index finger at forearm level, sequela
## 36660 Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter
## 36661 Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter
## 36662 Laceration of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela
## 36663 Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter
## 36664 Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter
## 36665 Laceration of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela
## 36666 Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter
## 36667 Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter
## 36668 Laceration of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela
## 36669 Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter
## 36670 Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter
## 36671 Laceration of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela
## 36672 Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter
## 36673 Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter
## 36674 Laceration of flexor muscle, fascia and tendon of right little finger at forearm level, sequela
## 36675 Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter
## 36676 Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter
## 36677 Laceration of flexor muscle, fascia and tendon of left little finger at forearm level, sequela
## 36678 Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter
## 36679 Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter
## 36680 Laceration of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela
## 36681 Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, initial encounter
## 36682 Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter
## 36683 Other injury of flexor muscle, fascia and tendon of right index finger at forearm level, sequela
## 36684 Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, initial encounter
## 36685 Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter
## 36686 Other injury of flexor muscle, fascia and tendon of left index finger at forearm level, sequela
## 36687 Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, initial encounter
## 36688 Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter
## 36689 Other injury of flexor muscle, fascia and tendon of right middle finger at forearm level, sequela
## 36690 Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, initial encounter
## 36691 Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter
## 36692 Other injury of flexor muscle, fascia and tendon of left middle finger at forearm level, sequela
## 36693 Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, initial encounter
## 36694 Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter
## 36695 Other injury of flexor muscle, fascia and tendon of right ring finger at forearm level, sequela
## 36696 Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, initial encounter
## 36697 Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter
## 36698 Other injury of flexor muscle, fascia and tendon of left ring finger at forearm level, sequela
## 36699 Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, initial encounter
## 36700 Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter
## 36701 Other injury of flexor muscle, fascia and tendon of right little finger at forearm level, sequela
## 36702 Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, initial encounter
## 36703 Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter
## 36704 Other injury of flexor muscle, fascia and tendon of left little finger at forearm level, sequela
## 36705 Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter
## 36706 Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter
## 36707 Other injury of flexor muscle, fascia and tendon of unspecified finger at forearm level, sequela
## 36708 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter
## 36709 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter
## 36710 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela
## 36711 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter
## 36712 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter
## 36713 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela
## 36714 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter
## 36715 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter
## 36716 Unspecified injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela
## 36717 Strain of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter
## 36718 Strain of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter
## 36719 Strain of other flexor muscle, fascia and tendon at forearm level, right arm, sequela
## 36720 Strain of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter
## 36721 Strain of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter
## 36722 Strain of other flexor muscle, fascia and tendon at forearm level, left arm, sequela
## 36723 Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter
## 36724 Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter
## 36725 Strain of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela
## 36726 Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter
## 36727 Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter
## 36728 Laceration of other flexor muscle, fascia and tendon at forearm level, right arm, sequela
## 36729 Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter
## 36730 Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter
## 36731 Laceration of other flexor muscle, fascia and tendon at forearm level, left arm, sequela
## 36732 Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter
## 36733 Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter
## 36734 Laceration of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela
## 36735 Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, initial encounter
## 36736 Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, subsequent encounter
## 36737 Other injury of other flexor muscle, fascia and tendon at forearm level, right arm, sequela
## 36738 Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, initial encounter
## 36739 Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, subsequent encounter
## 36740 Other injury of other flexor muscle, fascia and tendon at forearm level, left arm, sequela
## 36741 Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter
## 36742 Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter
## 36743 Other injury of other flexor muscle, fascia and tendon at forearm level, unspecified arm, sequela
## 36744 Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter
## 36745 Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter
## 36746 Unspecified injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela
## 36747 Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter
## 36748 Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter
## 36749 Unspecified injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela
## 36750 Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter
## 36751 Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter
## 36752 Unspecified injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela
## 36753 Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter
## 36754 Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter
## 36755 Strain of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela
## 36756 Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter
## 36757 Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter
## 36758 Strain of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela
## 36759 Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter
## 36760 Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter
## 36761 Strain of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela
## 36762 Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter
## 36763 Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter
## 36764 Laceration of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela
## 36765 Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter
## 36766 Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter
## 36767 Laceration of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela
## 36768 Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter
## 36769 Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter
## 36770 Laceration of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela
## 36771 Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, initial encounter
## 36772 Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, subsequent encounter
## 36773 Other injury of extensor or abductor muscles, fascia and tendons of right thumb at forearm level, sequela
## 36774 Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, initial encounter
## 36775 Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, subsequent encounter
## 36776 Other injury of extensor or abductor muscles, fascia and tendons of left thumb at forearm level, sequela
## 36777 Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, initial encounter
## 36778 Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, subsequent encounter
## 36779 Other injury of extensor or abductor muscles, fascia and tendons of unspecified thumb at forearm level, sequela
## 36780 Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter
## 36781 Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter
## 36782 Unspecified injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela
## 36783 Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter
## 36784 Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter
## 36785 Unspecified injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela
## 36786 Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter
## 36787 Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter
## 36788 Unspecified injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela
## 36789 Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter
## 36790 Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter
## 36791 Unspecified injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela
## 36792 Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter
## 36793 Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter
## 36794 Unspecified injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela
## 36795 Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter
## 36796 Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter
## 36797 Unspecified injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela
## 36798 Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter
## 36799 Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter
## 36800 Unspecified injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela
## 36801 Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter
## 36802 Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter
## 36803 Unspecified injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela
## 36804 Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter
## 36805 Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter
## 36806 Unspecified injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela
## 36807 Strain of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter
## 36808 Strain of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter
## 36809 Strain of extensor muscle, fascia and tendon of right index finger at forearm level, sequela
## 36810 Strain of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter
## 36811 Strain of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter
## 36812 Strain of extensor muscle, fascia and tendon of left index finger at forearm level, sequela
## 36813 Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter
## 36814 Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter
## 36815 Strain of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela
## 36816 Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter
## 36817 Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter
## 36818 Strain of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela
## 36819 Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter
## 36820 Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter
## 36821 Strain of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela
## 36822 Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter
## 36823 Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter
## 36824 Strain of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela
## 36825 Strain of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter
## 36826 Strain of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter
## 36827 Strain of extensor muscle, fascia and tendon of right little finger at forearm level, sequela
## 36828 Strain of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter
## 36829 Strain of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter
## 36830 Strain of extensor muscle, fascia and tendon of left little finger at forearm level, sequela
## 36831 Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, initial encounter
## 36832 Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, subsequent encounter
## 36833 Strain of extensor muscle, fascia and tendon of finger, unspecified finger at forearm level, sequela
## 36834 Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter
## 36835 Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter
## 36836 Laceration of extensor muscle, fascia and tendon of right index finger at forearm level, sequela
## 36837 Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter
## 36838 Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter
## 36839 Laceration of extensor muscle, fascia and tendon of left index finger at forearm level, sequela
## 36840 Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter
## 36841 Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter
## 36842 Laceration of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela
## 36843 Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter
## 36844 Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter
## 36845 Laceration of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela
## 36846 Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter
## 36847 Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter
## 36848 Laceration of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela
## 36849 Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter
## 36850 Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter
## 36851 Laceration of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela
## 36852 Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter
## 36853 Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter
## 36854 Laceration of extensor muscle, fascia and tendon of right little finger at forearm level, sequela
## 36855 Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter
## 36856 Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter
## 36857 Laceration of extensor muscle, fascia and tendon of left little finger at forearm level, sequela
## 36858 Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter
## 36859 Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter
## 36860 Laceration of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela
## 36861 Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, initial encounter
## 36862 Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, subsequent encounter
## 36863 Other injury of extensor muscle, fascia and tendon of right index finger at forearm level, sequela
## 36864 Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, initial encounter
## 36865 Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, subsequent encounter
## 36866 Other injury of extensor muscle, fascia and tendon of left index finger at forearm level, sequela
## 36867 Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, initial encounter
## 36868 Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, subsequent encounter
## 36869 Other injury of extensor muscle, fascia and tendon of right middle finger at forearm level, sequela
## 36870 Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, initial encounter
## 36871 Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, subsequent encounter
## 36872 Other injury of extensor muscle, fascia and tendon of left middle finger at forearm level, sequela
## 36873 Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, initial encounter
## 36874 Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, subsequent encounter
## 36875 Other injury of extensor muscle, fascia and tendon of right ring finger at forearm level, sequela
## 36876 Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, initial encounter
## 36877 Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, subsequent encounter
## 36878 Other injury of extensor muscle, fascia and tendon of left ring finger at forearm level, sequela
## 36879 Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, initial encounter
## 36880 Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, subsequent encounter
## 36881 Other injury of extensor muscle, fascia and tendon of right little finger at forearm level, sequela
## 36882 Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, initial encounter
## 36883 Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, subsequent encounter
## 36884 Other injury of extensor muscle, fascia and tendon of left little finger at forearm level, sequela
## 36885 Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, initial encounter
## 36886 Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, subsequent encounter
## 36887 Other injury of extensor muscle, fascia and tendon of unspecified finger at forearm level, sequela
## 36888 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter
## 36889 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter
## 36890 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela
## 36891 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter
## 36892 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter
## 36893 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela
## 36894 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter
## 36895 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter
## 36896 Unspecified injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela
## 36897 Strain of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter
## 36898 Strain of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter
## 36899 Strain of other extensor muscle, fascia and tendon at forearm level, right arm, sequela
## 36900 Strain of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter
## 36901 Strain of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter
## 36902 Strain of other extensor muscle, fascia and tendon at forearm level, left arm, sequela
## 36903 Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter
## 36904 Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter
## 36905 Strain of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela
## 36906 Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter
## 36907 Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter
## 36908 Laceration of other extensor muscle, fascia and tendon at forearm level, right arm, sequela
## 36909 Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter
## 36910 Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter
## 36911 Laceration of other extensor muscle, fascia and tendon at forearm level, left arm, sequela
## 36912 Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter
## 36913 Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter
## 36914 Laceration of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela
## 36915 Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, initial encounter
## 36916 Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, subsequent encounter
## 36917 Other injury of other extensor muscle, fascia and tendon at forearm level, right arm, sequela
## 36918 Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, initial encounter
## 36919 Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, subsequent encounter
## 36920 Other injury of other extensor muscle, fascia and tendon at forearm level, left arm, sequela
## 36921 Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, initial encounter
## 36922 Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, subsequent encounter
## 36923 Other injury of other extensor muscle, fascia and tendon at forearm level, unspecified arm, sequela
## 36924 Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter
## 36925 Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter
## 36926 Unspecified injury of other muscles, fascia and tendons at forearm level, right arm, sequela
## 36927 Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter
## 36928 Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter
## 36929 Unspecified injury of other muscles, fascia and tendons at forearm level, left arm, sequela
## 36930 Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter
## 36931 Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter
## 36932 Unspecified injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela
## 36933 Strain of other muscles, fascia and tendons at forearm level, right arm, initial encounter
## 36934 Strain of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter
## 36935 Strain of other muscles, fascia and tendons at forearm level, right arm, sequela
## 36936 Strain of other muscles, fascia and tendons at forearm level, left arm, initial encounter
## 36937 Strain of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter
## 36938 Strain of other muscles, fascia and tendons at forearm level, left arm, sequela
## 36939 Strain of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter
## 36940 Strain of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter
## 36941 Strain of other muscles, fascia and tendons at forearm level, unspecified arm, sequela
## 36942 Laceration of other muscles, fascia and tendons at forearm level, right arm, initial encounter
## 36943 Laceration of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter
## 36944 Laceration of other muscles, fascia and tendons at forearm level, right arm, sequela
## 36945 Laceration of other muscles, fascia and tendons at forearm level, left arm, initial encounter
## 36946 Laceration of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter
## 36947 Laceration of other muscles, fascia and tendons at forearm level, left arm, sequela
## 36948 Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter
## 36949 Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter
## 36950 Laceration of other muscles, fascia and tendons at forearm level, unspecified arm, sequela
## 36951 Other injury of other muscles, fascia and tendons at forearm level, right arm, initial encounter
## 36952 Other injury of other muscles, fascia and tendons at forearm level, right arm, subsequent encounter
## 36953 Other injury of other muscles, fascia and tendons at forearm level, right arm, sequela
## 36954 Other injury of other muscles, fascia and tendons at forearm level, left arm, initial encounter
## 36955 Other injury of other muscles, fascia and tendons at forearm level, left arm, subsequent encounter
## 36956 Other injury of other muscles, fascia and tendons at forearm level, left arm, sequela
## 36957 Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, initial encounter
## 36958 Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter
## 36959 Other injury of other muscles, fascia and tendons at forearm level, unspecified arm, sequela
## 36960 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter
## 36961 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter
## 36962 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela
## 36963 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter
## 36964 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter
## 36965 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela
## 36966 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter
## 36967 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter
## 36968 Unspecified injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela
## 36969 Strain of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter
## 36970 Strain of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter
## 36971 Strain of unspecified muscles, fascia and tendons at forearm level, right arm, sequela
## 36972 Strain of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter
## 36973 Strain of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter
## 36974 Strain of unspecified muscles, fascia and tendons at forearm level, left arm, sequela
## 36975 Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter
## 36976 Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter
## 36977 Strain of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela
## 36978 Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter
## 36979 Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter
## 36980 Laceration of unspecified muscles, fascia and tendons at forearm level, right arm, sequela
## 36981 Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter
## 36982 Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter
## 36983 Laceration of unspecified muscles, fascia and tendons at forearm level, left arm, sequela
## 36984 Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter
## 36985 Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter
## 36986 Laceration of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela
## 36987 Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, initial encounter
## 36988 Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, subsequent encounter
## 36989 Other injury of unspecified muscles, fascia and tendons at forearm level, right arm, sequela
## 36990 Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, initial encounter
## 36991 Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, subsequent encounter
## 36992 Other injury of unspecified muscles, fascia and tendons at forearm level, left arm, sequela
## 36993 Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, initial encounter
## 36994 Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, subsequent encounter
## 36995 Other injury of unspecified muscles, fascia and tendons at forearm level, unspecified arm, sequela
## 36996 Crushing injury of unspecified elbow, initial encounter
## 36997 Crushing injury of unspecified elbow, subsequent encounter
## 36998 Crushing injury of unspecified elbow, sequela
## 36999 Crushing injury of right elbow, initial encounter
## 37000 Crushing injury of right elbow, subsequent encounter
## 37001 Crushing injury of right elbow, sequela
## 37002 Crushing injury of left elbow, initial encounter
## 37003 Crushing injury of left elbow, subsequent encounter
## 37004 Crushing injury of left elbow, sequela
## 37005 Crushing injury of unspecified forearm, initial encounter
## 37006 Crushing injury of unspecified forearm, subsequent encounter
## 37007 Crushing injury of unspecified forearm, sequela
## 37008 Crushing injury of right forearm, initial encounter
## 37009 Crushing injury of right forearm, subsequent encounter
## 37010 Crushing injury of right forearm, sequela
## 37011 Crushing injury of left forearm, initial encounter
## 37012 Crushing injury of left forearm, subsequent encounter
## 37013 Crushing injury of left forearm, sequela
## 37014 Complete traumatic amputation at elbow level, right arm, initial encounter
## 37015 Complete traumatic amputation at elbow level, right arm, subsequent encounter
## 37016 Complete traumatic amputation at elbow level, right arm, sequela
## 37017 Complete traumatic amputation at elbow level, left arm, initial encounter
## 37018 Complete traumatic amputation at elbow level, left arm, subsequent encounter
## 37019 Complete traumatic amputation at elbow level, left arm, sequela
## 37020 Complete traumatic amputation at elbow level, unspecified arm, initial encounter
## 37021 Complete traumatic amputation at elbow level, unspecified arm, subsequent encounter
## 37022 Complete traumatic amputation at elbow level, unspecified arm, sequela
## 37023 Partial traumatic amputation at elbow level, right arm, initial encounter
## 37024 Partial traumatic amputation at elbow level, right arm, subsequent encounter
## 37025 Partial traumatic amputation at elbow level, right arm, sequela
## 37026 Partial traumatic amputation at elbow level, left arm, initial encounter
## 37027 Partial traumatic amputation at elbow level, left arm, subsequent encounter
## 37028 Partial traumatic amputation at elbow level, left arm, sequela
## 37029 Partial traumatic amputation at elbow level, unspecified arm, initial encounter
## 37030 Partial traumatic amputation at elbow level, unspecified arm, subsequent encounter
## 37031 Partial traumatic amputation at elbow level, unspecified arm, sequela
## 37032 Complete traumatic amputation at level between elbow and wrist, right arm, initial encounter
## 37033 Complete traumatic amputation at level between elbow and wrist, right arm, subsequent encounter
## 37034 Complete traumatic amputation at level between elbow and wrist, right arm, sequela
## 37035 Complete traumatic amputation at level between elbow and wrist, left arm, initial encounter
## 37036 Complete traumatic amputation at level between elbow and wrist, left arm, subsequent encounter
## 37037 Complete traumatic amputation at level between elbow and wrist, left arm, sequela
## 37038 Complete traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter
## 37039 Complete traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter
## 37040 Complete traumatic amputation at level between elbow and wrist, unspecified arm, sequela
## 37041 Partial traumatic amputation at level between elbow and wrist, right arm, initial encounter
## 37042 Partial traumatic amputation at level between elbow and wrist, right arm, subsequent encounter
## 37043 Partial traumatic amputation at level between elbow and wrist, right arm, sequela
## 37044 Partial traumatic amputation at level between elbow and wrist, left arm, initial encounter
## 37045 Partial traumatic amputation at level between elbow and wrist, left arm, subsequent encounter
## 37046 Partial traumatic amputation at level between elbow and wrist, left arm, sequela
## 37047 Partial traumatic amputation at level between elbow and wrist, unspecified arm, initial encounter
## 37048 Partial traumatic amputation at level between elbow and wrist, unspecified arm, subsequent encounter
## 37049 Partial traumatic amputation at level between elbow and wrist, unspecified arm, sequela
## 37050 Complete traumatic amputation of right forearm, level unspecified, initial encounter
## 37051 Complete traumatic amputation of right forearm, level unspecified, subsequent encounter
## 37052 Complete traumatic amputation of right forearm, level unspecified, sequela
## 37053 Complete traumatic amputation of left forearm, level unspecified, initial encounter
## 37054 Complete traumatic amputation of left forearm, level unspecified, subsequent encounter
## 37055 Complete traumatic amputation of left forearm, level unspecified, sequela
## 37056 Complete traumatic amputation of unspecified forearm, level unspecified, initial encounter
## 37057 Complete traumatic amputation of unspecified forearm, level unspecified, subsequent encounter
## 37058 Complete traumatic amputation of unspecified forearm, level unspecified, sequela
## 37059 Partial traumatic amputation of right forearm, level unspecified, initial encounter
## 37060 Partial traumatic amputation of right forearm, level unspecified, subsequent encounter
## 37061 Partial traumatic amputation of right forearm, level unspecified, sequela
## 37062 Partial traumatic amputation of left forearm, level unspecified, initial encounter
## 37063 Partial traumatic amputation of left forearm, level unspecified, subsequent encounter
## 37064 Partial traumatic amputation of left forearm, level unspecified, sequela
## 37065 Partial traumatic amputation of unspecified forearm, level unspecified, initial encounter
## 37066 Partial traumatic amputation of unspecified forearm, level unspecified, subsequent encounter
## 37067 Partial traumatic amputation of unspecified forearm, level unspecified, sequela
## 37068 Unspecified physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture
## 37069 Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing
## 37070 Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing
## 37071 Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion
## 37072 Unspecified physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion
## 37073 Unspecified physeal fracture of lower end of ulna, right arm, sequela
## 37074 Unspecified physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture
## 37075 Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing
## 37076 Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing
## 37077 Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion
## 37078 Unspecified physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion
## 37079 Unspecified physeal fracture of lower end of ulna, left arm, sequela
## 37080 Unspecified physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture
## 37081 Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing
## 37082 Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing
## 37083 Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion
## 37084 Unspecified physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion
## 37085 Unspecified physeal fracture of lower end of ulna, unspecified arm, sequela
## 37086 Salter-Harris Type I physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture
## 37087 Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing
## 37088 Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing
## 37089 Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion
## 37090 Salter-Harris Type I physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion
## 37091 Salter-Harris Type I physeal fracture of lower end of ulna, right arm, sequela
## 37092 Salter-Harris Type I physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture
## 37093 Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing
## 37094 Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing
## 37095 Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion
## 37096 Salter-Harris Type I physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion
## 37097 Salter-Harris Type I physeal fracture of lower end of ulna, left arm, sequela
## 37098 Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture
## 37099 Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing
## 37100 Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing
## 37101 Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion
## 37102 Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion
## 37103 Salter-Harris Type I physeal fracture of lower end of ulna, unspecified arm, sequela
## 37104 Salter-Harris Type II physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture
## 37105 Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing
## 37106 Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing
## 37107 Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion
## 37108 Salter-Harris Type II physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion
## 37109 Salter-Harris Type II physeal fracture of lower end of ulna, right arm, sequela
## 37110 Salter-Harris Type II physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture
## 37111 Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing
## 37112 Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing
## 37113 Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion
## 37114 Salter-Harris Type II physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion
## 37115 Salter-Harris Type II physeal fracture of lower end of ulna, left arm, sequela
## 37116 Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture
## 37117 Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing
## 37118 Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing
## 37119 Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion
## 37120 Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion
## 37121 Salter-Harris Type II physeal fracture of lower end of ulna, unspecified arm, sequela
## 37122 Salter-Harris Type III physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture
## 37123 Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing
## 37124 Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing
## 37125 Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion
## 37126 Salter-Harris Type III physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion
## 37127 Salter-Harris Type III physeal fracture of lower end of ulna, right arm, sequela
## 37128 Salter-Harris Type III physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture
## 37129 Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing
## 37130 Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing
## 37131 Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion
## 37132 Salter-Harris Type III physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion
## 37133 Salter-Harris Type III physeal fracture of lower end of ulna, left arm, sequela
## 37134 Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture
## 37135 Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing
## 37136 Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing
## 37137 Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion
## 37138 Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion
## 37139 Salter-Harris Type III physeal fracture of lower end of ulna, unspecified arm, sequela
## 37140 Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture
## 37141 Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing
## 37142 Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing
## 37143 Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion
## 37144 Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion
## 37145 Salter-Harris Type IV physeal fracture of lower end of ulna, right arm, sequela
## 37146 Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture
## 37147 Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing
## 37148 Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing
## 37149 Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion
## 37150 Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion
## 37151 Salter-Harris Type IV physeal fracture of lower end of ulna, left arm, sequela
## 37152 Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture
## 37153 Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing
## 37154 Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing
## 37155 Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion
## 37156 Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion
## 37157 Salter-Harris Type IV physeal fracture of lower end of ulna, unspecified arm, sequela
## 37158 Other physeal fracture of lower end of ulna, right arm, initial encounter for closed fracture
## 37159 Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with routine healing
## 37160 Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with delayed healing
## 37161 Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with nonunion
## 37162 Other physeal fracture of lower end of ulna, right arm, subsequent encounter for fracture with malunion
## 37163 Other physeal fracture of lower end of ulna, right arm, sequela
## 37164 Other physeal fracture of lower end of ulna, left arm, initial encounter for closed fracture
## 37165 Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with routine healing
## 37166 Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with delayed healing
## 37167 Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with nonunion
## 37168 Other physeal fracture of lower end of ulna, left arm, subsequent encounter for fracture with malunion
## 37169 Other physeal fracture of lower end of ulna, left arm, sequela
## 37170 Other physeal fracture of lower end of ulna, unspecified arm, initial encounter for closed fracture
## 37171 Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with routine healing
## 37172 Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with delayed healing
## 37173 Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with nonunion
## 37174 Other physeal fracture of lower end of ulna, unspecified arm, subsequent encounter for fracture with malunion
## 37175 Other physeal fracture of lower end of ulna, unspecified arm, sequela
## 37176 Unspecified physeal fracture of upper end of radius, right arm, initial encounter for closed fracture
## 37177 Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing
## 37178 Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37179 Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion
## 37180 Unspecified physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion
## 37181 Unspecified physeal fracture of upper end of radius, right arm, sequela
## 37182 Unspecified physeal fracture of upper end of radius, left arm, initial encounter for closed fracture
## 37183 Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing
## 37184 Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37185 Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion
## 37186 Unspecified physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion
## 37187 Unspecified physeal fracture of upper end of radius, left arm, sequela
## 37188 Unspecified physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture
## 37189 Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37190 Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37191 Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37192 Unspecified physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37193 Unspecified physeal fracture of upper end of radius, unspecified arm, sequela
## 37194 Salter-Harris Type I physeal fracture of upper end of radius, right arm, initial encounter for closed fracture
## 37195 Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing
## 37196 Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37197 Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion
## 37198 Salter-Harris Type I physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion
## 37199 Salter-Harris Type I physeal fracture of upper end of radius, right arm, sequela
## 37200 Salter-Harris Type I physeal fracture of upper end of radius, left arm, initial encounter for closed fracture
## 37201 Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing
## 37202 Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37203 Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion
## 37204 Salter-Harris Type I physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion
## 37205 Salter-Harris Type I physeal fracture of upper end of radius, left arm, sequela
## 37206 Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture
## 37207 Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37208 Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37209 Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37210 Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37211 Salter-Harris Type I physeal fracture of upper end of radius, unspecified arm, sequela
## 37212 Salter-Harris Type II physeal fracture of upper end of radius, right arm, initial encounter for closed fracture
## 37213 Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing
## 37214 Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37215 Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion
## 37216 Salter-Harris Type II physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion
## 37217 Salter-Harris Type II physeal fracture of upper end of radius, right arm, sequela
## 37218 Salter-Harris Type II physeal fracture of upper end of radius, left arm, initial encounter for closed fracture
## 37219 Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing
## 37220 Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37221 Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion
## 37222 Salter-Harris Type II physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion
## 37223 Salter-Harris Type II physeal fracture of upper end of radius, left arm, sequela
## 37224 Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture
## 37225 Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37226 Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37227 Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37228 Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37229 Salter-Harris Type II physeal fracture of upper end of radius, unspecified arm, sequela
## 37230 Salter-Harris Type III physeal fracture of upper end of radius, right arm, initial encounter for closed fracture
## 37231 Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing
## 37232 Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37233 Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion
## 37234 Salter-Harris Type III physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion
## 37235 Salter-Harris Type III physeal fracture of upper end of radius, right arm, sequela
## 37236 Salter-Harris Type III physeal fracture of upper end of radius, left arm, initial encounter for closed fracture
## 37237 Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing
## 37238 Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37239 Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion
## 37240 Salter-Harris Type III physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion
## 37241 Salter-Harris Type III physeal fracture of upper end of radius, left arm, sequela
## 37242 Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture
## 37243 Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37244 Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37245 Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37246 Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37247 Salter-Harris Type III physeal fracture of upper end of radius, unspecified arm, sequela
## 37248 Salter-Harris Type IV physeal fracture of upper end of radius, right arm, initial encounter for closed fracture
## 37249 Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing
## 37250 Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37251 Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion
## 37252 Salter-Harris Type IV physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion
## 37253 Salter-Harris Type IV physeal fracture of upper end of radius, right arm, sequela
## 37254 Salter-Harris Type IV physeal fracture of upper end of radius, left arm, initial encounter for closed fracture
## 37255 Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing
## 37256 Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37257 Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion
## 37258 Salter-Harris Type IV physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion
## 37259 Salter-Harris Type IV physeal fracture of upper end of radius, left arm, sequela
## 37260 Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture
## 37261 Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37262 Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37263 Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37264 Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37265 Salter-Harris Type IV physeal fracture of upper end of radius, unspecified arm, sequela
## 37266 Other physeal fracture of upper end of radius, right arm, initial encounter for closed fracture
## 37267 Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with routine healing
## 37268 Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37269 Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with nonunion
## 37270 Other physeal fracture of upper end of radius, right arm, subsequent encounter for fracture with malunion
## 37271 Other physeal fracture of upper end of radius, right arm, sequela
## 37272 Other physeal fracture of upper end of radius, left arm, initial encounter for closed fracture
## 37273 Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with routine healing
## 37274 Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37275 Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with nonunion
## 37276 Other physeal fracture of upper end of radius, left arm, subsequent encounter for fracture with malunion
## 37277 Other physeal fracture of upper end of radius, left arm, sequela
## 37278 Other physeal fracture of upper end of radius, unspecified arm, initial encounter for closed fracture
## 37279 Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37280 Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37281 Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37282 Other physeal fracture of upper end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37283 Other physeal fracture of upper end of radius, unspecified arm, sequela
## 37284 Unspecified physeal fracture of lower end of radius, right arm, initial encounter for closed fracture
## 37285 Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing
## 37286 Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37287 Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion
## 37288 Unspecified physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion
## 37289 Unspecified physeal fracture of lower end of radius, right arm, sequela
## 37290 Unspecified physeal fracture of lower end of radius, left arm, initial encounter for closed fracture
## 37291 Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing
## 37292 Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37293 Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion
## 37294 Unspecified physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion
## 37295 Unspecified physeal fracture of lower end of radius, left arm, sequela
## 37296 Unspecified physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture
## 37297 Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37298 Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37299 Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37300 Unspecified physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37301 Unspecified physeal fracture of lower end of radius, unspecified arm, sequela
## 37302 Salter-Harris Type I physeal fracture of lower end of radius, right arm, initial encounter for closed fracture
## 37303 Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing
## 37304 Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37305 Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion
## 37306 Salter-Harris Type I physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion
## 37307 Salter-Harris Type I physeal fracture of lower end of radius, right arm, sequela
## 37308 Salter-Harris Type I physeal fracture of lower end of radius, left arm, initial encounter for closed fracture
## 37309 Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing
## 37310 Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37311 Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion
## 37312 Salter-Harris Type I physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion
## 37313 Salter-Harris Type I physeal fracture of lower end of radius, left arm, sequela
## 37314 Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture
## 37315 Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37316 Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37317 Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37318 Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37319 Salter-Harris Type I physeal fracture of lower end of radius, unspecified arm, sequela
## 37320 Salter-Harris Type II physeal fracture of lower end of radius, right arm, initial encounter for closed fracture
## 37321 Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing
## 37322 Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37323 Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion
## 37324 Salter-Harris Type II physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion
## 37325 Salter-Harris Type II physeal fracture of lower end of radius, right arm, sequela
## 37326 Salter-Harris Type II physeal fracture of lower end of radius, left arm, initial encounter for closed fracture
## 37327 Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing
## 37328 Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37329 Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion
## 37330 Salter-Harris Type II physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion
## 37331 Salter-Harris Type II physeal fracture of lower end of radius, left arm, sequela
## 37332 Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture
## 37333 Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37334 Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37335 Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37336 Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37337 Salter-Harris Type II physeal fracture of lower end of radius, unspecified arm, sequela
## 37338 Salter-Harris Type III physeal fracture of lower end of radius, right arm, initial encounter for closed fracture
## 37339 Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing
## 37340 Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37341 Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion
## 37342 Salter-Harris Type III physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion
## 37343 Salter-Harris Type III physeal fracture of lower end of radius, right arm, sequela
## 37344 Salter-Harris Type III physeal fracture of lower end of radius, left arm, initial encounter for closed fracture
## 37345 Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing
## 37346 Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37347 Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion
## 37348 Salter-Harris Type III physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion
## 37349 Salter-Harris Type III physeal fracture of lower end of radius, left arm, sequela
## 37350 Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture
## 37351 Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37352 Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37353 Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37354 Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37355 Salter-Harris Type III physeal fracture of lower end of radius, unspecified arm, sequela
## 37356 Salter-Harris Type IV physeal fracture of lower end of radius, right arm, initial encounter for closed fracture
## 37357 Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing
## 37358 Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37359 Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion
## 37360 Salter-Harris Type IV physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion
## 37361 Salter-Harris Type IV physeal fracture of lower end of radius, right arm, sequela
## 37362 Salter-Harris Type IV physeal fracture of lower end of radius, left arm, initial encounter for closed fracture
## 37363 Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing
## 37364 Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37365 Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion
## 37366 Salter-Harris Type IV physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion
## 37367 Salter-Harris Type IV physeal fracture of lower end of radius, left arm, sequela
## 37368 Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture
## 37369 Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37370 Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37371 Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37372 Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37373 Salter-Harris Type IV physeal fracture of lower end of radius, unspecified arm, sequela
## 37374 Other physeal fracture of lower end of radius, right arm, initial encounter for closed fracture
## 37375 Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with routine healing
## 37376 Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with delayed healing
## 37377 Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with nonunion
## 37378 Other physeal fracture of lower end of radius, right arm, subsequent encounter for fracture with malunion
## 37379 Other physeal fracture of lower end of radius, right arm, sequela
## 37380 Other physeal fracture of lower end of radius, left arm, initial encounter for closed fracture
## 37381 Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with routine healing
## 37382 Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with delayed healing
## 37383 Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with nonunion
## 37384 Other physeal fracture of lower end of radius, left arm, subsequent encounter for fracture with malunion
## 37385 Other physeal fracture of lower end of radius, left arm, sequela
## 37386 Other physeal fracture of lower end of radius, unspecified arm, initial encounter for closed fracture
## 37387 Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with routine healing
## 37388 Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with delayed healing
## 37389 Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with nonunion
## 37390 Other physeal fracture of lower end of radius, unspecified arm, subsequent encounter for fracture with malunion
## 37391 Other physeal fracture of lower end of radius, unspecified arm, sequela
## 37392 Other specified injuries of right elbow, initial encounter
## 37393 Other specified injuries of right elbow, subsequent encounter
## 37394 Other specified injuries of right elbow, sequela
## 37395 Other specified injuries of left elbow, initial encounter
## 37396 Other specified injuries of left elbow, subsequent encounter
## 37397 Other specified injuries of left elbow, sequela
## 37398 Other specified injuries of unspecified elbow, initial encounter
## 37399 Other specified injuries of unspecified elbow, subsequent encounter
## 37400 Other specified injuries of unspecified elbow, sequela
## 37401 Other specified injuries right forearm, initial encounter
## 37402 Other specified injuries right forearm, subsequent encounter
## 37403 Other specified injuries right forearm, sequela
## 37404 Other specified injuries left forearm, initial encounter
## 37405 Other specified injuries left forearm, subsequent encounter
## 37406 Other specified injuries left forearm, sequela
## 37407 Other specified injuries unspecified forearm, initial encounter
## 37408 Other specified injuries unspecified forearm, subsequent encounter
## 37409 Other specified injuries unspecified forearm, sequela
## 37410 Unspecified injury of right elbow, initial encounter
## 37411 Unspecified injury of right elbow, subsequent encounter
## 37412 Unspecified injury of right elbow, sequela
## 37413 Unspecified injury of left elbow, initial encounter
## 37414 Unspecified injury of left elbow, subsequent encounter
## 37415 Unspecified injury of left elbow, sequela
## 37416 Unspecified injury of unspecified elbow, initial encounter
## 37417 Unspecified injury of unspecified elbow, subsequent encounter
## 37418 Unspecified injury of unspecified elbow, sequela
## 37419 Unspecified injury of right forearm, initial encounter
## 37420 Unspecified injury of right forearm, subsequent encounter
## 37421 Unspecified injury of right forearm, sequela
## 37422 Unspecified injury of left forearm, initial encounter
## 37423 Unspecified injury of left forearm, subsequent encounter
## 37424 Unspecified injury of left forearm, sequela
## 37425 Unspecified injury of unspecified forearm, initial encounter
## 37426 Unspecified injury of unspecified forearm, subsequent encounter
## 37427 Unspecified injury of unspecified forearm, sequela
## 37428 Contusion of unspecified finger without damage to nail, initial encounter
## 37429 Contusion of unspecified finger without damage to nail, subsequent encounter
## 37430 Contusion of unspecified finger without damage to nail, sequela
## 37431 Contusion of right thumb without damage to nail, initial encounter
## 37432 Contusion of right thumb without damage to nail, subsequent encounter
## 37433 Contusion of right thumb without damage to nail, sequela
## 37434 Contusion of left thumb without damage to nail, initial encounter
## 37435 Contusion of left thumb without damage to nail, subsequent encounter
## 37436 Contusion of left thumb without damage to nail, sequela
## 37437 Contusion of unspecified thumb without damage to nail, initial encounter
## 37438 Contusion of unspecified thumb without damage to nail, subsequent encounter
## 37439 Contusion of unspecified thumb without damage to nail, sequela
## 37440 Contusion of right index finger without damage to nail, initial encounter
## 37441 Contusion of right index finger without damage to nail, subsequent encounter
## 37442 Contusion of right index finger without damage to nail, sequela
## 37443 Contusion of left index finger without damage to nail, initial encounter
## 37444 Contusion of left index finger without damage to nail, subsequent encounter
## 37445 Contusion of left index finger without damage to nail, sequela
## 37446 Contusion of unspecified index finger without damage to nail, initial encounter
## 37447 Contusion of unspecified index finger without damage to nail, subsequent encounter
## 37448 Contusion of unspecified index finger without damage to nail, sequela
## 37449 Contusion of right middle finger without damage to nail, initial encounter
## 37450 Contusion of right middle finger without damage to nail, subsequent encounter
## 37451 Contusion of right middle finger without damage to nail, sequela
## 37452 Contusion of left middle finger without damage to nail, initial encounter
## 37453 Contusion of left middle finger without damage to nail, subsequent encounter
## 37454 Contusion of left middle finger without damage to nail, sequela
## 37455 Contusion of unspecified middle finger without damage to nail, initial encounter
## 37456 Contusion of unspecified middle finger without damage to nail, subsequent encounter
## 37457 Contusion of unspecified middle finger without damage to nail, sequela
## 37458 Contusion of right ring finger without damage to nail, initial encounter
## 37459 Contusion of right ring finger without damage to nail, subsequent encounter
## 37460 Contusion of right ring finger without damage to nail, sequela
## 37461 Contusion of left ring finger without damage to nail, initial encounter
## 37462 Contusion of left ring finger without damage to nail, subsequent encounter
## 37463 Contusion of left ring finger without damage to nail, sequela
## 37464 Contusion of unspecified ring finger without damage to nail, initial encounter
## 37465 Contusion of unspecified ring finger without damage to nail, subsequent encounter
## 37466 Contusion of unspecified ring finger without damage to nail, sequela
## 37467 Contusion of right little finger without damage to nail, initial encounter
## 37468 Contusion of right little finger without damage to nail, subsequent encounter
## 37469 Contusion of right little finger without damage to nail, sequela
## 37470 Contusion of left little finger without damage to nail, initial encounter
## 37471 Contusion of left little finger without damage to nail, subsequent encounter
## 37472 Contusion of left little finger without damage to nail, sequela
## 37473 Contusion of unspecified little finger without damage to nail, initial encounter
## 37474 Contusion of unspecified little finger without damage to nail, subsequent encounter
## 37475 Contusion of unspecified little finger without damage to nail, sequela
## 37476 Contusion of unspecified finger with damage to nail, initial encounter
## 37477 Contusion of unspecified finger with damage to nail, subsequent encounter
## 37478 Contusion of unspecified finger with damage to nail, sequela
## 37479 Contusion of right thumb with damage to nail, initial encounter
## 37480 Contusion of right thumb with damage to nail, subsequent encounter
## 37481 Contusion of right thumb with damage to nail, sequela
## 37482 Contusion of left thumb with damage to nail, initial encounter
## 37483 Contusion of left thumb with damage to nail, subsequent encounter
## 37484 Contusion of left thumb with damage to nail, sequela
## 37485 Contusion of unspecified thumb with damage to nail, initial encounter
## 37486 Contusion of unspecified thumb with damage to nail, subsequent encounter
## 37487 Contusion of unspecified thumb with damage to nail, sequela
## 37488 Contusion of right index finger with damage to nail, initial encounter
## 37489 Contusion of right index finger with damage to nail, subsequent encounter
## 37490 Contusion of right index finger with damage to nail, sequela
## 37491 Contusion of left index finger with damage to nail, initial encounter
## 37492 Contusion of left index finger with damage to nail, subsequent encounter
## 37493 Contusion of left index finger with damage to nail, sequela
## 37494 Contusion of unspecified index finger with damage to nail, initial encounter
## 37495 Contusion of unspecified index finger with damage to nail, subsequent encounter
## 37496 Contusion of unspecified index finger with damage to nail, sequela
## 37497 Contusion of right middle finger with damage to nail, initial encounter
## 37498 Contusion of right middle finger with damage to nail, subsequent encounter
## 37499 Contusion of right middle finger with damage to nail, sequela
## 37500 Contusion of left middle finger with damage to nail, initial encounter
## 37501 Contusion of left middle finger with damage to nail, subsequent encounter
## 37502 Contusion of left middle finger with damage to nail, sequela
## 37503 Contusion of unspecified middle finger with damage to nail, initial encounter
## 37504 Contusion of unspecified middle finger with damage to nail, subsequent encounter
## 37505 Contusion of unspecified middle finger with damage to nail, sequela
## 37506 Contusion of right ring finger with damage to nail, initial encounter
## 37507 Contusion of right ring finger with damage to nail, subsequent encounter
## 37508 Contusion of right ring finger with damage to nail, sequela
## 37509 Contusion of left ring finger with damage to nail, initial encounter
## 37510 Contusion of left ring finger with damage to nail, subsequent encounter
## 37511 Contusion of left ring finger with damage to nail, sequela
## 37512 Contusion of unspecified ring finger with damage to nail, initial encounter
## 37513 Contusion of unspecified ring finger with damage to nail, subsequent encounter
## 37514 Contusion of unspecified ring finger with damage to nail, sequela
## 37515 Contusion of right little finger with damage to nail, initial encounter
## 37516 Contusion of right little finger with damage to nail, subsequent encounter
## 37517 Contusion of right little finger with damage to nail, sequela
## 37518 Contusion of left little finger with damage to nail, initial encounter
## 37519 Contusion of left little finger with damage to nail, subsequent encounter
## 37520 Contusion of left little finger with damage to nail, sequela
## 37521 Contusion of unspecified little finger with damage to nail, initial encounter
## 37522 Contusion of unspecified little finger with damage to nail, subsequent encounter
## 37523 Contusion of unspecified little finger with damage to nail, sequela
## 37524 Contusion of right wrist, initial encounter
## 37525 Contusion of right wrist, subsequent encounter
## 37526 Contusion of right wrist, sequela
## 37527 Contusion of left wrist, initial encounter
## 37528 Contusion of left wrist, subsequent encounter
## 37529 Contusion of left wrist, sequela
## 37530 Contusion of unspecified wrist, initial encounter
## 37531 Contusion of unspecified wrist, subsequent encounter
## 37532 Contusion of unspecified wrist, sequela
## 37533 Contusion of right hand, initial encounter
## 37534 Contusion of right hand, subsequent encounter
## 37535 Contusion of right hand, sequela
## 37536 Contusion of left hand, initial encounter
## 37537 Contusion of left hand, subsequent encounter
## 37538 Contusion of left hand, sequela
## 37539 Contusion of unspecified hand, initial encounter
## 37540 Contusion of unspecified hand, subsequent encounter
## 37541 Contusion of unspecified hand, sequela
## 37542 Abrasion of right thumb, initial encounter
## 37543 Abrasion of right thumb, subsequent encounter
## 37544 Abrasion of right thumb, sequela
## 37545 Abrasion of left thumb, initial encounter
## 37546 Abrasion of left thumb, subsequent encounter
## 37547 Abrasion of left thumb, sequela
## 37548 Abrasion of unspecified thumb, initial encounter
## 37549 Abrasion of unspecified thumb, subsequent encounter
## 37550 Abrasion of unspecified thumb, sequela
## 37551 Blister (nonthermal) of right thumb, initial encounter
## 37552 Blister (nonthermal) of right thumb, subsequent encounter
## 37553 Blister (nonthermal) of right thumb, sequela
## 37554 Blister (nonthermal) of left thumb, initial encounter
## 37555 Blister (nonthermal) of left thumb, subsequent encounter
## 37556 Blister (nonthermal) of left thumb, sequela
## 37557 Blister (nonthermal) of unspecified thumb, initial encounter
## 37558 Blister (nonthermal) of unspecified thumb, subsequent encounter
## 37559 Blister (nonthermal) of unspecified thumb, sequela
## 37560 External constriction of right thumb, initial encounter
## 37561 External constriction of right thumb, subsequent encounter
## 37562 External constriction of right thumb, sequela
## 37563 External constriction of left thumb, initial encounter
## 37564 External constriction of left thumb, subsequent encounter
## 37565 External constriction of left thumb, sequela
## 37566 External constriction of unspecified thumb, initial encounter
## 37567 External constriction of unspecified thumb, subsequent encounter
## 37568 External constriction of unspecified thumb, sequela
## 37569 Superficial foreign body of right thumb, initial encounter
## 37570 Superficial foreign body of right thumb, subsequent encounter
## 37571 Superficial foreign body of right thumb, sequela
## 37572 Superficial foreign body of left thumb, initial encounter
## 37573 Superficial foreign body of left thumb, subsequent encounter
## 37574 Superficial foreign body of left thumb, sequela
## 37575 Superficial foreign body of unspecified thumb, initial encounter
## 37576 Superficial foreign body of unspecified thumb, subsequent encounter
## 37577 Superficial foreign body of unspecified thumb, sequela
## 37578 Insect bite (nonvenomous) of right thumb, initial encounter
## 37579 Insect bite (nonvenomous) of right thumb, subsequent encounter
## 37580 Insect bite (nonvenomous) of right thumb, sequela
## 37581 Insect bite (nonvenomous) of left thumb, initial encounter
## 37582 Insect bite (nonvenomous) of left thumb, subsequent encounter
## 37583 Insect bite (nonvenomous) of left thumb, sequela
## 37584 Insect bite (nonvenomous) of unspecified thumb, initial encounter
## 37585 Insect bite (nonvenomous) of unspecified thumb, subsequent encounter
## 37586 Insect bite (nonvenomous) of unspecified thumb, sequela
## 37587 Other superficial bite of right thumb, initial encounter
## 37588 Other superficial bite of right thumb, subsequent encounter
## 37589 Other superficial bite of right thumb, sequela
## 37590 Other superficial bite of left thumb, initial encounter
## 37591 Other superficial bite of left thumb, subsequent encounter
## 37592 Other superficial bite of left thumb, sequela
## 37593 Other superficial bite of unspecified thumb, initial encounter
## 37594 Other superficial bite of unspecified thumb, subsequent encounter
## 37595 Other superficial bite of unspecified thumb, sequela
## 37596 Other superficial injuries of right thumb, initial encounter
## 37597 Other superficial injuries of right thumb, subsequent encounter
## 37598 Other superficial injuries of right thumb, sequela
## 37599 Other superficial injuries of left thumb, initial encounter
## 37600 Other superficial injuries of left thumb, subsequent encounter
## 37601 Other superficial injuries of left thumb, sequela
## 37602 Other superficial injuries of unspecified thumb, initial encounter
## 37603 Other superficial injuries of unspecified thumb, subsequent encounter
## 37604 Other superficial injuries of unspecified thumb, sequela
## 37605 Abrasion of right index finger, initial encounter
## 37606 Abrasion of right index finger, subsequent encounter
## 37607 Abrasion of right index finger, sequela
## 37608 Abrasion of left index finger, initial encounter
## 37609 Abrasion of left index finger, subsequent encounter
## 37610 Abrasion of left index finger, sequela
## 37611 Abrasion of right middle finger, initial encounter
## 37612 Abrasion of right middle finger, subsequent encounter
## 37613 Abrasion of right middle finger, sequela
## 37614 Abrasion of left middle finger, initial encounter
## 37615 Abrasion of left middle finger, subsequent encounter
## 37616 Abrasion of left middle finger, sequela
## 37617 Abrasion of right ring finger, initial encounter
## 37618 Abrasion of right ring finger, subsequent encounter
## 37619 Abrasion of right ring finger, sequela
## 37620 Abrasion of left ring finger, initial encounter
## 37621 Abrasion of left ring finger, subsequent encounter
## 37622 Abrasion of left ring finger, sequela
## 37623 Abrasion of right little finger, initial encounter
## 37624 Abrasion of right little finger, subsequent encounter
## 37625 Abrasion of right little finger, sequela
## 37626 Abrasion of left little finger, initial encounter
## 37627 Abrasion of left little finger, subsequent encounter
## 37628 Abrasion of left little finger, sequela
## 37629 Abrasion of other finger, initial encounter
## 37630 Abrasion of other finger, subsequent encounter
## 37631 Abrasion of other finger, sequela
## 37632 Abrasion of unspecified finger, initial encounter
## 37633 Abrasion of unspecified finger, subsequent encounter
## 37634 Abrasion of unspecified finger, sequela
## 37635 Blister (nonthermal) of right index finger, initial encounter
## 37636 Blister (nonthermal) of right index finger, subsequent encounter
## 37637 Blister (nonthermal) of right index finger, sequela
## 37638 Blister (nonthermal) of left index finger, initial encounter
## 37639 Blister (nonthermal) of left index finger, subsequent encounter
## 37640 Blister (nonthermal) of left index finger, sequela
## 37641 Blister (nonthermal) of right middle finger, initial encounter
## 37642 Blister (nonthermal) of right middle finger, subsequent encounter
## 37643 Blister (nonthermal) of right middle finger, sequela
## 37644 Blister (nonthermal) of left middle finger, initial encounter
## 37645 Blister (nonthermal) of left middle finger, subsequent encounter
## 37646 Blister (nonthermal) of left middle finger, sequela
## 37647 Blister (nonthermal) of right ring finger, initial encounter
## 37648 Blister (nonthermal) of right ring finger, subsequent encounter
## 37649 Blister (nonthermal) of right ring finger, sequela
## 37650 Blister (nonthermal) of left ring finger, initial encounter
## 37651 Blister (nonthermal) of left ring finger, subsequent encounter
## 37652 Blister (nonthermal) of left ring finger, sequela
## 37653 Blister (nonthermal) of right little finger, initial encounter
## 37654 Blister (nonthermal) of right little finger, subsequent encounter
## 37655 Blister (nonthermal) of right little finger, sequela
## 37656 Blister (nonthermal) of left little finger, initial encounter
## 37657 Blister (nonthermal) of left little finger, subsequent encounter
## 37658 Blister (nonthermal) of left little finger, sequela
## 37659 Blister (nonthermal) of other finger, initial encounter
## 37660 Blister (nonthermal) of other finger, subsequent encounter
## 37661 Blister (nonthermal) of other finger, sequela
## 37662 Blister (nonthermal) of unspecified finger, initial encounter
## 37663 Blister (nonthermal) of unspecified finger, subsequent encounter
## 37664 Blister (nonthermal) of unspecified finger, sequela
## 37665 External constriction of right index finger, initial encounter
## 37666 External constriction of right index finger, subsequent encounter
## 37667 External constriction of right index finger, sequela
## 37668 External constriction of left index finger, initial encounter
## 37669 External constriction of left index finger, subsequent encounter
## 37670 External constriction of left index finger, sequela
## 37671 External constriction of right middle finger, initial encounter
## 37672 External constriction of right middle finger, subsequent encounter
## 37673 External constriction of right middle finger, sequela
## 37674 External constriction of left middle finger, initial encounter
## 37675 External constriction of left middle finger, subsequent encounter
## 37676 External constriction of left middle finger, sequela
## 37677 External constriction of right ring finger, initial encounter
## 37678 External constriction of right ring finger, subsequent encounter
## 37679 External constriction of right ring finger, sequela
## 37680 External constriction of left ring finger, initial encounter
## 37681 External constriction of left ring finger, subsequent encounter
## 37682 External constriction of left ring finger, sequela
## 37683 External constriction of right little finger, initial encounter
## 37684 External constriction of right little finger, subsequent encounter
## 37685 External constriction of right little finger, sequela
## 37686 External constriction of left little finger, initial encounter
## 37687 External constriction of left little finger, subsequent encounter
## 37688 External constriction of left little finger, sequela
## 37689 External constriction of other finger, initial encounter
## 37690 External constriction of other finger, subsequent encounter
## 37691 External constriction of other finger, sequela
## 37692 External constriction of unspecified finger, initial encounter
## 37693 External constriction of unspecified finger, subsequent encounter
## 37694 External constriction of unspecified finger, sequela
## 37695 Superficial foreign body of right index finger, initial encounter
## 37696 Superficial foreign body of right index finger, subsequent encounter
## 37697 Superficial foreign body of right index finger, sequela
## 37698 Superficial foreign body of left index finger, initial encounter
## 37699 Superficial foreign body of left index finger, subsequent encounter
## 37700 Superficial foreign body of left index finger, sequela
## 37701 Superficial foreign body of right middle finger, initial encounter
## 37702 Superficial foreign body of right middle finger, subsequent encounter
## 37703 Superficial foreign body of right middle finger, sequela
## 37704 Superficial foreign body of left middle finger, initial encounter
## 37705 Superficial foreign body of left middle finger, subsequent encounter
## 37706 Superficial foreign body of left middle finger, sequela
## 37707 Superficial foreign body of right ring finger, initial encounter
## 37708 Superficial foreign body of right ring finger, subsequent encounter
## 37709 Superficial foreign body of right ring finger, sequela
## 37710 Superficial foreign body of left ring finger, initial encounter
## 37711 Superficial foreign body of left ring finger, subsequent encounter
## 37712 Superficial foreign body of left ring finger, sequela
## 37713 Superficial foreign body of right little finger, initial encounter
## 37714 Superficial foreign body of right little finger, subsequent encounter
## 37715 Superficial foreign body of right little finger, sequela
## 37716 Superficial foreign body of left little finger, initial encounter
## 37717 Superficial foreign body of left little finger, subsequent encounter
## 37718 Superficial foreign body of left little finger, sequela
## 37719 Superficial foreign body of other finger, initial encounter
## 37720 Superficial foreign body of other finger, subsequent encounter
## 37721 Superficial foreign body of other finger, sequela
## 37722 Superficial foreign body of unspecified finger, initial encounter
## 37723 Superficial foreign body of unspecified finger, subsequent encounter
## 37724 Superficial foreign body of unspecified finger, sequela
## 37725 Insect bite (nonvenomous) of right index finger, initial encounter
## 37726 Insect bite (nonvenomous) of right index finger, subsequent encounter
## 37727 Insect bite (nonvenomous) of right index finger, sequela
## 37728 Insect bite (nonvenomous) of left index finger, initial encounter
## 37729 Insect bite (nonvenomous) of left index finger, subsequent encounter
## 37730 Insect bite (nonvenomous) of left index finger, sequela
## 37731 Insect bite (nonvenomous) of right middle finger, initial encounter
## 37732 Insect bite (nonvenomous) of right middle finger, subsequent encounter
## 37733 Insect bite (nonvenomous) of right middle finger, sequela
## 37734 Insect bite (nonvenomous) of left middle finger, initial encounter
## 37735 Insect bite (nonvenomous) of left middle finger, subsequent encounter
## 37736 Insect bite (nonvenomous) of left middle finger, sequela
## 37737 Insect bite (nonvenomous) of right ring finger, initial encounter
## 37738 Insect bite (nonvenomous) of right ring finger, subsequent encounter
## 37739 Insect bite (nonvenomous) of right ring finger, sequela
## 37740 Insect bite (nonvenomous) of left ring finger, initial encounter
## 37741 Insect bite (nonvenomous) of left ring finger, subsequent encounter
## 37742 Insect bite (nonvenomous) of left ring finger, sequela
## 37743 Insect bite (nonvenomous) of right little finger, initial encounter
## 37744 Insect bite (nonvenomous) of right little finger, subsequent encounter
## 37745 Insect bite (nonvenomous) of right little finger, sequela
## 37746 Insect bite (nonvenomous) of left little finger, initial encounter
## 37747 Insect bite (nonvenomous) of left little finger, subsequent encounter
## 37748 Insect bite (nonvenomous) of left little finger, sequela
## 37749 Insect bite (nonvenomous) of other finger, initial encounter
## 37750 Insect bite (nonvenomous) of other finger, subsequent encounter
## 37751 Insect bite (nonvenomous) of other finger, sequela
## 37752 Insect bite (nonvenomous) of unspecified finger, initial encounter
## 37753 Insect bite (nonvenomous) of unspecified finger, subsequent encounter
## 37754 Insect bite (nonvenomous) of unspecified finger, sequela
## 37755 Other superficial bite of right index finger, initial encounter
## 37756 Other superficial bite of right index finger, subsequent encounter
## 37757 Other superficial bite of right index finger, sequela
## 37758 Other superficial bite of left index finger, initial encounter
## 37759 Other superficial bite of left index finger, subsequent encounter
## 37760 Other superficial bite of left index finger, sequela
## 37761 Other superficial bite of right middle finger, initial encounter
## 37762 Other superficial bite of right middle finger, subsequent encounter
## 37763 Other superficial bite of right middle finger, sequela
## 37764 Other superficial bite of left middle finger, initial encounter
## 37765 Other superficial bite of left middle finger, subsequent encounter
## 37766 Other superficial bite of left middle finger, sequela
## 37767 Other superficial bite of right ring finger, initial encounter
## 37768 Other superficial bite of right ring finger, subsequent encounter
## 37769 Other superficial bite of right ring finger, sequela
## 37770 Other superficial bite of left ring finger, initial encounter
## 37771 Other superficial bite of left ring finger, subsequent encounter
## 37772 Other superficial bite of left ring finger, sequela
## 37773 Other superficial bite of right little finger, initial encounter
## 37774 Other superficial bite of right little finger, subsequent encounter
## 37775 Other superficial bite of right little finger, sequela
## 37776 Other superficial bite of left little finger, initial encounter
## 37777 Other superficial bite of left little finger, subsequent encounter
## 37778 Other superficial bite of left little finger, sequela
## 37779 Other superficial bite of other finger, initial encounter
## 37780 Other superficial bite of other finger, subsequent encounter
## 37781 Other superficial bite of other finger, sequela
## 37782 Other superficial bite of unspecified finger, initial encounter
## 37783 Other superficial bite of unspecified finger, subsequent encounter
## 37784 Other superficial bite of unspecified finger, sequela
## 37785 Abrasion of right hand, initial encounter
## 37786 Abrasion of right hand, subsequent encounter
## 37787 Abrasion of right hand, sequela
## 37788 Abrasion of left hand, initial encounter
## 37789 Abrasion of left hand, subsequent encounter
## 37790 Abrasion of left hand, sequela
## 37791 Abrasion of unspecified hand, initial encounter
## 37792 Abrasion of unspecified hand, subsequent encounter
## 37793 Abrasion of unspecified hand, sequela
## 37794 Blister (nonthermal) of right hand, initial encounter
## 37795 Blister (nonthermal) of right hand, subsequent encounter
## 37796 Blister (nonthermal) of right hand, sequela
## 37797 Blister (nonthermal) of left hand, initial encounter
## 37798 Blister (nonthermal) of left hand, subsequent encounter
## 37799 Blister (nonthermal) of left hand, sequela
## 37800 Blister (nonthermal) of unspecified hand, initial encounter
## 37801 Blister (nonthermal) of unspecified hand, subsequent encounter
## 37802 Blister (nonthermal) of unspecified hand, sequela
## 37803 External constriction of right hand, initial encounter
## 37804 External constriction of right hand, subsequent encounter
## 37805 External constriction of right hand, sequela
## 37806 External constriction of left hand, initial encounter
## 37807 External constriction of left hand, subsequent encounter
## 37808 External constriction of left hand, sequela
## 37809 External constriction of unspecified hand, initial encounter
## 37810 External constriction of unspecified hand, subsequent encounter
## 37811 External constriction of unspecified hand, sequela
## 37812 Superficial foreign body of right hand, initial encounter
## 37813 Superficial foreign body of right hand, subsequent encounter
## 37814 Superficial foreign body of right hand, sequela
## 37815 Superficial foreign body of left hand, initial encounter
## 37816 Superficial foreign body of left hand, subsequent encounter
## 37817 Superficial foreign body of left hand, sequela
## 37818 Superficial foreign body of unspecified hand, initial encounter
## 37819 Superficial foreign body of unspecified hand, subsequent encounter
## 37820 Superficial foreign body of unspecified hand, sequela
## 37821 Insect bite (nonvenomous) of right hand, initial encounter
## 37822 Insect bite (nonvenomous) of right hand, subsequent encounter
## 37823 Insect bite (nonvenomous) of right hand, sequela
## 37824 Insect bite (nonvenomous) of left hand, initial encounter
## 37825 Insect bite (nonvenomous) of left hand, subsequent encounter
## 37826 Insect bite (nonvenomous) of left hand, sequela
## 37827 Insect bite (nonvenomous) of unspecified hand, initial encounter
## 37828 Insect bite (nonvenomous) of unspecified hand, subsequent encounter
## 37829 Insect bite (nonvenomous) of unspecified hand, sequela
## 37830 Other superficial bite of hand of right hand, initial encounter
## 37831 Other superficial bite of hand of right hand, subsequent encounter
## 37832 Other superficial bite of hand of right hand, sequela
## 37833 Other superficial bite of hand of left hand, initial encounter
## 37834 Other superficial bite of hand of left hand, subsequent encounter
## 37835 Other superficial bite of hand of left hand, sequela
## 37836 Other superficial bite of hand of unspecified hand, initial encounter
## 37837 Other superficial bite of hand of unspecified hand, subsequent encounter
## 37838 Other superficial bite of hand of unspecified hand, sequela
## 37839 Abrasion of right wrist, initial encounter
## 37840 Abrasion of right wrist, subsequent encounter
## 37841 Abrasion of right wrist, sequela
## 37842 Abrasion of left wrist, initial encounter
## 37843 Abrasion of left wrist, subsequent encounter
## 37844 Abrasion of left wrist, sequela
## 37845 Abrasion of unspecified wrist, initial encounter
## 37846 Abrasion of unspecified wrist, subsequent encounter
## 37847 Abrasion of unspecified wrist, sequela
## 37848 Blister (nonthermal) of right wrist, initial encounter
## 37849 Blister (nonthermal) of right wrist, subsequent encounter
## 37850 Blister (nonthermal) of right wrist, sequela
## 37851 Blister (nonthermal) of left wrist, initial encounter
## 37852 Blister (nonthermal) of left wrist, subsequent encounter
## 37853 Blister (nonthermal) of left wrist, sequela
## 37854 Blister (nonthermal) of unspecified wrist, initial encounter
## 37855 Blister (nonthermal) of unspecified wrist, subsequent encounter
## 37856 Blister (nonthermal) of unspecified wrist, sequela
## 37857 External constriction of right wrist, initial encounter
## 37858 External constriction of right wrist, subsequent encounter
## 37859 External constriction of right wrist, sequela
## 37860 External constriction of left wrist, initial encounter
## 37861 External constriction of left wrist, subsequent encounter
## 37862 External constriction of left wrist, sequela
## 37863 External constriction of unspecified wrist, initial encounter
## 37864 External constriction of unspecified wrist, subsequent encounter
## 37865 External constriction of unspecified wrist, sequela
## 37866 Superficial foreign body of right wrist, initial encounter
## 37867 Superficial foreign body of right wrist, subsequent encounter
## 37868 Superficial foreign body of right wrist, sequela
## 37869 Superficial foreign body of left wrist, initial encounter
## 37870 Superficial foreign body of left wrist, subsequent encounter
## 37871 Superficial foreign body of left wrist, sequela
## 37872 Superficial foreign body of unspecified wrist, initial encounter
## 37873 Superficial foreign body of unspecified wrist, subsequent encounter
## 37874 Superficial foreign body of unspecified wrist, sequela
## 37875 Insect bite (nonvenomous) of right wrist, initial encounter
## 37876 Insect bite (nonvenomous) of right wrist, subsequent encounter
## 37877 Insect bite (nonvenomous) of right wrist, sequela
## 37878 Insect bite (nonvenomous) of left wrist, initial encounter
## 37879 Insect bite (nonvenomous) of left wrist, subsequent encounter
## 37880 Insect bite (nonvenomous) of left wrist, sequela
## 37881 Insect bite (nonvenomous) of unspecified wrist, initial encounter
## 37882 Insect bite (nonvenomous) of unspecified wrist, subsequent encounter
## 37883 Insect bite (nonvenomous) of unspecified wrist, sequela
## 37884 Other superficial bite of right wrist, initial encounter
## 37885 Other superficial bite of right wrist, subsequent encounter
## 37886 Other superficial bite of right wrist, sequela
## 37887 Other superficial bite of left wrist, initial encounter
## 37888 Other superficial bite of left wrist, subsequent encounter
## 37889 Other superficial bite of left wrist, sequela
## 37890 Other superficial bite of unspecified wrist, initial encounter
## 37891 Other superficial bite of unspecified wrist, subsequent encounter
## 37892 Other superficial bite of unspecified wrist, sequela
## 37893 Unspecified superficial injury of right wrist, initial encounter
## 37894 Unspecified superficial injury of right wrist, subsequent encounter
## 37895 Unspecified superficial injury of right wrist, sequela
## 37896 Unspecified superficial injury of left wrist, initial encounter
## 37897 Unspecified superficial injury of left wrist, subsequent encounter
## 37898 Unspecified superficial injury of left wrist, sequela
## 37899 Unspecified superficial injury of unspecified wrist, initial encounter
## 37900 Unspecified superficial injury of unspecified wrist, subsequent encounter
## 37901 Unspecified superficial injury of unspecified wrist, sequela
## 37902 Unspecified superficial injury of right hand, initial encounter
## 37903 Unspecified superficial injury of right hand, subsequent encounter
## 37904 Unspecified superficial injury of right hand, sequela
## 37905 Unspecified superficial injury of left hand, initial encounter
## 37906 Unspecified superficial injury of left hand, subsequent encounter
## 37907 Unspecified superficial injury of left hand, sequela
## 37908 Unspecified superficial injury of unspecified hand, initial encounter
## 37909 Unspecified superficial injury of unspecified hand, subsequent encounter
## 37910 Unspecified superficial injury of unspecified hand, sequela
## 37911 Unspecified superficial injury of right thumb, initial encounter
## 37912 Unspecified superficial injury of right thumb, subsequent encounter
## 37913 Unspecified superficial injury of right thumb, sequela
## 37914 Unspecified superficial injury of left thumb, initial encounter
## 37915 Unspecified superficial injury of left thumb, subsequent encounter
## 37916 Unspecified superficial injury of left thumb, sequela
## 37917 Unspecified superficial injury of unspecified thumb, initial encounter
## 37918 Unspecified superficial injury of unspecified thumb, subsequent encounter
## 37919 Unspecified superficial injury of unspecified thumb, sequela
## 37920 Unspecified superficial injury of right index finger, initial encounter
## 37921 Unspecified superficial injury of right index finger, subsequent encounter
## 37922 Unspecified superficial injury of right index finger, sequela
## 37923 Unspecified superficial injury of left index finger, initial encounter
## 37924 Unspecified superficial injury of left index finger, subsequent encounter
## 37925 Unspecified superficial injury of left index finger, sequela
## 37926 Unspecified superficial injury of right middle finger, initial encounter
## 37927 Unspecified superficial injury of right middle finger, subsequent encounter
## 37928 Unspecified superficial injury of right middle finger, sequela
## 37929 Unspecified superficial injury of left middle finger, initial encounter
## 37930 Unspecified superficial injury of left middle finger, subsequent encounter
## 37931 Unspecified superficial injury of left middle finger, sequela
## 37932 Unspecified superficial injury of right ring finger, initial encounter
## 37933 Unspecified superficial injury of right ring finger, subsequent encounter
## 37934 Unspecified superficial injury of right ring finger, sequela
## 37935 Unspecified superficial injury of left ring finger, initial encounter
## 37936 Unspecified superficial injury of left ring finger, subsequent encounter
## 37937 Unspecified superficial injury of left ring finger, sequela
## 37938 Unspecified superficial injury of right little finger, initial encounter
## 37939 Unspecified superficial injury of right little finger, subsequent encounter
## 37940 Unspecified superficial injury of right little finger, sequela
## 37941 Unspecified superficial injury of left little finger, initial encounter
## 37942 Unspecified superficial injury of left little finger, subsequent encounter
## 37943 Unspecified superficial injury of left little finger, sequela
## 37944 Unspecified superficial injury of other finger, initial encounter
## 37945 Unspecified superficial injury of other finger, subsequent encounter
## 37946 Unspecified superficial injury of other finger, sequela
## 37947 Unspecified superficial injury of unspecified finger, initial encounter
## 37948 Unspecified superficial injury of unspecified finger, subsequent encounter
## 37949 Unspecified superficial injury of unspecified finger, sequela
## 37950 Unspecified open wound of right thumb without damage to nail, initial encounter
## 37951 Unspecified open wound of right thumb without damage to nail, subsequent encounter
## 37952 Unspecified open wound of right thumb without damage to nail, sequela
## 37953 Unspecified open wound of left thumb without damage to nail, initial encounter
## 37954 Unspecified open wound of left thumb without damage to nail, subsequent encounter
## 37955 Unspecified open wound of left thumb without damage to nail, sequela
## 37956 Unspecified open wound of unspecified thumb without damage to nail, initial encounter
## 37957 Unspecified open wound of unspecified thumb without damage to nail, subsequent encounter
## 37958 Unspecified open wound of unspecified thumb without damage to nail, sequela
## 37959 Laceration without foreign body of right thumb without damage to nail, initial encounter
## 37960 Laceration without foreign body of right thumb without damage to nail, subsequent encounter
## 37961 Laceration without foreign body of right thumb without damage to nail, sequela
## 37962 Laceration without foreign body of left thumb without damage to nail, initial encounter
## 37963 Laceration without foreign body of left thumb without damage to nail, subsequent encounter
## 37964 Laceration without foreign body of left thumb without damage to nail, sequela
## 37965 Laceration without foreign body of unspecified thumb without damage to nail, initial encounter
## 37966 Laceration without foreign body of unspecified thumb without damage to nail, subsequent encounter
## 37967 Laceration without foreign body of unspecified thumb without damage to nail, sequela
## 37968 Laceration with foreign body of right thumb without damage to nail, initial encounter
## 37969 Laceration with foreign body of right thumb without damage to nail, subsequent encounter
## 37970 Laceration with foreign body of right thumb without damage to nail, sequela
## 37971 Laceration with foreign body of left thumb without damage to nail, initial encounter
## 37972 Laceration with foreign body of left thumb without damage to nail, subsequent encounter
## 37973 Laceration with foreign body of left thumb without damage to nail, sequela
## 37974 Laceration with foreign body of unspecified thumb without damage to nail, initial encounter
## 37975 Laceration with foreign body of unspecified thumb without damage to nail, subsequent encounter
## 37976 Laceration with foreign body of unspecified thumb without damage to nail, sequela
## 37977 Puncture wound without foreign body of right thumb without damage to nail, initial encounter
## 37978 Puncture wound without foreign body of right thumb without damage to nail, subsequent encounter
## 37979 Puncture wound without foreign body of right thumb without damage to nail, sequela
## 37980 Puncture wound without foreign body of left thumb without damage to nail, initial encounter
## 37981 Puncture wound without foreign body of left thumb without damage to nail, subsequent encounter
## 37982 Puncture wound without foreign body of left thumb without damage to nail, sequela
## 37983 Puncture wound without foreign body of unspecified thumb without damage to nail, initial encounter
## 37984 Puncture wound without foreign body of unspecified thumb without damage to nail, subsequent encounter
## 37985 Puncture wound without foreign body of unspecified thumb without damage to nail, sequela
## 37986 Puncture wound with foreign body of right thumb without damage to nail, initial encounter
## 37987 Puncture wound with foreign body of right thumb without damage to nail, subsequent encounter
## 37988 Puncture wound with foreign body of right thumb without damage to nail, sequela
## 37989 Puncture wound with foreign body of left thumb without damage to nail, initial encounter
## 37990 Puncture wound with foreign body of left thumb without damage to nail, subsequent encounter
## 37991 Puncture wound with foreign body of left thumb without damage to nail, sequela
## 37992 Puncture wound with foreign body of unspecified thumb without damage to nail, initial encounter
## 37993 Puncture wound with foreign body of unspecified thumb without damage to nail, subsequent encounter
## 37994 Puncture wound with foreign body of unspecified thumb without damage to nail, sequela
## 37995 Open bite of right thumb without damage to nail, initial encounter
## 37996 Open bite of right thumb without damage to nail, subsequent encounter
## 37997 Open bite of right thumb without damage to nail, sequela
## 37998 Open bite of left thumb without damage to nail, initial encounter
## 37999 Open bite of left thumb without damage to nail, subsequent encounter
## 38000 Open bite of left thumb without damage to nail, sequela
## 38001 Open bite of unspecified thumb without damage to nail, initial encounter
## 38002 Open bite of unspecified thumb without damage to nail, subsequent encounter
## 38003 Open bite of unspecified thumb without damage to nail, sequela
## 38004 Unspecified open wound of right thumb with damage to nail, initial encounter
## 38005 Unspecified open wound of right thumb with damage to nail, subsequent encounter
## 38006 Unspecified open wound of right thumb with damage to nail, sequela
## 38007 Unspecified open wound of left thumb with damage to nail, initial encounter
## 38008 Unspecified open wound of left thumb with damage to nail, subsequent encounter
## 38009 Unspecified open wound of left thumb with damage to nail, sequela
## 38010 Unspecified open wound of unspecified thumb with damage to nail, initial encounter
## 38011 Unspecified open wound of unspecified thumb with damage to nail, subsequent encounter
## 38012 Unspecified open wound of unspecified thumb with damage to nail, sequela
## 38013 Laceration without foreign body of right thumb with damage to nail, initial encounter
## 38014 Laceration without foreign body of right thumb with damage to nail, subsequent encounter
## 38015 Laceration without foreign body of right thumb with damage to nail, sequela
## 38016 Laceration without foreign body of left thumb with damage to nail, initial encounter
## 38017 Laceration without foreign body of left thumb with damage to nail, subsequent encounter
## 38018 Laceration without foreign body of left thumb with damage to nail, sequela
## 38019 Laceration without foreign body of unspecified thumb with damage to nail, initial encounter
## 38020 Laceration without foreign body of unspecified thumb with damage to nail, subsequent encounter
## 38021 Laceration without foreign body of unspecified thumb with damage to nail, sequela
## 38022 Laceration with foreign body of right thumb with damage to nail, initial encounter
## 38023 Laceration with foreign body of right thumb with damage to nail, subsequent encounter
## 38024 Laceration with foreign body of right thumb with damage to nail, sequela
## 38025 Laceration with foreign body of left thumb with damage to nail, initial encounter
## 38026 Laceration with foreign body of left thumb with damage to nail, subsequent encounter
## 38027 Laceration with foreign body of left thumb with damage to nail, sequela
## 38028 Laceration with foreign body of unspecified thumb with damage to nail, initial encounter
## 38029 Laceration with foreign body of unspecified thumb with damage to nail, subsequent encounter
## 38030 Laceration with foreign body of unspecified thumb with damage to nail, sequela
## 38031 Puncture wound without foreign body of right thumb with damage to nail, initial encounter
## 38032 Puncture wound without foreign body of right thumb with damage to nail, subsequent encounter
## 38033 Puncture wound without foreign body of right thumb with damage to nail, sequela
## 38034 Puncture wound without foreign body of left thumb with damage to nail, initial encounter
## 38035 Puncture wound without foreign body of left thumb with damage to nail, subsequent encounter
## 38036 Puncture wound without foreign body of left thumb with damage to nail, sequela
## 38037 Puncture wound without foreign body of unspecified thumb with damage to nail, initial encounter
## 38038 Puncture wound without foreign body of unspecified thumb with damage to nail, subsequent encounter
## 38039 Puncture wound without foreign body of unspecified thumb with damage to nail, sequela
## 38040 Puncture wound with foreign body of right thumb with damage to nail, initial encounter
## 38041 Puncture wound with foreign body of right thumb with damage to nail, subsequent encounter
## 38042 Puncture wound with foreign body of right thumb with damage to nail, sequela
## 38043 Puncture wound with foreign body of left thumb with damage to nail, initial encounter
## 38044 Puncture wound with foreign body of left thumb with damage to nail, subsequent encounter
## 38045 Puncture wound with foreign body of left thumb with damage to nail, sequela
## 38046 Puncture wound with foreign body of unspecified thumb with damage to nail, initial encounter
## 38047 Puncture wound with foreign body of unspecified thumb with damage to nail, subsequent encounter
## 38048 Puncture wound with foreign body of unspecified thumb with damage to nail, sequela
## 38049 Open bite of right thumb with damage to nail, initial encounter
## 38050 Open bite of right thumb with damage to nail, subsequent encounter
## 38051 Open bite of right thumb with damage to nail, sequela
## 38052 Open bite of left thumb with damage to nail, initial encounter
## 38053 Open bite of left thumb with damage to nail, subsequent encounter
## 38054 Open bite of left thumb with damage to nail, sequela
## 38055 Open bite of unspecified thumb with damage to nail, initial encounter
## 38056 Open bite of unspecified thumb with damage to nail, subsequent encounter
## 38057 Open bite of unspecified thumb with damage to nail, sequela
## 38058 Unspecified open wound of right index finger without damage to nail, initial encounter
## 38059 Unspecified open wound of right index finger without damage to nail, subsequent encounter
## 38060 Unspecified open wound of right index finger without damage to nail, sequela
## 38061 Unspecified open wound of left index finger without damage to nail, initial encounter
## 38062 Unspecified open wound of left index finger without damage to nail, subsequent encounter
## 38063 Unspecified open wound of left index finger without damage to nail, sequela
## 38064 Unspecified open wound of right middle finger without damage to nail, initial encounter
## 38065 Unspecified open wound of right middle finger without damage to nail, subsequent encounter
## 38066 Unspecified open wound of right middle finger without damage to nail, sequela
## 38067 Unspecified open wound of left middle finger without damage to nail, initial encounter
## 38068 Unspecified open wound of left middle finger without damage to nail, subsequent encounter
## 38069 Unspecified open wound of left middle finger without damage to nail, sequela
## 38070 Unspecified open wound of right ring finger without damage to nail, initial encounter
## 38071 Unspecified open wound of right ring finger without damage to nail, subsequent encounter
## 38072 Unspecified open wound of right ring finger without damage to nail, sequela
## 38073 Unspecified open wound of left ring finger without damage to nail, initial encounter
## 38074 Unspecified open wound of left ring finger without damage to nail, subsequent encounter
## 38075 Unspecified open wound of left ring finger without damage to nail, sequela
## 38076 Unspecified open wound of right little finger without damage to nail, initial encounter
## 38077 Unspecified open wound of right little finger without damage to nail, subsequent encounter
## 38078 Unspecified open wound of right little finger without damage to nail, sequela
## 38079 Unspecified open wound of left little finger without damage to nail, initial encounter
## 38080 Unspecified open wound of left little finger without damage to nail, subsequent encounter
## 38081 Unspecified open wound of left little finger without damage to nail, sequela
## 38082 Unspecified open wound of other finger without damage to nail, initial encounter
## 38083 Unspecified open wound of other finger without damage to nail, subsequent encounter
## 38084 Unspecified open wound of other finger without damage to nail, sequela
## 38085 Unspecified open wound of unspecified finger without damage to nail, initial encounter
## 38086 Unspecified open wound of unspecified finger without damage to nail, subsequent encounter
## 38087 Unspecified open wound of unspecified finger without damage to nail, sequela
## 38088 Laceration without foreign body of right index finger without damage to nail, initial encounter
## 38089 Laceration without foreign body of right index finger without damage to nail, subsequent encounter
## 38090 Laceration without foreign body of right index finger without damage to nail, sequela
## 38091 Laceration without foreign body of left index finger without damage to nail, initial encounter
## 38092 Laceration without foreign body of left index finger without damage to nail, subsequent encounter
## 38093 Laceration without foreign body of left index finger without damage to nail, sequela
## 38094 Laceration without foreign body of right middle finger without damage to nail, initial encounter
## 38095 Laceration without foreign body of right middle finger without damage to nail, subsequent encounter
## 38096 Laceration without foreign body of right middle finger without damage to nail, sequela
## 38097 Laceration without foreign body of left middle finger without damage to nail, initial encounter
## 38098 Laceration without foreign body of left middle finger without damage to nail, subsequent encounter
## 38099 Laceration without foreign body of left middle finger without damage to nail, sequela
## 38100 Laceration without foreign body of right ring finger without damage to nail, initial encounter
## 38101 Laceration without foreign body of right ring finger without damage to nail, subsequent encounter
## 38102 Laceration without foreign body of right ring finger without damage to nail, sequela
## 38103 Laceration without foreign body of left ring finger without damage to nail, initial encounter
## 38104 Laceration without foreign body of left ring finger without damage to nail, subsequent encounter
## 38105 Laceration without foreign body of left ring finger without damage to nail, sequela
## 38106 Laceration without foreign body of right little finger without damage to nail, initial encounter
## 38107 Laceration without foreign body of right little finger without damage to nail, subsequent encounter
## 38108 Laceration without foreign body of right little finger without damage to nail, sequela
## 38109 Laceration without foreign body of left little finger without damage to nail, initial encounter
## 38110 Laceration without foreign body of left little finger without damage to nail, subsequent encounter
## 38111 Laceration without foreign body of left little finger without damage to nail, sequela
## 38112 Laceration without foreign body of other finger without damage to nail, initial encounter
## 38113 Laceration without foreign body of other finger without damage to nail, subsequent encounter
## 38114 Laceration without foreign body of other finger without damage to nail, sequela
## 38115 Laceration without foreign body of unspecified finger without damage to nail, initial encounter
## 38116 Laceration without foreign body of unspecified finger without damage to nail, subsequent encounter
## 38117 Laceration without foreign body of unspecified finger without damage to nail, sequela
## 38118 Laceration with foreign body of right index finger without damage to nail, initial encounter
## 38119 Laceration with foreign body of right index finger without damage to nail, subsequent encounter
## 38120 Laceration with foreign body of right index finger without damage to nail, sequela
## 38121 Laceration with foreign body of left index finger without damage to nail, initial encounter
## 38122 Laceration with foreign body of left index finger without damage to nail, subsequent encounter
## 38123 Laceration with foreign body of left index finger without damage to nail, sequela
## 38124 Laceration with foreign body of right middle finger without damage to nail, initial encounter
## 38125 Laceration with foreign body of right middle finger without damage to nail, subsequent encounter
## 38126 Laceration with foreign body of right middle finger without damage to nail, sequela
## 38127 Laceration with foreign body of left middle finger without damage to nail, initial encounter
## 38128 Laceration with foreign body of left middle finger without damage to nail, subsequent encounter
## 38129 Laceration with foreign body of left middle finger without damage to nail, sequela
## 38130 Laceration with foreign body of right ring finger without damage to nail, initial encounter
## 38131 Laceration with foreign body of right ring finger without damage to nail, subsequent encounter
## 38132 Laceration with foreign body of right ring finger without damage to nail, sequela
## 38133 Laceration with foreign body of left ring finger without damage to nail, initial encounter
## 38134 Laceration with foreign body of left ring finger without damage to nail, subsequent encounter
## 38135 Laceration with foreign body of left ring finger without damage to nail, sequela
## 38136 Laceration with foreign body of right little finger without damage to nail, initial encounter
## 38137 Laceration with foreign body of right little finger without damage to nail, subsequent encounter
## 38138 Laceration with foreign body of right little finger without damage to nail, sequela
## 38139 Laceration with foreign body of left little finger without damage to nail, initial encounter
## 38140 Laceration with foreign body of left little finger without damage to nail, subsequent encounter
## 38141 Laceration with foreign body of left little finger without damage to nail, sequela
## 38142 Laceration with foreign body of other finger without damage to nail, initial encounter
## 38143 Laceration with foreign body of other finger without damage to nail, subsequent encounter
## 38144 Laceration with foreign body of other finger without damage to nail, sequela
## 38145 Laceration with foreign body of unspecified finger without damage to nail, initial encounter
## 38146 Laceration with foreign body of unspecified finger without damage to nail, subsequent encounter
## 38147 Laceration with foreign body of unspecified finger without damage to nail, sequela
## 38148 Puncture wound without foreign body of right index finger without damage to nail, initial encounter
## 38149 Puncture wound without foreign body of right index finger without damage to nail, subsequent encounter
## 38150 Puncture wound without foreign body of right index finger without damage to nail, sequela
## 38151 Puncture wound without foreign body of left index finger without damage to nail, initial encounter
## 38152 Puncture wound without foreign body of left index finger without damage to nail, subsequent encounter
## 38153 Puncture wound without foreign body of left index finger without damage to nail, sequela
## 38154 Puncture wound without foreign body of right middle finger without damage to nail, initial encounter
## 38155 Puncture wound without foreign body of right middle finger without damage to nail, subsequent encounter
## 38156 Puncture wound without foreign body of right middle finger without damage to nail, sequela
## 38157 Puncture wound without foreign body of left middle finger without damage to nail, initial encounter
## 38158 Puncture wound without foreign body of left middle finger without damage to nail, subsequent encounter
## 38159 Puncture wound without foreign body of left middle finger without damage to nail, sequela
## 38160 Puncture wound without foreign body of right ring finger without damage to nail, initial encounter
## 38161 Puncture wound without foreign body of right ring finger without damage to nail, subsequent encounter
## 38162 Puncture wound without foreign body of right ring finger without damage to nail, sequela
## 38163 Puncture wound without foreign body of left ring finger without damage to nail, initial encounter
## 38164 Puncture wound without foreign body of left ring finger without damage to nail, subsequent encounter
## 38165 Puncture wound without foreign body of left ring finger without damage to nail, sequela
## 38166 Puncture wound without foreign body of right little finger without damage to nail, initial encounter
## 38167 Puncture wound without foreign body of right little finger without damage to nail, subsequent encounter
## 38168 Puncture wound without foreign body of right little finger without damage to nail, sequela
## 38169 Puncture wound without foreign body of left little finger without damage to nail, initial encounter
## 38170 Puncture wound without foreign body of left little finger without damage to nail, subsequent encounter
## 38171 Puncture wound without foreign body of left little finger without damage to nail, sequela
## 38172 Puncture wound without foreign body of other finger without damage to nail, initial encounter
## 38173 Puncture wound without foreign body of other finger without damage to nail, subsequent encounter
## 38174 Puncture wound without foreign body of other finger without damage to nail, sequela
## 38175 Puncture wound without foreign body of unspecified finger without damage to nail, initial encounter
## 38176 Puncture wound without foreign body of unspecified finger without damage to nail, subsequent encounter
## 38177 Puncture wound without foreign body of unspecified finger without damage to nail, sequela
## 38178 Puncture wound with foreign body of right index finger without damage to nail, initial encounter
## 38179 Puncture wound with foreign body of right index finger without damage to nail, subsequent encounter
## 38180 Puncture wound with foreign body of right index finger without damage to nail, sequela
## 38181 Puncture wound with foreign body of left index finger without damage to nail, initial encounter
## 38182 Puncture wound with foreign body of left index finger without damage to nail, subsequent encounter
## 38183 Puncture wound with foreign body of left index finger without damage to nail, sequela
## 38184 Puncture wound with foreign body of right middle finger without damage to nail, initial encounter
## 38185 Puncture wound with foreign body of right middle finger without damage to nail, subsequent encounter
## 38186 Puncture wound with foreign body of right middle finger without damage to nail, sequela
## 38187 Puncture wound with foreign body of left middle finger without damage to nail, initial encounter
## 38188 Puncture wound with foreign body of left middle finger without damage to nail, subsequent encounter
## 38189 Puncture wound with foreign body of left middle finger without damage to nail, sequela
## 38190 Puncture wound with foreign body of right ring finger without damage to nail, initial encounter
## 38191 Puncture wound with foreign body of right ring finger without damage to nail, subsequent encounter
## 38192 Puncture wound with foreign body of right ring finger without damage to nail, sequela
## 38193 Puncture wound with foreign body of left ring finger without damage to nail, initial encounter
## 38194 Puncture wound with foreign body of left ring finger without damage to nail, subsequent encounter
## 38195 Puncture wound with foreign body of left ring finger without damage to nail, sequela
## 38196 Puncture wound with foreign body of right little finger without damage to nail, initial encounter
## 38197 Puncture wound with foreign body of right little finger without damage to nail, subsequent encounter
## 38198 Puncture wound with foreign body of right little finger without damage to nail, sequela
## 38199 Puncture wound with foreign body of left little finger without damage to nail, initial encounter
## 38200 Puncture wound with foreign body of left little finger without damage to nail, subsequent encounter
## 38201 Puncture wound with foreign body of left little finger without damage to nail, sequela
## 38202 Puncture wound with foreign body of other finger without damage to nail, initial encounter
## 38203 Puncture wound with foreign body of other finger without damage to nail, subsequent encounter
## 38204 Puncture wound with foreign body of other finger without damage to nail, sequela
## 38205 Puncture wound with foreign body of unspecified finger without damage to nail, initial encounter
## 38206 Puncture wound with foreign body of unspecified finger without damage to nail, subsequent encounter
## 38207 Puncture wound with foreign body of unspecified finger without damage to nail, sequela
## 38208 Open bite of right index finger without damage to nail, initial encounter
## 38209 Open bite of right index finger without damage to nail, subsequent encounter
## 38210 Open bite of right index finger without damage to nail, sequela
## 38211 Open bite of left index finger without damage to nail, initial encounter
## 38212 Open bite of left index finger without damage to nail, subsequent encounter
## 38213 Open bite of left index finger without damage to nail, sequela
## 38214 Open bite of right middle finger without damage to nail, initial encounter
## 38215 Open bite of right middle finger without damage to nail, subsequent encounter
## 38216 Open bite of right middle finger without damage to nail, sequela
## 38217 Open bite of left middle finger without damage to nail, initial encounter
## 38218 Open bite of left middle finger without damage to nail, subsequent encounter
## 38219 Open bite of left middle finger without damage to nail, sequela
## 38220 Open bite of right ring finger without damage to nail, initial encounter
## 38221 Open bite of right ring finger without damage to nail, subsequent encounter
## 38222 Open bite of right ring finger without damage to nail, sequela
## 38223 Open bite of left ring finger without damage to nail, initial encounter
## 38224 Open bite of left ring finger without damage to nail, subsequent encounter
## 38225 Open bite of left ring finger without damage to nail, sequela
## 38226 Open bite of right little finger without damage to nail, initial encounter
## 38227 Open bite of right little finger without damage to nail, subsequent encounter
## 38228 Open bite of right little finger without damage to nail, sequela
## 38229 Open bite of left little finger without damage to nail, initial encounter
## 38230 Open bite of left little finger without damage to nail, subsequent encounter
## 38231 Open bite of left little finger without damage to nail, sequela
## 38232 Open bite of other finger without damage to nail, initial encounter
## 38233 Open bite of other finger without damage to nail, subsequent encounter
## 38234 Open bite of other finger without damage to nail, sequela
## 38235 Open bite of unspecified finger without damage to nail, initial encounter
## 38236 Open bite of unspecified finger without damage to nail, subsequent encounter
## 38237 Open bite of unspecified finger without damage to nail, sequela
## 38238 Unspecified open wound of right index finger with damage to nail, initial encounter
## 38239 Unspecified open wound of right index finger with damage to nail, subsequent encounter
## 38240 Unspecified open wound of right index finger with damage to nail, sequela
## 38241 Unspecified open wound of left index finger with damage to nail, initial encounter
## 38242 Unspecified open wound of left index finger with damage to nail, subsequent encounter
## 38243 Unspecified open wound of left index finger with damage to nail, sequela
## 38244 Unspecified open wound of right middle finger with damage to nail, initial encounter
## 38245 Unspecified open wound of right middle finger with damage to nail, subsequent encounter
## 38246 Unspecified open wound of right middle finger with damage to nail, sequela
## 38247 Unspecified open wound of left middle finger with damage to nail, initial encounter
## 38248 Unspecified open wound of left middle finger with damage to nail, subsequent encounter
## 38249 Unspecified open wound of left middle finger with damage to nail, sequela
## 38250 Unspecified open wound of right ring finger with damage to nail, initial encounter
## 38251 Unspecified open wound of right ring finger with damage to nail, subsequent encounter
## 38252 Unspecified open wound of right ring finger with damage to nail, sequela
## 38253 Unspecified open wound of left ring finger with damage to nail, initial encounter
## 38254 Unspecified open wound of left ring finger with damage to nail, subsequent encounter
## 38255 Unspecified open wound of left ring finger with damage to nail, sequela
## 38256 Unspecified open wound of right little finger with damage to nail, initial encounter
## 38257 Unspecified open wound of right little finger with damage to nail, subsequent encounter
## 38258 Unspecified open wound of right little finger with damage to nail, sequela
## 38259 Unspecified open wound of left little finger with damage to nail, initial encounter
## 38260 Unspecified open wound of left little finger with damage to nail, subsequent encounter
## 38261 Unspecified open wound of left little finger with damage to nail, sequela
## 38262 Unspecified open wound of other finger with damage to nail, initial encounter
## 38263 Unspecified open wound of other finger with damage to nail, subsequent encounter
## 38264 Unspecified open wound of other finger with damage to nail, sequela
## 38265 Unspecified open wound of unspecified finger with damage to nail, initial encounter
## 38266 Unspecified open wound of unspecified finger with damage to nail, subsequent encounter
## 38267 Unspecified open wound of unspecified finger with damage to nail, sequela
## 38268 Laceration without foreign body of right index finger with damage to nail, initial encounter
## 38269 Laceration without foreign body of right index finger with damage to nail, subsequent encounter
## 38270 Laceration without foreign body of right index finger with damage to nail, sequela
## 38271 Laceration without foreign body of left index finger with damage to nail, initial encounter
## 38272 Laceration without foreign body of left index finger with damage to nail, subsequent encounter
## 38273 Laceration without foreign body of left index finger with damage to nail, sequela
## 38274 Laceration without foreign body of right middle finger with damage to nail, initial encounter
## 38275 Laceration without foreign body of right middle finger with damage to nail, subsequent encounter
## 38276 Laceration without foreign body of right middle finger with damage to nail, sequela
## 38277 Laceration without foreign body of left middle finger with damage to nail, initial encounter
## 38278 Laceration without foreign body of left middle finger with damage to nail, subsequent encounter
## 38279 Laceration without foreign body of left middle finger with damage to nail, sequela
## 38280 Laceration without foreign body of right ring finger with damage to nail, initial encounter
## 38281 Laceration without foreign body of right ring finger with damage to nail, subsequent encounter
## 38282 Laceration without foreign body of right ring finger with damage to nail, sequela
## 38283 Laceration without foreign body of left ring finger with damage to nail, initial encounter
## 38284 Laceration without foreign body of left ring finger with damage to nail, subsequent encounter
## 38285 Laceration without foreign body of left ring finger with damage to nail, sequela
## 38286 Laceration without foreign body of right little finger with damage to nail, initial encounter
## 38287 Laceration without foreign body of right little finger with damage to nail, subsequent encounter
## 38288 Laceration without foreign body of right little finger with damage to nail, sequela
## 38289 Laceration without foreign body of left little finger with damage to nail, initial encounter
## 38290 Laceration without foreign body of left little finger with damage to nail, subsequent encounter
## 38291 Laceration without foreign body of left little finger with damage to nail, sequela
## 38292 Laceration without foreign body of other finger with damage to nail, initial encounter
## 38293 Laceration without foreign body of other finger with damage to nail, subsequent encounter
## 38294 Laceration without foreign body of other finger with damage to nail, sequela
## 38295 Laceration without foreign body of unspecified finger with damage to nail, initial encounter
## 38296 Laceration without foreign body of unspecified finger with damage to nail, subsequent encounter
## 38297 Laceration without foreign body of unspecified finger with damage to nail, sequela
## 38298 Laceration with foreign body of right index finger with damage to nail, initial encounter
## 38299 Laceration with foreign body of right index finger with damage to nail, subsequent encounter
## 38300 Laceration with foreign body of right index finger with damage to nail, sequela
## 38301 Laceration with foreign body of left index finger with damage to nail, initial encounter
## 38302 Laceration with foreign body of left index finger with damage to nail, subsequent encounter
## 38303 Laceration with foreign body of left index finger with damage to nail, sequela
## 38304 Laceration with foreign body of right middle finger with damage to nail, initial encounter
## 38305 Laceration with foreign body of right middle finger with damage to nail, subsequent encounter
## 38306 Laceration with foreign body of right middle finger with damage to nail, sequela
## 38307 Laceration with foreign body of left middle finger with damage to nail, initial encounter
## 38308 Laceration with foreign body of left middle finger with damage to nail, subsequent encounter
## 38309 Laceration with foreign body of left middle finger with damage to nail, sequela
## 38310 Laceration with foreign body of right ring finger with damage to nail, initial encounter
## 38311 Laceration with foreign body of right ring finger with damage to nail, subsequent encounter
## 38312 Laceration with foreign body of right ring finger with damage to nail, sequela
## 38313 Laceration with foreign body of left ring finger with damage to nail, initial encounter
## 38314 Laceration with foreign body of left ring finger with damage to nail, subsequent encounter
## 38315 Laceration with foreign body of left ring finger with damage to nail, sequela
## 38316 Laceration with foreign body of right little finger with damage to nail, initial encounter
## 38317 Laceration with foreign body of right little finger with damage to nail, subsequent encounter
## 38318 Laceration with foreign body of right little finger with damage to nail, sequela
## 38319 Laceration with foreign body of left little finger with damage to nail, initial encounter
## 38320 Laceration with foreign body of left little finger with damage to nail, subsequent encounter
## 38321 Laceration with foreign body of left little finger with damage to nail, sequela
## 38322 Laceration with foreign body of other finger with damage to nail, initial encounter
## 38323 Laceration with foreign body of other finger with damage to nail, subsequent encounter
## 38324 Laceration with foreign body of other finger with damage to nail, sequela
## 38325 Laceration with foreign body of unspecified finger with damage to nail, initial encounter
## 38326 Laceration with foreign body of unspecified finger with damage to nail, subsequent encounter
## 38327 Laceration with foreign body of unspecified finger with damage to nail, sequela
## 38328 Puncture wound without foreign body of right index finger with damage to nail, initial encounter
## 38329 Puncture wound without foreign body of right index finger with damage to nail, subsequent encounter
## 38330 Puncture wound without foreign body of right index finger with damage to nail, sequela
## 38331 Puncture wound without foreign body of left index finger with damage to nail, initial encounter
## 38332 Puncture wound without foreign body of left index finger with damage to nail, subsequent encounter
## 38333 Puncture wound without foreign body of left index finger with damage to nail, sequela
## 38334 Puncture wound without foreign body of right middle finger with damage to nail, initial encounter
## 38335 Puncture wound without foreign body of right middle finger with damage to nail, subsequent encounter
## 38336 Puncture wound without foreign body of right middle finger with damage to nail, sequela
## 38337 Puncture wound without foreign body of left middle finger with damage to nail, initial encounter
## 38338 Puncture wound without foreign body of left middle finger with damage to nail, subsequent encounter
## 38339 Puncture wound without foreign body of left middle finger with damage to nail, sequela
## 38340 Puncture wound without foreign body of right ring finger with damage to nail, initial encounter
## 38341 Puncture wound without foreign body of right ring finger with damage to nail, subsequent encounter
## 38342 Puncture wound without foreign body of right ring finger with damage to nail, sequela
## 38343 Puncture wound without foreign body of left ring finger with damage to nail, initial encounter
## 38344 Puncture wound without foreign body of left ring finger with damage to nail, subsequent encounter
## 38345 Puncture wound without foreign body of left ring finger with damage to nail, sequela
## 38346 Puncture wound without foreign body of right little finger with damage to nail, initial encounter
## 38347 Puncture wound without foreign body of right little finger with damage to nail, subsequent encounter
## 38348 Puncture wound without foreign body of right little finger with damage to nail, sequela
## 38349 Puncture wound without foreign body of left little finger with damage to nail, initial encounter
## 38350 Puncture wound without foreign body of left little finger with damage to nail, subsequent encounter
## 38351 Puncture wound without foreign body of left little finger with damage to nail, sequela
## 38352 Puncture wound without foreign body of other finger with damage to nail, initial encounter
## 38353 Puncture wound without foreign body of other finger with damage to nail, subsequent encounter
## 38354 Puncture wound without foreign body of other finger with damage to nail, sequela
## 38355 Puncture wound without foreign body of unspecified finger with damage to nail, initial encounter
## 38356 Puncture wound without foreign body of unspecified finger with damage to nail, subsequent encounter
## 38357 Puncture wound without foreign body of unspecified finger with damage to nail, sequela
## 38358 Puncture wound with foreign body of right index finger with damage to nail, initial encounter
## 38359 Puncture wound with foreign body of right index finger with damage to nail, subsequent encounter
## 38360 Puncture wound with foreign body of right index finger with damage to nail, sequela
## 38361 Puncture wound with foreign body of left index finger with damage to nail, initial encounter
## 38362 Puncture wound with foreign body of left index finger with damage to nail, subsequent encounter
## 38363 Puncture wound with foreign body of left index finger with damage to nail, sequela
## 38364 Puncture wound with foreign body of right middle finger with damage to nail, initial encounter
## 38365 Puncture wound with foreign body of right middle finger with damage to nail, subsequent encounter
## 38366 Puncture wound with foreign body of right middle finger with damage to nail, sequela
## 38367 Puncture wound with foreign body of left middle finger with damage to nail, initial encounter
## 38368 Puncture wound with foreign body of left middle finger with damage to nail, subsequent encounter
## 38369 Puncture wound with foreign body of left middle finger with damage to nail, sequela
## 38370 Puncture wound with foreign body of right ring finger with damage to nail, initial encounter
## 38371 Puncture wound with foreign body of right ring finger with damage to nail, subsequent encounter
## 38372 Puncture wound with foreign body of right ring finger with damage to nail, sequela
## 38373 Puncture wound with foreign body of left ring finger with damage to nail, initial encounter
## 38374 Puncture wound with foreign body of left ring finger with damage to nail, subsequent encounter
## 38375 Puncture wound with foreign body of left ring finger with damage to nail, sequela
## 38376 Puncture wound with foreign body of right little finger with damage to nail, initial encounter
## 38377 Puncture wound with foreign body of right little finger with damage to nail, subsequent encounter
## 38378 Puncture wound with foreign body of right little finger with damage to nail, sequela
## 38379 Puncture wound with foreign body of left little finger with damage to nail, initial encounter
## 38380 Puncture wound with foreign body of left little finger with damage to nail, subsequent encounter
## 38381 Puncture wound with foreign body of left little finger with damage to nail, sequela
## 38382 Puncture wound with foreign body of other finger with damage to nail, initial encounter
## 38383 Puncture wound with foreign body of other finger with damage to nail, subsequent encounter
## 38384 Puncture wound with foreign body of other finger with damage to nail, sequela
## 38385 Puncture wound with foreign body of unspecified finger with damage to nail, initial encounter
## 38386 Puncture wound with foreign body of unspecified finger with damage to nail, subsequent encounter
## 38387 Puncture wound with foreign body of unspecified finger with damage to nail, sequela
## 38388 Open bite of right index finger with damage to nail, initial encounter
## 38389 Open bite of right index finger with damage to nail, subsequent encounter
## 38390 Open bite of right index finger with damage to nail, sequela
## 38391 Open bite of left index finger with damage to nail, initial encounter
## 38392 Open bite of left index finger with damage to nail, subsequent encounter
## 38393 Open bite of left index finger with damage to nail, sequela
## 38394 Open bite of right middle finger with damage to nail, initial encounter
## 38395 Open bite of right middle finger with damage to nail, subsequent encounter
## 38396 Open bite of right middle finger with damage to nail, sequela
## 38397 Open bite of left middle finger with damage to nail, initial encounter
## 38398 Open bite of left middle finger with damage to nail, subsequent encounter
## 38399 Open bite of left middle finger with damage to nail, sequela
## 38400 Open bite of right ring finger with damage to nail, initial encounter
## 38401 Open bite of right ring finger with damage to nail, subsequent encounter
## 38402 Open bite of right ring finger with damage to nail, sequela
## 38403 Open bite of left ring finger with damage to nail, initial encounter
## 38404 Open bite of left ring finger with damage to nail, subsequent encounter
## 38405 Open bite of left ring finger with damage to nail, sequela
## 38406 Open bite of right little finger with damage to nail, initial encounter
## 38407 Open bite of right little finger with damage to nail, subsequent encounter
## 38408 Open bite of right little finger with damage to nail, sequela
## 38409 Open bite of left little finger with damage to nail, initial encounter
## 38410 Open bite of left little finger with damage to nail, subsequent encounter
## 38411 Open bite of left little finger with damage to nail, sequela
## 38412 Open bite of other finger with damage to nail, initial encounter
## 38413 Open bite of other finger with damage to nail, subsequent encounter
## 38414 Open bite of other finger with damage to nail, sequela
## 38415 Open bite of unspecified finger with damage to nail, initial encounter
## 38416 Open bite of unspecified finger with damage to nail, subsequent encounter
## 38417 Open bite of unspecified finger with damage to nail, sequela
## 38418 Unspecified open wound of right hand, initial encounter
## 38419 Unspecified open wound of right hand, subsequent encounter
## 38420 Unspecified open wound of right hand, sequela
## 38421 Unspecified open wound of left hand, initial encounter
## 38422 Unspecified open wound of left hand, subsequent encounter
## 38423 Unspecified open wound of left hand, sequela
## 38424 Unspecified open wound of unspecified hand, initial encounter
## 38425 Unspecified open wound of unspecified hand, subsequent encounter
## 38426 Unspecified open wound of unspecified hand, sequela
## 38427 Laceration without foreign body of right hand, initial encounter
## 38428 Laceration without foreign body of right hand, subsequent encounter
## 38429 Laceration without foreign body of right hand, sequela
## 38430 Laceration without foreign body of left hand, initial encounter
## 38431 Laceration without foreign body of left hand, subsequent encounter
## 38432 Laceration without foreign body of left hand, sequela
## 38433 Laceration without foreign body of unspecified hand, initial encounter
## 38434 Laceration without foreign body of unspecified hand, subsequent encounter
## 38435 Laceration without foreign body of unspecified hand, sequela
## 38436 Laceration with foreign body of right hand, initial encounter
## 38437 Laceration with foreign body of right hand, subsequent encounter
## 38438 Laceration with foreign body of right hand, sequela
## 38439 Laceration with foreign body of left hand, initial encounter
## 38440 Laceration with foreign body of left hand, subsequent encounter
## 38441